diff --git a/.github/workflows/docker-dev.yml b/.github/workflows/docker-dev.yml
index 07bac476..fce820d6 100644
--- a/.github/workflows/docker-dev.yml
+++ b/.github/workflows/docker-dev.yml
@@ -20,6 +20,7 @@ jobs:
#goos: [linux, windows, darwin]
goarch: [amd64, arm64]
goos: [linux]
+ goarch: [amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
@@ -29,7 +30,10 @@ jobs:
- name: checkout code
uses: actions/checkout@v2
- name: donwload schema
- run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
+ run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
+ - name: donwload schema
+ run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
+
# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- id: binary
@@ -49,14 +53,20 @@ jobs:
# - name: Checkout Repo
# uses: actions/checkout@v2
- name: Set up QEMU
- uses: docker/setup-qemu-action@v1
+ uses: docker/setup-qemu-action@v2
+ with:
+ platforms: 'arm64,arm'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
- uses: docker/login-action@v1
+ uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
+ - name: Set variables
+ run: |
+ VER=$(cat ./VERSION)
+ echo "VERSION=$VER" >> $GITHUB_ENV
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
@@ -64,15 +74,17 @@ jobs:
images: nsfearthcube/gleaner
flavor: |
latest=true
+ suffix=-${{ env.VERSION }}
tags: |
type=ref,event=tag
type=ref,event=branch
type=semver,pattern={{version}}
- name: Build and push
id: docker_build
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v3
with:
push: true
+ platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./build/Dockerfile
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index ef3b1a0f..573b6f1b 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -22,7 +22,7 @@ jobs:
#goos: [linux, windows, darwin]
#goarch: [amd64,arm64]
goos: [linux]
- goarch: [amd64]
+ goarch: [amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
@@ -32,7 +32,10 @@ jobs:
- name: checkout code
uses: actions/checkout@v2
- name: donwload schema
- run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
+ run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
+ - name: donwload schema
+ run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
+
# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- id: binary
@@ -52,9 +55,11 @@ jobs:
# - name: Checkout Repo
# uses: actions/checkout@v2
- name: Set up QEMU
- uses: docker/setup-qemu-action@v1
+ uses: docker/setup-qemu-action@v2
+ with:
+ platforms: 'arm64,arm'
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v1
+ uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v1
with:
@@ -73,9 +78,10 @@ jobs:
type=semver,pattern={{version}}
- name: Build and push
id: docker_build
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v3
with:
push: true
+ platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./build/Dockerfile
diff --git a/.github/workflows/release_gleaner.yml b/.github/workflows/release_gleaner.yml
index 783e7a1e..3ff956d5 100644
--- a/.github/workflows/release_gleaner.yml
+++ b/.github/workflows/release_gleaner.yml
@@ -6,7 +6,7 @@ on:
jobs:
releases-matrix:
- name: Release Go Binary
+ name: Release gleaner Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
@@ -21,8 +21,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: donwload schema
- run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
- # - name: Run tests
+ run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
+ - name: donwload schema
+ run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
+
+ # - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- uses: wangyoucao577/go-release-action@v1.22
with:
@@ -31,6 +34,6 @@ jobs:
goarch: ${{ matrix.goarch }}
project_path: "./cmd/gleaner"
binary_name: "gleaner"
- ldflags: "-s -w"
- extra_files: README.md docs/ configs/ scripts/ schemaorg-current-https.jsonld
+ ldflags: "-s -w -X main.VERSION=${{ env.VERSION }}"
+ extra_files: README.md docs/ configs/ scripts/ assets/
# extra_files: LICENSE README.md
diff --git a/.github/workflows/release_gleaner_v3.yml b/.github/workflows/release_gleaner_v3.yml
index f15fc628..d3801ab3 100644
--- a/.github/workflows/release_gleaner_v3.yml
+++ b/.github/workflows/release_gleaner_v3.yml
@@ -1,4 +1,4 @@
-name: Release Gleaner Console binaries
+name: Release Gleaner Console (glcon) binaries
on:
release:
@@ -6,7 +6,7 @@ on:
jobs:
releases-matrix:
- name: Release Go Binary
+ name: Release glcon Gleaner Console Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
@@ -21,9 +21,15 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: donwload schema
- run: curl -O https://schema.org/version/latest/schemaorg-current-https.jsonld
+ run: curl https://schema.org/version/latest/schemaorg-current-https.jsonld --output assets/schemaorg-current-https.jsonld
+ - name: donwload schema
+ run: curl https://schema.org/version/latest/schemaorg-current-http.jsonld --output assets/schemaorg-current-http.jsonld
# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
+ - name: Set variables
+ run: |
+ VER=$(cat VERSION)
+ echo "VERSION=$VER" >> $GITHUB_ENV
- uses: wangyoucao577/go-release-action@v1.22
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -31,6 +37,6 @@ jobs:
goarch: ${{ matrix.goarch }}
project_path: "./cmd/glcon"
binary_name: "glcon"
- ldflags: "-s -w"
- extra_files: README.md docs/ configs/ scripts/ schemaorg-current-https.jsonld
+ ldflags: "-s -w -X main.VERSION=${{ env.VERSION }}"
+ extra_files: README.md docs/ configs/ scripts/ assets/
# extra_files: LICENSE README.md
diff --git a/.gitignore b/.gitignore
index be97e22e..8da7f855 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,4 +11,6 @@ configs/local/
*.log
**/*.log
**/credentials/
+.idea
+/configs/wifire/
diff --git a/DEVELOPER.md b/DEVELOPER.md
new file mode 100644
index 00000000..fc4db1af
--- /dev/null
+++ b/DEVELOPER.md
@@ -0,0 +1,26 @@
+
+# Developer notes
+
+# glcon
+glcon integrates gleaner and nabu to make a single env
+
+## integrating with local nabu
+[see article](https://levelup.gitconnected.com/import-and-use-local-packages-in-your-go-application-885c35e5624)
+
+`require (
+....
+github.com/gleanerio/nabu v0.0.0-20211214151422-eda9e525f196
+...
+}
+
+replace (
+github.com/gleanerio/nabu v0.0.0-20211214151422-eda9e525f196 => ../nabu
+)`
+
+REMOVE WHEN COMMITTING FOR A PULL REQUEST
+
+
+## update nabu dependency
+if nabu code has been updated, the you need to update the dependency
+`go get -u github.com/gleanerio/nabu`
+
diff --git a/Makefile b/Makefile
index 18afa260..96369e47 100644
--- a/Makefile
+++ b/Makefile
@@ -1,39 +1,57 @@
BINARY := gleaner
BINARYIO := glcon
VERSION :=`cat VERSION`
+MAINVERSION :=`cat ../../VERSION`
.DEFAULT_GOAL := gleaner
gleaner:
cd cmd/$(BINARY) ; \
- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 env go build -o $(BINARY)
+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 env go build -ldflags "-X main.VERSION=$(MAINVERSION)" -o $(BINARY);\
+ cp $(BINARY) ../../
+
gleaner.exe:
cd cmd/$(BINARY) ; \
- GOOS=windows GOARCH=amd64 CGO_ENABLED=0 env go build -o $(BINARY).exe
+ GOOS=windows GOARCH=amd64 CGO_ENABLED=0 env go build -ldflags "-X main.VERSION=$(MAINVERSION)" -o $(BINARY).exe;\
+ cp $(BINARY).exe ../../
gleaner.darwin:
cd cmd/$(BINARY) ; \
- GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 env go build -o $(BINARY)_darwin
+ GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 env go build -ldflags "-X main.VERSION=$(MAINVERSION)" -o $(BINARY)_darwin;\
+ cp $(BINARY)_darwin ../../
+
+gleaner.m2:
+ cd cmd/$(BINARY) ; \
+ GOOS=darwin GOARCH=arm64 CGO_ENABLED=0 env go build -ldflags "-X main.VERSION=$(MAINVERSION)" -o $(BINARY)_m2;\
+ cp $(BINARY)_m2 ../../
glcon:
cd cmd/$(BINARYIO) ; \
- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 env go build -o $(BINARYIO)
+ GOOS=linux GOARCH=amd64 CGO_ENABLED=0 env go build -ldflags "-X main.VERSION=$(MAINVERSION)" -o $(BINARYIO);\
+ cp $(BINARYIO) ../../
glcon.exe:
cd cmd/$(BINARYIO) ; \
- GOOS=windows GOARCH=amd64 CGO_ENABLED=0 env go build -o $(BINARYIO).exe
+ GOOS=windows GOARCH=amd64 CGO_ENABLED=0 env go build -ldflags "-X main.VERSION=$(MAINVERSION)" -o $(BINARYIO).exe;\
+ cp $(BINARYIO).exe ../../
glcon.darwin:
cd cmd/$(BINARYIO) ; \
- GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 env go build -o $(BINARYIO)_darwin
+ GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 env go build -ldflags "-X main.VERSION=$(MAINVERSION)" -o $(BINARYIO)_darwin ;\
+ cp $(BINARYIO)_darwin ../../
+
+glcon.m2:
+ cd cmd/$(BINARYIO) ; \
+ GOOS=darwin GOARCH=arm64 CGO_ENABLED=0 env go build -ldflags "-X main.VERSION=$(MAINVERSION)" -o $(BINARYIO)_m2;\
+ cp $(BINARYIO)_m2 ../../
-releases: gleaner gleaner.exe gleaner.darwin glcon glcon.exe glcon.darwin
+releases: gleaner gleaner.exe gleaner.darwin gleaner.m2 glcon glcon.exe glcon.darwin glcon.m2
docker:
podman build --tag="nsfearthcube/gleaner:$(VERSION)" --file=./build/Dockerfile .
-docker.darwin:
- docker build --tag="nsfearthcube/gleaner:$(VERSION)" --file=./build/Dockerfile .
+docker.multiarch: gleaner
+ docker buildx build --no-cache --pull --platform=linux/arm64,linux/amd64 --push -t nsfearthcube/gleaner:$(VERSION) --file=./build/Dockerfile .
dockerpush:
podman push localhost/nsfearthcube/gleaner:$(VERSION) fils/gleaner:$(VERSION)
diff --git a/README.md b/README.md
index c4967ef6..58ff832e 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,8 @@ union followed by a
go mod tidy
```
-following the merge.
+following the merge. Once you have resolved the conflict and done
+tidy can add, if needed, the go.mod and go.sum files and commit.
### Branches
@@ -95,5 +96,8 @@ visit:
* https://book.oceaninfohub.org/indexing/qstart.html
* https://book.oceaninfohub.org/indexing/cliDocker/README.html
-For the best documentation on using Gleaner at this time.
+For the best documentation on using Gleaner at this time.
+## Unit tests
+
+There are some unit tests here; to run them, you can do `go test -v ./...`
diff --git a/VERSION b/VERSION
index 5c738710..5e333f9c 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-v3.0.2-developement
+v3.0.8
diff --git a/assets/schemaorg-current-http.jsonld b/assets/schemaorg-current-http.jsonld
new file mode 100644
index 00000000..5d969faa
--- /dev/null
+++ b/assets/schemaorg-current-http.jsonld
@@ -0,0 +1,42303 @@
+{
+ "@context": {
+ "brick": "https://brickschema.org/schema/Brick#",
+ "csvw": "http://www.w3.org/ns/csvw#",
+ "dc": "http://purl.org/dc/elements/1.1/",
+ "dcam": "http://purl.org/dc/dcam/",
+ "dcat": "http://www.w3.org/ns/dcat#",
+ "dcmitype": "http://purl.org/dc/dcmitype/",
+ "dcterms": "http://purl.org/dc/terms/",
+ "doap": "http://usefulinc.com/ns/doap#",
+ "foaf": "http://xmlns.com/foaf/0.1/",
+ "geo": "http://www.opengis.net/ont/geosparql#",
+ "odrl": "http://www.w3.org/ns/odrl/2/",
+ "org": "http://www.w3.org/ns/org#",
+ "owl": "http://www.w3.org/2002/07/owl#",
+ "prof": "http://www.w3.org/ns/dx/prof/",
+ "prov": "http://www.w3.org/ns/prov#",
+ "qb": "http://purl.org/linked-data/cube#",
+ "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
+ "schema": "http://schema.org/",
+ "sh": "http://www.w3.org/ns/shacl#",
+ "skos": "http://www.w3.org/2004/02/skos/core#",
+ "sosa": "http://www.w3.org/ns/sosa/",
+ "ssn": "http://www.w3.org/ns/ssn/",
+ "time": "http://www.w3.org/2006/time#",
+ "vann": "http://purl.org/vocab/vann/",
+ "void": "http://rdfs.org/ns/void#",
+ "wgs": "https://www.w3.org/2003/01/geo/wgs84_pos#",
+ "xsd": "http://www.w3.org/2001/XMLSchema#"
+ },
+ "@graph": [
+ {
+ "@id": "schema:pickupTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "When a taxi will pick up a passenger or a rental car can be picked up.",
+ "rdfs:label": "pickupTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:RentalCarReservation"
+ },
+ {
+ "@id": "schema:TaxiReservation"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:GeoShape",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.",
+ "rdfs:label": "GeoShape",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupMens",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Mens\" for wearables.",
+ "rdfs:label": "WearableSizeGroupMens",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:refundType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A refund type, from an enumerated list.",
+ "rdfs:label": "refundType",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RefundTypeEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:postalCodeBegin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "First postal code in a range (included).",
+ "rdfs:label": "postalCodeBegin",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalCodeRangeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:FrontWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Front-wheel drive is a transmission layout where the engine drives the front wheels.",
+ "rdfs:label": "FrontWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:inker",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who traces over the pencil drawings in ink after pencils are complete.",
+ "rdfs:label": "inker",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:MonetaryAmountDistribution",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statistical distribution of monetary amounts.",
+ "rdfs:label": "MonetaryAmountDistribution",
+ "rdfs:subClassOf": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19MechVentPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19mechventpats - HOSPITALIZED and VENTILATED: Patients hospitalized in an NHSN inpatient care location who have suspected or confirmed COVID-19 and are on a mechanical ventilator.",
+ "rdfs:label": "cvdNumC19MechVentPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:WorkersUnion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.",
+ "rdfs:label": "WorkersUnion",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/243"
+ }
+ },
+ {
+ "@id": "schema:potentialAction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.",
+ "rdfs:label": "potentialAction",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:publishedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An agent associated with the publication event.",
+ "rdfs:label": "publishedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationEvent"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Park",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A park.",
+ "rdfs:label": "Park",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:orderStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current status of the order.",
+ "rdfs:label": "orderStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OrderStatus"
+ }
+ },
+ {
+ "@id": "schema:PetStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A pet store.",
+ "rdfs:label": "PetStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:floorSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The size of the accommodation, e.g. in square meter or squarefoot.\nTypical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard ",
+ "rdfs:label": "floorSize",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:DDxElement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.",
+ "rdfs:label": "DDxElement",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:tickerSymbol",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO 15022.",
+ "rdfs:label": "tickerSymbol",
+ "schema:domainIncludes": {
+ "@id": "schema:Corporation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:geoCovers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCovers",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:iswcCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The International Standard Musical Work Code for the composition.",
+ "rdfs:label": "iswcCode",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:ReturnShippingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay the return shipping costs when returning a product.",
+ "rdfs:label": "ReturnShippingFees",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:Florist",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A florist.",
+ "rdfs:label": "Florist",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:AnatomicalStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.",
+ "rdfs:label": "AnatomicalStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:screenshot",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to a screenshot image of the app.",
+ "rdfs:label": "screenshot",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:ImageObject"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ticketNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for the ticket.",
+ "rdfs:label": "ticketNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:Ticket"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemBR",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Brazilian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemBR",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:actors",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An actor, e.g. in TV, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "actors",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:TVSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:actor"
+ }
+ },
+ {
+ "@id": "schema:NonprofitSBBI",
+ "@type": "schema:NLNonprofitType",
+ "rdfs:comment": "NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution (NL).",
+ "rdfs:label": "NonprofitSBBI",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:DataCatalog",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcat:Catalog"
+ },
+ "rdfs:comment": "A collection of datasets.",
+ "rdfs:label": "DataCatalog",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
+ }
+ },
+ {
+ "@id": "schema:WebPageElement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A web page element, like a table or an image.",
+ "rdfs:label": "WebPageElement",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:longitude",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).",
+ "rdfs:label": "longitude",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:servicePhone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The phone number to use to access the service.",
+ "rdfs:label": "servicePhone",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ }
+ },
+ {
+ "@id": "schema:Apartment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An apartment (in American English) or flat (in British English) is a self-contained housing unit (a type of residential real estate) that occupies only part of a building (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Apartment).",
+ "rdfs:label": "Apartment",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:LiteraryEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Literary event.",
+ "rdfs:label": "LiteraryEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:highPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The highest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "highPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateOffer"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:serviceArea",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area where the service is provided.",
+ "rdfs:label": "serviceArea",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AdministrativeArea"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:areaServed"
+ }
+ },
+ {
+ "@id": "schema:MovieClip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short segment/part of a movie.",
+ "rdfs:label": "MovieClip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Clip"
+ }
+ },
+ {
+ "@id": "schema:EducationEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Education event.",
+ "rdfs:label": "EducationEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:Abdomen",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Abdomen clinical examination.",
+ "rdfs:label": "Abdomen",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:embedUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.",
+ "rdfs:label": "embedUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:SocialEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Social event.",
+ "rdfs:label": "SocialEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:permissions",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).",
+ "rdfs:label": "permissions",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ImagingTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes.",
+ "rdfs:label": "ImagingTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:item",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists').",
+ "rdfs:label": "item",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:incentiveCompensation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of bonus and commission compensation aspects of the job.",
+ "rdfs:label": "incentiveCompensation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:InteractionCounter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.",
+ "rdfs:label": "InteractionCounter",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ }
+ },
+ {
+ "@id": "schema:priceRange",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The price range of the business, for example ```$$$```.",
+ "rdfs:label": "priceRange",
+ "schema:domainIncludes": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ParentAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics describing parents, who can be interested in viewing some content.",
+ "rdfs:label": "ParentAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:PeopleAudience"
+ }
+ },
+ {
+ "@id": "schema:recognizingAuthority",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.",
+ "rdfs:label": "recognizingAuthority",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:ProductModel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A datasheet or vendor specification of a product (in the sense of a prototypical description).",
+ "rdfs:label": "ProductModel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:originalMediaLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to the page containing an original version of the content, or directly to an online copy of the original [[MediaObject]] content, e.g. video file.",
+ "rdfs:label": "originalMediaLink",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReview"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebPage"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:constrainingProperty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a property used as a constraint to define a [[StatisticalPopulation]] with respect to the set of entities\n corresponding to an indicated type (via [[populationType]]).",
+ "rdfs:label": "constrainingProperty",
+ "schema:domainIncludes": {
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:founder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person who founded this organization.",
+ "rdfs:label": "founder",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:option",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The options subject to this action.",
+ "rdfs:label": "option",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ChooseAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:actionOption"
+ }
+ },
+ {
+ "@id": "schema:reviewBody",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The actual body of the review.",
+ "rdfs:label": "reviewBody",
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PlaceboControlledTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A placebo-controlled trial design.",
+ "rdfs:label": "PlaceboControlledTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:PhotographAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of capturing still images of objects using a camera.",
+ "rdfs:label": "PhotographAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c4",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees.",
+ "rdfs:label": "Nonprofit501c4",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:vehicleSpecialUsage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.",
+ "rdfs:label": "vehicleSpecialUsage",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CarUsageType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:album",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A music album.",
+ "rdfs:label": "album",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicGroup"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ }
+ },
+ {
+ "@id": "schema:includedInHealthInsurancePlan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The insurance plans that cover this drug.",
+ "rdfs:label": "includedInHealthInsurancePlan",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementWeight",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Body weight. Used, for example, to measure pantyhose.",
+ "rdfs:label": "BodyMeasurementWeight",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:FlightReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for air travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "FlightReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:causeOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The condition, complication, symptom, sign, etc. caused.",
+ "rdfs:label": "causeOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCause"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:cutoffTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the [[ShippingRateSettings]] publication pattern. The time is indicated using the ISO-8601 Time format, e.g. \"23:30:00-05:00\" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).",
+ "rdfs:label": "cutoffTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Time"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:MonetaryGrant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A monetary grant.",
+ "rdfs:label": "MonetaryGrant",
+ "rdfs:subClassOf": {
+ "@id": "schema:Grant"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:studySubject",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.",
+ "rdfs:label": "studySubject",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:TreatmentIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An indication for treating an underlying condition, symptom, etc.",
+ "rdfs:label": "TreatmentIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Cemetery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A graveyard.",
+ "rdfs:label": "Cemetery",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:hasMeasurement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A product measurement, for example the inseam of pants, the wheel size of a bicycle, or the gauge of a screw. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings.",
+ "rdfs:label": "hasMeasurement",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:catalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A data catalog which contains this dataset.",
+ "rdfs:label": "catalog",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataCatalog"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:includedInDataCatalog"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA3Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA3Plus",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:DigitalPlatformEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates some common technology platforms, for use with properties such as [[actionPlatform]]. It is not supposed to be comprehensive - when a suitable code is not enumerated here, textual or URL values can be used instead. These codes are at a fairly high level and do not deal with versioning and other nuance. Additional codes can be suggested [in github](https://github.com/schemaorg/schemaorg/issues/3057). ",
+ "rdfs:label": "DigitalPlatformEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:datasetTimeInterval",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).",
+ "rdfs:label": "datasetTimeInterval",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:temporalCoverage"
+ }
+ },
+ {
+ "@id": "schema:endorsers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "People or organizations that endorse the plan.",
+ "rdfs:label": "endorsers",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PublicHealth",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine.",
+ "rdfs:label": "PublicHealth",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemEN13402",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "EN 13402 (joint European standard for size labelling of clothes).",
+ "rdfs:label": "WearableSizeSystemEN13402",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:CheckInAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check-in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\\n\\nRelated actions:\\n\\n* [[CheckOutAction]]: The antonym of CheckInAction.\\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.",
+ "rdfs:label": "CheckInAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:DistanceFee",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the distance fee (e.g., price per km or mile) part of the total price for an offered product, for example a car rental.",
+ "rdfs:label": "DistanceFee",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupExtraShort",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Extra Short\" for wearables.",
+ "rdfs:label": "WearableSizeGroupExtraShort",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:EventAttendanceModeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline.",
+ "rdfs:label": "EventAttendanceModeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:sibling",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sibling of the person.",
+ "rdfs:label": "sibling",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:isGift",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether the offer was accepted as a gift for someone other than the buyer.",
+ "rdfs:label": "isGift",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:countryOfAssembly",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the product was assembled.",
+ "rdfs:label": "countryOfAssembly",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/991"
+ }
+ },
+ {
+ "@id": "schema:applicationDeadline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date at which the program stops collecting applications for the next enrollment cycle.",
+ "rdfs:label": "applicationDeadline",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:eligibleQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.",
+ "rdfs:label": "eligibleQuantity",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:performer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A performer at the event—for example, a presenter, musician, musical group or actor.",
+ "rdfs:label": "performer",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WearableSizeSystemJP",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Japanese size system for wearables.",
+ "rdfs:label": "WearableSizeSystemJP",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:OrderCancelled",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing cancellation of an order.",
+ "rdfs:label": "OrderCancelled"
+ },
+ {
+ "@id": "schema:StrengthTraining",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.",
+ "rdfs:label": "StrengthTraining",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalProcedure",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/50731006"
+ },
+ "rdfs:comment": "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.",
+ "rdfs:label": "MedicalProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:FoodEstablishmentReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation to dine at a food-related business.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "FoodEstablishmentReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:CoverArt",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The artwork on the outer surface of a CreativeWork.",
+ "rdfs:label": "CoverArt",
+ "rdfs:subClassOf": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Osteopathic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine focused on promoting the body's innate ability to heal itself.",
+ "rdfs:label": "Osteopathic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DigitalAudioTapeFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DigitalAudioTapeFormat.",
+ "rdfs:label": "DigitalAudioTapeFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:HealthInsurancePlan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A US-style health insurance plan, including PPOs, EPOs, and HMOs. ",
+ "rdfs:label": "HealthInsurancePlan",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:SportsOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.",
+ "rdfs:label": "SportsOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:CreateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of deliberately creating/producing/generating/building a result out of the agent.",
+ "rdfs:label": "CreateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:AutoRepair",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Car repair business.",
+ "rdfs:label": "AutoRepair",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:OnlineBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular online business, either standalone or the online part of a broader organization. Examples include an eCommerce site, an online travel booking site, an online learning site, an online logistics and shipping provider, an online (virtual) doctor, etc.",
+ "rdfs:label": "OnlineBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3028"
+ }
+ },
+ {
+ "@id": "schema:ResultsAvailable",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Results are available.",
+ "rdfs:label": "ResultsAvailable",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:broadcastChannelId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.",
+ "rdfs:label": "broadcastChannelId",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Suite",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Suite",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:closes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The closing hour of the place or service on the given day(s) of the week.",
+ "rdfs:label": "closes",
+ "schema:domainIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Time"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:legislationTransposes",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#transposes"
+ },
+ "rdfs:comment": "Indicates that this legislation (or part of legislation) fulfills the objectives set by another legislation, by passing appropriate implementation measures. Typically, some legislations of European Union's member states or regions transpose European Directives. This indicates a legally binding link between the 2 legislations.",
+ "rdfs:label": "legislationTransposes",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:legislationApplies"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ },
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#transposes"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryG",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryG",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:itemShipped",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Item(s) being shipped.",
+ "rdfs:label": "itemShipped",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ }
+ },
+ {
+ "@id": "schema:ParcelService",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A private parcel service as the delivery mode available for a certain offer.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
+ "rdfs:label": "ParcelService",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:ownedThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time of giving up ownership on the product.",
+ "rdfs:label": "ownedThrough",
+ "schema:domainIncludes": {
+ "@id": "schema:OwnershipInfo"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:TipAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.",
+ "rdfs:label": "TipAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:LearningResource",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes.\n\n[[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[VideoObject]], [[Product]] etc.\n\n[[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one.",
+ "rdfs:label": "LearningResource",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1401"
+ }
+ },
+ {
+ "@id": "schema:abridged",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether the book is an abridged edition.",
+ "rdfs:label": "abridged",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:MedicalAudienceType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Target audiences types for medical web pages. Enumerated type.",
+ "rdfs:label": "MedicalAudienceType",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BedAndBreakfast",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Bed and breakfast.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "BedAndBreakfast",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ }
+ },
+ {
+ "@id": "schema:EngineSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities.",
+ "rdfs:label": "EngineSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Bridge",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bridge.",
+ "rdfs:label": "Bridge",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:OnlineStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An eCommerce site.",
+ "rdfs:label": "OnlineStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:OnlineBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3028"
+ }
+ },
+ {
+ "@id": "schema:ReservationCancelled",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status for a previously confirmed reservation that is now cancelled.",
+ "rdfs:label": "ReservationCancelled"
+ },
+ {
+ "@id": "schema:numberOfRooms",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.",
+ "rdfs:label": "numberOfRooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Apartment"
+ },
+ {
+ "@id": "schema:SingleFamilyResidence"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:House"
+ },
+ {
+ "@id": "schema:Suite"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:Thesis",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.",
+ "rdfs:label": "Thesis",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.productontology.org/id/Thesis"
+ }
+ },
+ {
+ "@id": "schema:smokingAllowed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.",
+ "rdfs:label": "smokingAllowed",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:BusinessAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.",
+ "rdfs:label": "BusinessAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:amountOfThisGood",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity of the goods included in the offer.",
+ "rdfs:label": "amountOfThisGood",
+ "schema:domainIncludes": {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:toLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The final location of the object or the agent after the action.",
+ "rdfs:label": "toLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TransferAction"
+ },
+ {
+ "@id": "schema:MoveAction"
+ },
+ {
+ "@id": "schema:InsertAction"
+ },
+ {
+ "@id": "schema:ExerciseAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:Event",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcmitype:Event"
+ },
+ "rdfs:comment": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects.",
+ "rdfs:label": "Event",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:containsSeason",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A season that is part of the media series.",
+ "rdfs:label": "containsSeason",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ },
+ {
+ "@id": "schema:pickupLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Where a taxi will pick up a passenger or a rental car can be picked up.",
+ "rdfs:label": "pickupLocation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TaxiReservation"
+ },
+ {
+ "@id": "schema:RentalCarReservation"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:clincalPharmacology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
+ "rdfs:label": "clincalPharmacology",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:clinicalPharmacology"
+ }
+ },
+ {
+ "@id": "schema:BrokerageAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm.",
+ "rdfs:label": "BrokerageAccount",
+ "rdfs:subClassOf": {
+ "@id": "schema:InvestmentOrDeposit"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isicV4",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
+ "rdfs:label": "isicV4",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:legislationPassedBy",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#passed_by"
+ },
+ "rdfs:comment": "The person or organization that originally passed or made the law: typically parliament (for primary legislation) or government (for secondary legislation). This indicates the \"legal author\" of the law, as opposed to its physical author.",
+ "rdfs:label": "legislationPassedBy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:creator"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#passed_by"
+ }
+ },
+ {
+ "@id": "schema:USNonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "USNonprofitType: Non-profit organization type originating from the United States.",
+ "rdfs:label": "USNonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:NonprofitType"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:AutomatedTeller",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "ATM/cash machine.",
+ "rdfs:label": "AutomatedTeller",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:confirmationNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A number that confirms the given order or payment has been received.",
+ "rdfs:label": "confirmationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Thursday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Wednesday and Friday.",
+ "rdfs:label": "Thursday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q129"
+ }
+ },
+ {
+ "@id": "schema:departureTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected departure time.",
+ "rdfs:label": "departureTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:hasBroadcastChannel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A broadcast channel of a broadcast service.",
+ "rdfs:label": "hasBroadcastChannel",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:providesBroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:Crematorium",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A crematorium.",
+ "rdfs:label": "Crematorium",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:customerRemorseReturnFees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return fees if the product is returned due to customer remorse.",
+ "rdfs:label": "customerRemorseReturnFees",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnFeesEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:encodingType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The supported encoding type(s) for an EntryPoint request.",
+ "rdfs:label": "encodingType",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MedicalConditionStage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A stage of a medical condition, such as 'Stage IIIa'.",
+ "rdfs:label": "MedicalConditionStage",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:itinerary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples).",
+ "rdfs:label": "itinerary",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ }
+ ]
+ },
+ {
+ "@id": "schema:valueAddedTaxIncluded",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.",
+ "rdfs:label": "valueAddedTaxIncluded",
+ "schema:domainIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:DietNutrition",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Dietetics and nutrition as a medical specialty.",
+ "rdfs:label": "DietNutrition",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bitrate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The bitrate of the media object.",
+ "rdfs:label": "bitrate",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Rheumatologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.",
+ "rdfs:label": "Rheumatologic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AssessAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming one's opinion, reaction or sentiment.",
+ "rdfs:label": "AssessAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:requirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (examples: DirectX, Java or .NET runtime).",
+ "rdfs:label": "requirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:softwareRequirements"
+ }
+ },
+ {
+ "@id": "schema:associatedMediaReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated [[MediaReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].",
+ "rdfs:label": "associatedMediaReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:associatedReview"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:FireStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A fire station. With firemen.",
+ "rdfs:label": "FireStation",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:EmergencyService"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:legislationDate",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#date_document"
+ },
+ "rdfs:comment": "The date of adoption or signature of the legislation. This is the date at which the text is officially aknowledged to be a legislation, even though it might not even be published or in force.",
+ "rdfs:label": "legislationDate",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:dateCreated"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#date_document"
+ }
+ },
+ {
+ "@id": "schema:workTranslation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A work that is a translation of the content of this work. E.g. 西遊記 has an English workTranslation “Journey to the West”, a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.",
+ "rdfs:label": "workTranslation",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:translationOfWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:CssSelectorType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Text representing a CSS selector.",
+ "rdfs:label": "CssSelectorType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1672"
+ }
+ },
+ {
+ "@id": "schema:observedNode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The observedNode of an [[Observation]], often a [[StatisticalPopulation]].",
+ "rdfs:label": "observedNode",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:LaserDiscFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "LaserDiscFormat.",
+ "rdfs:label": "LaserDiscFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:busName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of the bus (e.g. Bolt Express).",
+ "rdfs:label": "busName",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:studyDesign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifics about the observational study design (enumerated).",
+ "rdfs:label": "studyDesign",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalObservationalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalObservationalStudyDesign"
+ }
+ },
+ {
+ "@id": "schema:Ticket",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe a ticket to an event, a flight, a bus ride, etc.",
+ "rdfs:label": "Ticket",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:playersOnline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of players on the server.",
+ "rdfs:label": "playersOnline",
+ "schema:domainIncludes": {
+ "@id": "schema:GameServer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:securityClearanceRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of any security clearance requirements of the job.",
+ "rdfs:label": "securityClearanceRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ }
+ },
+ {
+ "@id": "schema:dataset",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A dataset contained in this catalog.",
+ "rdfs:label": "dataset",
+ "schema:domainIncludes": {
+ "@id": "schema:DataCatalog"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:includedInDataCatalog"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Dataset"
+ }
+ },
+ {
+ "@id": "schema:UsedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is used.",
+ "rdfs:label": "UsedCondition"
+ },
+ {
+ "@id": "schema:codeValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short textual code that uniquely identifies the value.",
+ "rdfs:label": "codeValue",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:termCode"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CategoryCode"
+ },
+ {
+ "@id": "schema:MedicalCode"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:InvestmentOrDeposit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.",
+ "rdfs:label": "InvestmentOrDeposit",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:CollectionPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Collection page.",
+ "rdfs:label": "CollectionPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:eventAttendanceMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.",
+ "rdfs:label": "eventAttendanceMode",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EventAttendanceModeEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:PhysicalActivity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.",
+ "rdfs:label": "PhysicalActivity",
+ "rdfs:subClassOf": {
+ "@id": "schema:LifestyleModification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:marginOfError",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A marginOfError for an [[Observation]].",
+ "rdfs:label": "marginOfError",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:LiquorStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits.",
+ "rdfs:label": "LiquorStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:resultComment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of result. The Comment created or sent as a result of this action.",
+ "rdfs:label": "resultComment",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:result"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ReplyAction"
+ },
+ {
+ "@id": "schema:CommentAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Comment"
+ }
+ },
+ {
+ "@id": "schema:deliveryLeadTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.",
+ "rdfs:label": "deliveryLeadTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Demand"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:width",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The width of the item.",
+ "rdfs:label": "width",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Distance"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:broker",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
+ "rdfs:label": "broker",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:Order"
+ },
+ {
+ "@id": "schema:Invoice"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FDAcategoryX",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.",
+ "rdfs:label": "FDAcategoryX",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasPOS",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Points-of-Sales operated by the organization or person.",
+ "rdfs:label": "hasPOS",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:globalLocationNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
+ "rdfs:label": "globalLocationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:postOp",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the postoperative procedures, care, and/or followups for this device.",
+ "rdfs:label": "postOp",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalDevice"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Store",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A retail good store.",
+ "rdfs:label": "Store",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:characterAttribute",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).",
+ "rdfs:label": "characterAttribute",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Game"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:EducationalOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An educational organization.",
+ "rdfs:label": "EducationalOrganization",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CivicStructure"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EventSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property.\n\nAn EventSeries is a collection of events that share some unifying characteristic. For example, \"The Olympic Games\" is a series, which\nis repeated regularly. The \"2012 London Olympics\" can be presented both as an [[Event]] in the series \"Olympic Games\", and as an\n[[EventSeries]] that included a number of sporting competitions as Events.\n\nThe nature of the association between the events in an [[EventSeries]] can vary, but typical examples could\ninclude a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers.\n\nEventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without\nworrying about which kinds of series are really event-like enough to call an Event. In general an EventSeries\nmay seem more Event-like when the period of time is compact and when aspects such as location are fixed, but\nit may also sometimes prove useful to describe a longer-term series as an Event.\n ",
+ "rdfs:label": "EventSeries",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Series"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/447"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupPetite",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Petite\" for wearables.",
+ "rdfs:label": "WearableSizeGroupPetite",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:PrognosisHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Typical progression and happenings of life course of the topic.",
+ "rdfs:label": "PrognosisHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:PartiallyInForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that parts of the legislation are in force, and parts are not.",
+ "rdfs:label": "PartiallyInForce",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-partiallyInForce"
+ }
+ },
+ {
+ "@id": "schema:RestockingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay a restocking fee when returning a product.",
+ "rdfs:label": "RestockingFees",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementHips",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the hip section, for example of a skirt",
+ "rdfs:label": "WearableMeasurementHips",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:transitTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical delay the order has been sent for delivery and the goods reach the final customer. Typical properties: minValue, maxValue, unitCode (d for DAY).",
+ "rdfs:label": "transitTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:UserPageVisits",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPageVisits",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:cvdNumBedsOcc",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.",
+ "rdfs:label": "cvdNumBedsOcc",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:priceType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration.",
+ "rdfs:label": "priceType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CompoundPriceSpecification"
+ },
+ {
+ "@id": "schema:UnitPriceSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PriceTypeEnumeration"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:CommentPermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to add comments to the document.",
+ "rdfs:label": "CommentPermission"
+ },
+ {
+ "@id": "schema:OriginalMediaContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'as original media content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'original': No evidence the footage has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n\nFor an [[ImageObject]] to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[ImageObject]] with embedded text to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[AudioObject]] to be 'original': No evidence the audio has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n",
+ "rdfs:label": "OriginalMediaContent",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:trailerWeight",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted weight of a trailer attached to the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "trailerWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:cargoVolume",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\\n\\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\\n\\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "cargoVolume",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DVDFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DVDFormat.",
+ "rdfs:label": "DVDFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:UserDownloads",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserDownloads",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:albumReleaseType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The kind of release which this album is: single, EP or album.",
+ "rdfs:label": "albumReleaseType",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbumReleaseType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:TrainReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for train travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "TrainReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:childMinAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Minimal age of the child.",
+ "rdfs:label": "childMinAge",
+ "schema:domainIncludes": {
+ "@id": "schema:ParentAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:isAccessoryOrSparePartFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another product (or multiple products) for which this product is an accessory or spare part.",
+ "rdfs:label": "isAccessoryOrSparePartFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:MusicPlaylist",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection of music tracks in playlist form.",
+ "rdfs:label": "MusicPlaylist",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:releaseOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The album this is a release of.",
+ "rdfs:label": "releaseOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:albumRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:seasonNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Position of the season within an ordered group of seasons.",
+ "rdfs:label": "seasonNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:VirtualLocation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An online or virtual location for attending events. For example, one may attend an online seminar or educational event. While a virtual location may be used as the location of an event, virtual locations should not be confused with physical locations in the real world.",
+ "rdfs:label": "VirtualLocation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:AdultEntertainment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An adult entertainment establishment.",
+ "rdfs:label": "AdultEntertainment",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:Recommendation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "[[Recommendation]] is a type of [[Review]] that suggests or proposes something as the best option or best course of action. Recommendations may be for products or services, or other concrete things, as in the case of a ranked list or product guide. A [[Guide]] may list multiple recommendations for different categories. For example, in a [[Guide]] about which TVs to buy, the author may have several [[Recommendation]]s.",
+ "rdfs:label": "Recommendation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2405"
+ }
+ },
+ {
+ "@id": "schema:storageRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Storage requirements (free space required).",
+ "rdfs:label": "storageRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:nerveMotor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The neurological pathway extension that involves muscle control.",
+ "rdfs:label": "nerveMotor",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Muscle"
+ }
+ },
+ {
+ "@id": "schema:permitAudience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The target audience for this permit.",
+ "rdfs:label": "permitAudience",
+ "schema:domainIncludes": {
+ "@id": "schema:Permit"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:requiredCollateral",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)",
+ "rdfs:label": "requiredCollateral",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:Audiobook",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An audiobook.",
+ "rdfs:label": "Audiobook",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:AudioObject"
+ },
+ {
+ "@id": "schema:Book"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:actionApplication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An application that can complete the request.",
+ "rdfs:label": "actionApplication",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:Patient",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/116154003"
+ },
+ "rdfs:comment": "A patient is any person recipient of health care services.",
+ "rdfs:label": "Patient",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalAudience"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:paymentDueDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date that payment is due.",
+ "rdfs:label": "paymentDueDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:targetProduct",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.",
+ "rdfs:label": "targetProduct",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:buyer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The participant/person/organization that bought the object.",
+ "rdfs:label": "buyer",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SellAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:busNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for the bus.",
+ "rdfs:label": "busNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:hiringOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Organization or Person offering the job position.",
+ "rdfs:label": "hiringOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:legislationConsolidates",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#consolidates"
+ },
+ "rdfs:comment": "Indicates another legislation taken into account in this consolidated legislation (which is usually the product of an editorial process that revises the legislation). This property should be used multiple times to refer to both the original version or the previous consolidated version, and to the legislations making the change.",
+ "rdfs:label": "legislationConsolidates",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#consolidates"
+ }
+ },
+ {
+ "@id": "schema:BusinessSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "BusinessSupport: this is a benefit for supporting businesses.",
+ "rdfs:label": "BusinessSupport",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:GovernmentBenefitsType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered.",
+ "rdfs:label": "GovernmentBenefitsType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:member",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
+ "rdfs:label": "member",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ProgramMembership"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:memberOf"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:howPerformed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How the procedure is performed.",
+ "rdfs:label": "howPerformed",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:appliesToPaymentMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The payment method(s) to which the payment charge specification applies.",
+ "rdfs:label": "appliesToPaymentMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentChargeSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PaymentMethod"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:shippingSettingsLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.",
+ "rdfs:label": "shippingSettingsLink",
+ "schema:domainIncludes": {
+ "@id": "schema:OfferShippingDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:numberOfSeasons",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of seasons in this series.",
+ "rdfs:label": "numberOfSeasons",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:SatireOrParodyContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'satire or parody content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'satire or parody content': A video that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] with embedded text to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[AudioObject]] to be 'satire or parody content': Audio that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n",
+ "rdfs:label": "SatireOrParodyContent",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:Genitourinary",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Genitourinary system function assessment with clinical examination.",
+ "rdfs:label": "Genitourinary",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasBioChemEntityPart",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "Indicates a BioChemEntity that (in some sense) has this BioChemEntity as a part. ",
+ "rdfs:label": "hasBioChemEntityPart",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isPartOfBioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:educationalLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.",
+ "rdfs:label": "educationalLevel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:EducationEvent"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:availableThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "After this date, the item will no longer be available for pickup.",
+ "rdfs:label": "availableThrough",
+ "schema:domainIncludes": {
+ "@id": "schema:DeliveryEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:softwareRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (examples: DirectX, Java or .NET runtime).",
+ "rdfs:label": "softwareRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ProductCollection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]].",
+ "rdfs:label": "ProductCollection",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Collection"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2597"
+ }
+ },
+ {
+ "@id": "schema:OrganizationRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subclass of Role used to describe roles within organizations.",
+ "rdfs:label": "OrganizationRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ }
+ },
+ {
+ "@id": "schema:trackingNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Shipper tracking number.",
+ "rdfs:label": "trackingNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:seatSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The section location of the reserved seat (e.g. Orchestra).",
+ "rdfs:label": "seatSection",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:associatedMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for encoding.",
+ "rdfs:label": "associatedMedia",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HyperToc"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:HyperTocEntry"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:healthPlanCoinsuranceRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The rate of coinsurance expressed as a number between 0.0 and 1.0.",
+ "rdfs:label": "healthPlanCoinsuranceRate",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:FindAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of finding an object.\\n\\nRelated actions:\\n\\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily.",
+ "rdfs:label": "FindAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:actionPlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.",
+ "rdfs:label": "actionPlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DigitalPlatformEnumeration"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:GeoCircle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.\n ",
+ "rdfs:label": "GeoCircle",
+ "rdfs:subClassOf": {
+ "@id": "schema:GeoShape"
+ }
+ },
+ {
+ "@id": "schema:steeringPosition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The position of the steering wheel or similar device (mostly for cars).",
+ "rdfs:label": "steeringPosition",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SteeringPositionValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:prepTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "prepTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToDirection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:SportsActivityLocation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sports location, such as a playing field.",
+ "rdfs:label": "SportsActivityLocation",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:warning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any FDA or other warnings about the drug (text or URL).",
+ "rdfs:label": "warning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MeetingRoom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A meeting room, conference room, or conference hall is a room provided for singular events such as business conferences and meetings (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Conference_hall).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "MeetingRoom",
+ "rdfs:subClassOf": {
+ "@id": "schema:Room"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:expectedArrivalUntil",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The latest date the package may arrive.",
+ "rdfs:label": "expectedArrivalUntil",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:exampleOfWork",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A creative work that this work is an example/instance/realization/derivation of.",
+ "rdfs:label": "exampleOfWork",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:workExample"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:cvdNumBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.",
+ "rdfs:label": "cvdNumBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:lyrics",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The words in the song.",
+ "rdfs:label": "lyrics",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:broadcastSignalModulation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The modulation (e.g. FM, AM, etc) used by a particular broadcast service.",
+ "rdfs:label": "broadcastSignalModulation",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastFrequencySpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2111"
+ }
+ },
+ {
+ "@id": "schema:loanType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of a loan or credit.",
+ "rdfs:label": "loanType",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:seriousAdverseOutcome",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.",
+ "rdfs:label": "seriousAdverseOutcome",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalTherapy"
+ },
+ {
+ "@id": "schema:MedicalDevice"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:UKNonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UKNonprofitType: Non-profit organization type originating from the United Kingdom.",
+ "rdfs:label": "UKNonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:NonprofitType"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:workFeatured",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).",
+ "rdfs:label": "workFeatured",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:BoatTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip on a commercial ferry line.",
+ "rdfs:label": "BoatTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:baseSalary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The base salary of the job or of an employee in an EmployeeRole.",
+ "rdfs:label": "baseSalary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:EmployeeRole"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ]
+ },
+ {
+ "@id": "schema:course",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The course where this action was taken.",
+ "rdfs:label": "course",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:exerciseCourse"
+ }
+ },
+ {
+ "@id": "schema:EmployeeRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subclass of OrganizationRole used to describe employee relationships.",
+ "rdfs:label": "EmployeeRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizationRole"
+ }
+ },
+ {
+ "@id": "schema:gameAvailabilityType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the availability type of the game content associated with this action, such as whether it is a full version or a demo.",
+ "rdfs:label": "gameAvailabilityType",
+ "schema:domainIncludes": {
+ "@id": "schema:PlayGameAction"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:GameAvailabilityEnumeration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:BookStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bookstore.",
+ "rdfs:label": "BookStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Gastroenterologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.",
+ "rdfs:label": "Gastroenterologic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:nerve",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The underlying innervation associated with the muscle.",
+ "rdfs:label": "nerve",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Nerve"
+ }
+ },
+ {
+ "@id": "schema:competencyRequired",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.",
+ "rdfs:label": "competencyRequired",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:UpdateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of managing by changing/editing the state of the object.",
+ "rdfs:label": "UpdateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:remainingAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of attendee places for an event that remain unallocated.",
+ "rdfs:label": "remainingAttendeeCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:parentTaxon",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
+ },
+ "rdfs:comment": "Closest parent taxon of the taxon in question.",
+ "rdfs:label": "parentTaxon",
+ "schema:domainIncludes": {
+ "@id": "schema:Taxon"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:childTaxon"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ }
+ ]
+ },
+ {
+ "@id": "schema:parentService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.",
+ "rdfs:label": "parentService",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastService"
+ }
+ },
+ {
+ "@id": "schema:replacee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The object that is being replaced.",
+ "rdfs:label": "replacee",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ReplaceAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:tracks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A music recording (track)—usually a single song.",
+ "rdfs:label": "tracks",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MusicPlaylist"
+ },
+ {
+ "@id": "schema:MusicGroup"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:track"
+ }
+ },
+ {
+ "@id": "schema:spouse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person's spouse.",
+ "rdfs:label": "spouse",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:MobileApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A software application designed specifically to work well on a mobile device such as a telephone.",
+ "rdfs:label": "MobileApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:pageEnd",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pageEnd"
+ },
+ "rdfs:comment": "The page on which the work ends; for example \"138\" or \"xvi\".",
+ "rdfs:label": "pageEnd",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PublicationVolume"
+ },
+ {
+ "@id": "schema:PublicationIssue"
+ },
+ {
+ "@id": "schema:Chapter"
+ },
+ {
+ "@id": "schema:Article"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:diseaseSpreadStatistics",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Statistical information about the spread of a disease, either as [[WebContent]], or\n described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is\n provided, the page indicated might also contain more such markup.",
+ "rdfs:label": "diseaseSpreadStatistics",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:Observation"
+ },
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:DiagnosticProcedure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.",
+ "rdfs:label": "DiagnosticProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Attorney",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Professional service: Attorney. \\n\\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous.",
+ "rdfs:label": "Attorney",
+ "rdfs:subClassOf": {
+ "@id": "schema:LegalService"
+ }
+ },
+ {
+ "@id": "schema:layoutImage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A schematic image showing the floorplan layout.",
+ "rdfs:label": "layoutImage",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:image"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:FloorPlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:ImageObject"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2690"
+ }
+ },
+ {
+ "@id": "schema:additionalNumberOfGuests",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If responding yes, the number of guests who will attend in addition to the invitee.",
+ "rdfs:label": "additionalNumberOfGuests",
+ "schema:domainIncludes": {
+ "@id": "schema:RsvpAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:availabilityEnds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The end of the availability of the product or service included in the offer.",
+ "rdfs:label": "availabilityEnds",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ ]
+ },
+ {
+ "@id": "schema:structuralClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name given to how bone physically connects to each other.",
+ "rdfs:label": "structuralClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Joint"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:TradeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.",
+ "rdfs:label": "TradeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:programmingModel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether API is managed or unmanaged.",
+ "rdfs:label": "programmingModel",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:fuelConsumption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\\n\\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel consumption to another value.",
+ "rdfs:label": "fuelConsumption",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:grantee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person, organization, contact point, or audience that has been granted this permission.",
+ "rdfs:label": "grantee",
+ "schema:domainIncludes": {
+ "@id": "schema:DigitalDocumentPermission"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Audience"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BloodTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical test performed on a sample of a patient's blood.",
+ "rdfs:label": "BloodTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:activeIngredient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An active ingredient, typically chemical compounds and/or biologic substances.",
+ "rdfs:label": "activeIngredient",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DrugStrength"
+ },
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:Substance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:RadioStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio station.",
+ "rdfs:label": "RadioStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:warrantyScope",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The scope of the warranty promise.",
+ "rdfs:label": "warrantyScope",
+ "schema:domainIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:WarrantyScope"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:ComputerStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A computer store.",
+ "rdfs:label": "ComputerStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:muscleAction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The movement the muscle generates.",
+ "rdfs:label": "muscleAction",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:RentalCarReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for a rental car.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "RentalCarReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:ItemList",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.",
+ "rdfs:label": "ItemList",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:CausesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about the causes and main actions that gave rise to the topic.",
+ "rdfs:label": "CausesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:VegetarianDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of animal meat.",
+ "rdfs:label": "VegetarianDiet"
+ },
+ {
+ "@id": "schema:seller",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.",
+ "rdfs:label": "seller",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:BuyAction"
+ },
+ {
+ "@id": "schema:Order"
+ },
+ {
+ "@id": "schema:Flight"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:studyLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location in which the study is taking/took place.",
+ "rdfs:label": "studyLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:mapType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the kind of Map, from the MapCategoryType Enumeration.",
+ "rdfs:label": "mapType",
+ "schema:domainIncludes": {
+ "@id": "schema:Map"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MapCategoryType"
+ }
+ },
+ {
+ "@id": "schema:fromLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The original location of the object or the agent before the action.",
+ "rdfs:label": "fromLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MoveAction"
+ },
+ {
+ "@id": "schema:ExerciseAction"
+ },
+ {
+ "@id": "schema:TransferAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:ReturnFeesEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several kinds of policies for product return fees.",
+ "rdfs:label": "ReturnFeesEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:knowsAbout",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.",
+ "rdfs:label": "knowsAbout",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A seasonal override of a return policy, for example used for holidays.",
+ "rdfs:label": "MerchantReturnPolicySeasonalOverride",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:RearWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Real-wheel drive is a transmission layout where the engine drives the rear wheels.",
+ "rdfs:label": "RearWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:mainEntityOfPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.",
+ "rdfs:label": "mainEntityOfPage",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:mainEntity"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ContactPointOption",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated options related to a ContactPoint.",
+ "rdfs:label": "ContactPointOption",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:actor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "actor",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:PodcastSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:releasedEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place and time the release was issued, expressed as a PublicationEvent.",
+ "rdfs:label": "releasedEvent",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:IgnoreAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of intentionally disregarding the object. An agent ignores an object.",
+ "rdfs:label": "IgnoreAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:publicationType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html).",
+ "rdfs:label": "publicationType",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalScholarlyArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:UserCheckins",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserCheckins",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:polygon",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.",
+ "rdfs:label": "polygon",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoShape"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ArriveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.",
+ "rdfs:label": "ArriveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:MoveAction"
+ }
+ },
+ {
+ "@id": "schema:RecyclingCenter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recycling center.",
+ "rdfs:label": "RecyclingCenter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:musicalKey",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The key, mode, or scale this composition uses.",
+ "rdfs:label": "musicalKey",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:value",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "value",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:StructuredValue"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:RoofingContractor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A roofing contractor.",
+ "rdfs:label": "RoofingContractor",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementLength",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Represents the length, for example of a dress",
+ "rdfs:label": "WearableMeasurementLength",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:includedComposition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Smaller compositions included in this work (e.g. a movement in a symphony).",
+ "rdfs:label": "includedComposition",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:bookFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The format of the book.",
+ "rdfs:label": "bookFormat",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BookFormatType"
+ }
+ },
+ {
+ "@id": "schema:ReservationConfirmed",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a confirmed reservation.",
+ "rdfs:label": "ReservationConfirmed"
+ },
+ {
+ "@id": "schema:Specialty",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.",
+ "rdfs:label": "Specialty",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:healthCondition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifying the health condition(s) of a patient, medical study, or other target audience.",
+ "rdfs:label": "healthCondition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalStudy"
+ },
+ {
+ "@id": "schema:Patient"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryC",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryC",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:GeoCoordinates",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The geographic coordinates of a place or event.",
+ "rdfs:label": "GeoCoordinates",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ }
+ },
+ {
+ "@id": "schema:version",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The version of the CreativeWork embodied by a specified resource.",
+ "rdfs:label": "version",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:locationCreated",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.",
+ "rdfs:label": "locationCreated",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:SRP",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the suggested retail price (\"SRP\") of an offered product.",
+ "rdfs:label": "SRP",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:relevantSpecialty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If applicable, a medical specialty in which this entity is relevant.",
+ "rdfs:label": "relevantSpecialty",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSpecialty"
+ }
+ },
+ {
+ "@id": "schema:floorLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The floor level for an [[Accommodation]] in a multi-storey building. Since counting\n systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.",
+ "rdfs:label": "floorLevel",
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:isConsumableFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another product (or multiple products) for which this product is a consumable.",
+ "rdfs:label": "isConsumableFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:TaxiStand",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A taxi stand.",
+ "rdfs:label": "TaxiStand",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c2",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations.",
+ "rdfs:label": "Nonprofit501c2",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ClothingStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A clothing store.",
+ "rdfs:label": "ClothingStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:nonProprietaryName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The generic name of this drug or supplement.",
+ "rdfs:label": "nonProprietaryName",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:VideoObjectSnapshot",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of a [[VideoObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "VideoObjectSnapshot",
+ "rdfs:subClassOf": {
+ "@id": "schema:VideoObject"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:OverviewHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction.",
+ "rdfs:label": "OverviewHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:Guide",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "[[Guide]] is a page or article that recommends specific products or services, or aspects of a thing for a user to consider. A [[Guide]] may represent a Buying Guide and detail aspects of products or services for a user to consider. A [[Guide]] may represent a Product Guide and recommend specific products or services. A [[Guide]] may represent a Ranked List and recommend specific products or services with ranking.",
+ "rdfs:label": "Guide",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2405"
+ }
+ },
+ {
+ "@id": "schema:availableLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]].",
+ "rdfs:label": "availableLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TouristAttraction"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:ServiceChannel"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Language"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MoneyTransfer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of transferring money from one place to another place. This may occur electronically or physically.",
+ "rdfs:label": "MoneyTransfer",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MeasurementTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumeration of common measurement types (or dimensions), for example \"chest\" for a person, \"inseam\" for pants, \"gauge\" for screws, or \"wheel\" for bicycles.",
+ "rdfs:label": "MeasurementTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:partOfTVSeries",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The TV series to which this episode or season belongs.",
+ "rdfs:label": "partOfTVSeries",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:TVClip"
+ },
+ {
+ "@id": "schema:TVSeason"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:TVSeries"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:partOfSeries"
+ }
+ },
+ {
+ "@id": "schema:Festival",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Festival.",
+ "rdfs:label": "Festival",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:sha256",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'",
+ "rdfs:label": "sha256",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:musicReleaseFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Format of this release (the type of recording media used, i.e. compact disc, digital media, LP, etc.).",
+ "rdfs:label": "musicReleaseFormat",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicReleaseFormatType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:acquireLicensePage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.",
+ "rdfs:label": "acquireLicensePage",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:usageInfo"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2454"
+ }
+ },
+ {
+ "@id": "schema:Endocrine",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.",
+ "rdfs:label": "Endocrine",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementOutsideLeg",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the outside leg, for example of pants",
+ "rdfs:label": "WearableMeasurementOutsideLeg",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:MusicAlbum",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection of music tracks.",
+ "rdfs:label": "MusicAlbum",
+ "rdfs:subClassOf": {
+ "@id": "schema:MusicPlaylist"
+ }
+ },
+ {
+ "@id": "schema:AskPublicNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[NewsArticle]] expressing an open call by a [[NewsMediaOrganization]] asking the public for input, insights, clarifications, anecdotes, documentation, etc., on an issue, for reporting purposes.",
+ "rdfs:label": "AskPublicNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ServiceChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A means for accessing a service, e.g. a government office location, web site, or phone number.",
+ "rdfs:label": "ServiceChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Saturday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Friday and Sunday.",
+ "rdfs:label": "Saturday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q131"
+ }
+ },
+ {
+ "@id": "schema:recipeYield",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity produced by the recipe (for example, number of people served, number of servings, etc).",
+ "rdfs:label": "recipeYield",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:yield"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OccupationalExperienceRequirements",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates employment-related experience requirements, e.g. [[monthsOfExperience]].",
+ "rdfs:label": "OccupationalExperienceRequirements",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
+ }
+ },
+ {
+ "@id": "schema:thumbnailUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A thumbnail image relevant to the Thing.",
+ "rdfs:label": "thumbnailUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:Organization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An organization such as a school, NGO, corporation, club, etc.",
+ "rdfs:label": "Organization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:numberOfFullBathrooms",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field).",
+ "rdfs:label": "numberOfFullBathrooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:HealthPlanNetwork",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A US-style health insurance plan network. ",
+ "rdfs:label": "HealthPlanNetwork",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:TouristTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist trip. A created itinerary of visits to one or more places of interest ([[TouristAttraction]]/[[TouristDestination]]) often linked by a similar theme, geographic area, or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors.\n (See examples below.)",
+ "rdfs:label": "TouristTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SymptomsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Symptoms or related symptoms of a Topic.",
+ "rdfs:label": "SymptomsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:floorLimit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A floor limit is the amount of money above which credit card transactions must be authorized.",
+ "rdfs:label": "floorLimit",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Neuro",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Neurological system clinical examination.",
+ "rdfs:label": "Neuro",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:requiredGender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Audiences defined by a person's gender.",
+ "rdfs:label": "requiredGender",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:HobbyShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A store that sells materials useful or necessary for various hobbies.",
+ "rdfs:label": "HobbyShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:proficiencyLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.",
+ "rdfs:label": "proficiencyLevel",
+ "schema:domainIncludes": {
+ "@id": "schema:TechArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementFoot",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Foot length (measured between end of the most prominent toe and the most prominent part of the heel). Used, for example, to measure socks.",
+ "rdfs:label": "BodyMeasurementFoot",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Casino",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A casino.",
+ "rdfs:label": "Casino",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:productSupported",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\").",
+ "rdfs:label": "productSupported",
+ "schema:domainIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SoftwareSourceCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
+ "rdfs:label": "SoftwareSourceCode",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:nextItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to the ListItem that follows the current one.",
+ "rdfs:label": "nextItem",
+ "schema:domainIncludes": {
+ "@id": "schema:ListItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ListItem"
+ }
+ },
+ {
+ "@id": "schema:MultiCenterTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial that takes place at multiple centers.",
+ "rdfs:label": "MultiCenterTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BackOrder",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available on back order.",
+ "rdfs:label": "BackOrder"
+ },
+ {
+ "@id": "schema:PodcastSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used.",
+ "rdfs:label": "PodcastSeason",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
+ },
+ {
+ "@id": "schema:EventReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for an event like a concert, sporting event, or lecture.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "EventReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:branch",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]].",
+ "rdfs:label": "branch",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:arterialBranch"
+ }
+ },
+ {
+ "@id": "schema:sodiumContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of milligrams of sodium.",
+ "rdfs:label": "sodiumContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:steps",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).",
+ "rdfs:label": "steps",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToSection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:step"
+ }
+ },
+ {
+ "@id": "schema:inSupportOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Qualification, candidature, degree, application that Thesis supports.",
+ "rdfs:label": "inSupportOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Thesis"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:significantLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
+ "rdfs:label": "significantLink",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:timeToComplete",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected length of time to complete the program if attending full-time.",
+ "rdfs:label": "timeToComplete",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:makesOffer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to products or services offered by the organization or person.",
+ "rdfs:label": "makesOffer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:offeredBy"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:MedicalProcedureType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enumeration that describes different types of medical procedures.",
+ "rdfs:label": "MedicalProcedureType",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AggregateRating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The average rating based on multiple ratings or reviews.",
+ "rdfs:label": "AggregateRating",
+ "rdfs:subClassOf": {
+ "@id": "schema:Rating"
+ }
+ },
+ {
+ "@id": "schema:sourcedFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The neurological pathway that originates the neurons.",
+ "rdfs:label": "sourcedFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BrainStructure"
+ }
+ },
+ {
+ "@id": "schema:measuredValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The measuredValue of an [[Observation]].",
+ "rdfs:label": "measuredValue",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:DataDownload",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcat:Distribution"
+ },
+ "rdfs:comment": "All or part of a [[Dataset]] in downloadable form. ",
+ "rdfs:label": "DataDownload",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
+ }
+ },
+ {
+ "@id": "schema:nutrition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Nutrition information about the recipe or menu item.",
+ "rdfs:label": "nutrition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:Recipe"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:NutritionInformation"
+ }
+ },
+ {
+ "@id": "schema:endTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. E.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
+ "rdfs:label": "endTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:InteractionCounter"
+ },
+ {
+ "@id": "schema:FoodEstablishmentReservation"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Action"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2493"
+ }
+ },
+ {
+ "@id": "schema:subjectOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CreativeWork or Event about this Thing.",
+ "rdfs:label": "subjectOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:about"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
+ }
+ },
+ {
+ "@id": "schema:albumRelease",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A release of this album.",
+ "rdfs:label": "albumRelease",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:releaseOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicRelease"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnUnlimitedWindow",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that there is an unlimited window for product returns.",
+ "rdfs:label": "MerchantReturnUnlimitedWindow",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:ComicSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sequential publication of comic stories under a\n \tunifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n \tWanderer\".",
+ "rdfs:label": "ComicSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:Periodical"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:cashBack",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A cardholder benefit that pays the cardholder a small percentage of their net expenditures.",
+ "rdfs:label": "cashBack",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Boolean"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SexualContentConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item contains sexually oriented content such as nudity, suggestive or explicit material, or related online services, or is intended to enhance sexual activity. Examples: Erotic videos or magazine, sexual enhancement devices, sex toys.",
+ "rdfs:label": "SexualContentConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:GovernmentService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.",
+ "rdfs:label": "GovernmentService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:Continent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "One of the continents (for example, Europe or Africa).",
+ "rdfs:label": "Continent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:EducationalOccupationalCredential",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc., that may be awarded to a person or other entity that meets the requirements defined by the credentialer.",
+ "rdfs:label": "EducationalOccupationalCredential",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:InfectiousDisease",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.",
+ "rdfs:label": "InfectiousDisease",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:riskFactor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.",
+ "rdfs:label": "riskFactor",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalRiskFactor"
+ }
+ },
+ {
+ "@id": "schema:greater",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than the object.",
+ "rdfs:label": "greater",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:priceComponentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies a price component (for example, a line item on an invoice), part of the total price for an offer.",
+ "rdfs:label": "priceComponentType",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceComponentTypeEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:ReturnByMail",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be done by mail.",
+ "rdfs:label": "ReturnByMail",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:ownershipFundingInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.",
+ "rdfs:label": "ownershipFundingInfo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AboutPage"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Prion",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "A prion is an infectious agent composed of protein in a misfolded form.",
+ "rdfs:label": "Prion",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:timeOfDay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time of day the program normally runs. For example, \"evenings\".",
+ "rdfs:label": "timeOfDay",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:specialty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of the domain specialities to which this web page's content applies.",
+ "rdfs:label": "specialty",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Specialty"
+ }
+ },
+ {
+ "@id": "schema:letterer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who adds lettering, including speech balloons and sound effects, to artwork.",
+ "rdfs:label": "letterer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:billingStart",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property.",
+ "rdfs:label": "billingStart",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:roleName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.",
+ "rdfs:label": "roleName",
+ "schema:domainIncludes": {
+ "@id": "schema:Role"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:securityScreening",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of security screening the passenger is subject to.",
+ "rdfs:label": "securityScreening",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:competitor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A competitor in a sports event.",
+ "rdfs:label": "competitor",
+ "schema:domainIncludes": {
+ "@id": "schema:SportsEvent"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:provider",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.",
+ "rdfs:label": "provider",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ParcelDelivery"
+ },
+ {
+ "@id": "schema:Trip"
+ },
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Action"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2927"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MusicGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.",
+ "rdfs:label": "MusicGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:PerformingGroup"
+ }
+ },
+ {
+ "@id": "schema:SingleCenterTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial that takes place at a single center.",
+ "rdfs:label": "SingleCenterTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:occupationLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": " The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.",
+ "rdfs:label": "occupationLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:Occupation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c10",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations.",
+ "rdfs:label": "Nonprofit501c10",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:orderItemStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current status of the order item.",
+ "rdfs:label": "orderItemStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:OrderItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OrderStatus"
+ }
+ },
+ {
+ "@id": "schema:currenciesAccepted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency accepted.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "currenciesAccepted",
+ "schema:domainIncludes": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MedicalTestPanel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any collection of tests commonly ordered together.",
+ "rdfs:label": "MedicalTestPanel",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DrugStrength",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific strength in which a medical drug is available in a specific country.",
+ "rdfs:label": "DrugStrength",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:reportNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number or other unique designator assigned to a Report by the publishing organization.",
+ "rdfs:label": "reportNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:Report"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:TypeAndQuantityNode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.",
+ "rdfs:label": "TypeAndQuantityNode",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:MediaSubscription",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subscription which allows a user to access media including audio, video, books, etc.",
+ "rdfs:label": "MediaSubscription",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:claimReviewed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short summary of the specific claims reviewed in a ClaimReview.",
+ "rdfs:label": "claimReviewed",
+ "schema:domainIncludes": {
+ "@id": "schema:ClaimReview"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1061"
+ }
+ },
+ {
+ "@id": "schema:estimatedCost",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The estimated cost of the supply or supplies consumed when performing instructions.",
+ "rdfs:label": "estimatedCost",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToSupply"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ]
+ },
+ {
+ "@id": "schema:commentText",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The text of the UserComment.",
+ "rdfs:label": "commentText",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Retail",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the retail cost of the drug.",
+ "rdfs:label": "Retail",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:founders",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person who founded this organization.",
+ "rdfs:label": "founders",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:founder"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupHusky",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Husky\" (or \"Stocky\") for wearables.",
+ "rdfs:label": "WearableSizeGroupHusky",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:chemicalRole",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
+ },
+ "rdfs:comment": "A role played by the BioChemEntity within a chemical context.",
+ "rdfs:label": "chemicalRole",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MolecularEntity"
+ },
+ {
+ "@id": "schema:ChemicalSubstance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ }
+ },
+ {
+ "@id": "schema:expires",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.",
+ "rdfs:label": "expires",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:doorTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time admission will commence.",
+ "rdfs:label": "doorTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:healthPlanCopayOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the copay is before or after deductible, etc. TODO: Is this a closed set?",
+ "rdfs:label": "healthPlanCopayOption",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:modelDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
+ "rdfs:label": "modelDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DiabeticDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet appropriate for people with diabetes.",
+ "rdfs:label": "DiabeticDiet"
+ },
+ {
+ "@id": "schema:annualPercentageRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.",
+ "rdfs:label": "annualPercentageRate",
+ "schema:domainIncludes": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:Product",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.",
+ "rdfs:label": "Product",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:publicTransportClosuresInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about public transport closures.",
+ "rdfs:label": "publicTransportClosuresInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:XRay",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "X-ray imaging.",
+ "rdfs:label": "XRay",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:legislationIdentifier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI (European Legislation Identifier) or an URN-Lex.",
+ "rdfs:label": "legislationIdentifier",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#id_local"
+ }
+ },
+ {
+ "@id": "schema:athlete",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person that acts as performing member of a sports team; a player as opposed to a coach.",
+ "rdfs:label": "athlete",
+ "schema:domainIncludes": {
+ "@id": "schema:SportsTeam"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:amenityFeature",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.",
+ "rdfs:label": "amenityFeature",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementInseam",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the inseam, for example of pants",
+ "rdfs:label": "WearableMeasurementInseam",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:MedicalAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Target audiences for medical web pages.",
+ "rdfs:label": "MedicalAudience",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:PeopleAudience"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SeeDoctorHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation.",
+ "rdfs:label": "SeeDoctorHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:arterialBranch",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The branches that comprise the arterial structure.",
+ "rdfs:label": "arterialBranch",
+ "schema:domainIncludes": {
+ "@id": "schema:Artery"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:MusicEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Music event.",
+ "rdfs:label": "MusicEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:issuedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization issuing the ticket or permit.",
+ "rdfs:label": "issuedBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Permit"
+ },
+ {
+ "@id": "schema:Ticket"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:MixedEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes.",
+ "rdfs:label": "MixedEventAttendanceMode",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:Dermatology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.",
+ "rdfs:label": "Dermatology",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:loser",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The loser of the action.",
+ "rdfs:label": "loser",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:WinAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:distinguishingSign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.",
+ "rdfs:label": "distinguishingSign",
+ "schema:domainIncludes": {
+ "@id": "schema:DDxElement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSignOrSymptom"
+ }
+ },
+ {
+ "@id": "schema:loanPaymentAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of money to pay in a single payment.",
+ "rdfs:label": "loanPaymentAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MedicalTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.",
+ "rdfs:label": "MedicalTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:depth",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The depth of the item.",
+ "rdfs:label": "depth",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:RadioEpisode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio episode which can be part of a series or season.",
+ "rdfs:label": "RadioEpisode",
+ "rdfs:subClassOf": {
+ "@id": "schema:Episode"
+ }
+ },
+ {
+ "@id": "schema:previousStartDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.",
+ "rdfs:label": "previousStartDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:MedicalSignOrSymptom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.",
+ "rdfs:label": "MedicalSignOrSymptom",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:termsPerYear",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of times terms of study are offered per year. Semesters and quarters are common units for term. For example, if the student can only take 2 semesters for the program in one year, then termsPerYear should be 2.",
+ "rdfs:label": "termsPerYear",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:track",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.",
+ "rdfs:label": "track",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MusicPlaylist"
+ },
+ {
+ "@id": "schema:MusicGroup"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:MusicRecording"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementArm",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Arm length (measured between arms/shoulder line intersection and the prominent wrist bone). Used, for example, to fit shirts.",
+ "rdfs:label": "BodyMeasurementArm",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:VoteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a preference from a fixed/finite/structured set of choices/options.",
+ "rdfs:label": "VoteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ChooseAction"
+ }
+ },
+ {
+ "@id": "schema:WPSideBar",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sidebar section of the page.",
+ "rdfs:label": "WPSideBar",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:subReservation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual reservations included in the package. Typically a repeated property.",
+ "rdfs:label": "subReservation",
+ "schema:domainIncludes": {
+ "@id": "schema:ReservationPackage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:ApartmentComplex",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Residence type: Apartment complex.",
+ "rdfs:label": "ApartmentComplex",
+ "rdfs:subClassOf": {
+ "@id": "schema:Residence"
+ }
+ },
+ {
+ "@id": "schema:caption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]].",
+ "rdfs:label": "caption",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:AudioObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:contentLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location depicted or described in the content. For example, the location in a photograph or painting.",
+ "rdfs:label": "contentLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:valuePattern",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a regular expression for testing literal values according to the HTML spec.",
+ "rdfs:label": "valuePattern",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:currency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "currency",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LoanOrCredit"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:ExchangeRateSpecification"
+ },
+ {
+ "@id": "schema:DatedMoneySpecification"
+ },
+ {
+ "@id": "schema:MonetaryAmountDistribution"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ },
+ {
+ "@id": "schema:Sculpture",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A piece of sculpture.",
+ "rdfs:label": "Sculpture",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:HealthAspectEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]].",
+ "rdfs:label": "HealthAspectEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:Surgical",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.",
+ "rdfs:label": "Surgical",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hospitalAffiliation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A hospital with which the physician or office is affiliated.",
+ "rdfs:label": "hospitalAffiliation",
+ "schema:domainIncludes": {
+ "@id": "schema:Physician"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Hospital"
+ }
+ },
+ {
+ "@id": "schema:Terminated",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Terminated.",
+ "rdfs:label": "Terminated",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:EnergyStarEnergyEfficiencyEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to indicate whether a product is EnergyStar certified.",
+ "rdfs:label": "EnergyStarEnergyEfficiencyEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:EnergyEfficiencyEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:DepositAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.",
+ "rdfs:label": "DepositAccount",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:BankAccount"
+ },
+ {
+ "@id": "schema:InvestmentOrDeposit"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:departureBusStop",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stop or station from which the bus departs.",
+ "rdfs:label": "departureBusStop",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BusStop"
+ },
+ {
+ "@id": "schema:BusStation"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MovingCompany",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A moving company.",
+ "rdfs:label": "MovingCompany",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:shippingDestination",
+ "@type": "rdf:Property",
+ "rdfs:comment": "indicates (possibly multiple) shipping destinations. These can be defined in several ways, e.g. postalCode ranges.",
+ "rdfs:label": "shippingDestination",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ShippingRateSettings"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:smiles",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "A specification in form of a line notation for describing the structure of chemical species using short ASCII strings. Double bond stereochemistry \\ indicators may need to be escaped in the string in formats where the backslash is an escape character.",
+ "rdfs:label": "smiles",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AggregateOffer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\\n\\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.",
+ "rdfs:label": "AggregateOffer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Offer"
+ }
+ },
+ {
+ "@id": "schema:workHours",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).",
+ "rdfs:label": "workHours",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemGS1",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "GS1 (formerly NRF) size system for wearables.",
+ "rdfs:label": "WearableSizeSystemGS1",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:EmploymentAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An employment agency.",
+ "rdfs:label": "EmploymentAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Ligament",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.",
+ "rdfs:label": "Ligament",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:educationalUse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The purpose of a work in the context of education; for example, 'assignment', 'group work'.",
+ "rdfs:label": "educationalUse",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FDAcategoryC",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.",
+ "rdfs:label": "FDAcategoryC",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:exerciseRelatedDiet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The diet used in this action.",
+ "rdfs:label": "exerciseRelatedDiet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Diet"
+ }
+ },
+ {
+ "@id": "schema:Optometric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The science or practice of testing visual acuity and prescribing corrective lenses.",
+ "rdfs:label": "Optometric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common types of measurement for wearables products.",
+ "rdfs:label": "WearableMeasurementTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:MeasurementTypeEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:OutletStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An outlet store.",
+ "rdfs:label": "OutletStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:StoreCreditRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that the customer receives a store credit as refund when returning a product.",
+ "rdfs:label": "StoreCreditRefund",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:InternetCafe",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An internet cafe.",
+ "rdfs:label": "InternetCafe",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:legalName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The official name of the organization, e.g. the registered company name.",
+ "rdfs:label": "legalName",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:awayTeam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The away team in a sports event.",
+ "rdfs:label": "awayTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:competitor"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SportsEvent"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Landform",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.",
+ "rdfs:label": "Landform",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:actionAccessibilityRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A set of requirements that must be fulfilled in order to perform an Action. If more than one value is specified, fulfilling one set of requirements will allow the Action to be performed.",
+ "rdfs:label": "actionAccessibilityRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:ConsumeAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:AdministrativeArea",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A geographical region, typically under the jurisdiction of a particular government.",
+ "rdfs:label": "AdministrativeArea",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:OnlineFull",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.",
+ "rdfs:label": "OnlineFull"
+ },
+ {
+ "@id": "schema:Role",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "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).",
+ "rdfs:label": "Role",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:supersededBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Relates a term (i.e. a property, class or enumeration) to one that supersedes it.",
+ "rdfs:label": "supersededBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Class"
+ },
+ {
+ "@id": "schema:Enumeration"
+ },
+ {
+ "@id": "schema:Property"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://meta.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Class"
+ },
+ {
+ "@id": "schema:Property"
+ },
+ {
+ "@id": "schema:Enumeration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:copyrightHolder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The party holding the legal copyright to the CreativeWork.",
+ "rdfs:label": "copyrightHolder",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:accessibilityControl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).",
+ "rdfs:label": "accessibilityControl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ListenAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming audio content.",
+ "rdfs:label": "ListenAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:SocialMediaPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.",
+ "rdfs:label": "SocialMediaPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:MusicVenue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music venue.",
+ "rdfs:label": "MusicVenue",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:startTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. E.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
+ "rdfs:label": "startTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Action"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:InteractionCounter"
+ },
+ {
+ "@id": "schema:FoodEstablishmentReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2493"
+ }
+ },
+ {
+ "@id": "schema:result",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The result produced in the action. E.g. John wrote *a book*.",
+ "rdfs:label": "result",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:recordedIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CreativeWork that captured all or part of this Event.",
+ "rdfs:label": "recordedIn",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordedAt"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:missionCoveragePrioritiesPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.",
+ "rdfs:label": "missionCoveragePrioritiesPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Genetic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.",
+ "rdfs:label": "Genetic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:partOfTrip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.",
+ "rdfs:label": "partOfTrip",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:subTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:maintainer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A maintainer of a [[Dataset]], software package ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a [[Person]] or [[Organization]] that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on \"upstream\" sources. When [[maintainer]] is applied to a specific version of something e.g. a particular version or packaging of a [[Dataset]], it is always possible that the upstream source has a different maintainer. The [[isBasedOn]] property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.\n ",
+ "rdfs:label": "maintainer",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2311"
+ }
+ },
+ {
+ "@id": "schema:actionableFeedbackPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.",
+ "rdfs:label": "actionableFeedbackPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:NewsMediaOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:additionalProperty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A property-value pair representing an additional characteristic of the entity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\\n\\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.\n",
+ "rdfs:label": "additionalProperty",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PropertyValue"
+ }
+ },
+ {
+ "@id": "schema:Grant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n ",
+ "rdfs:label": "Grant",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:arrivalPlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The platform where the train arrives.",
+ "rdfs:label": "arrivalPlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:runtimePlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Runtime platform or script interpreter dependencies (example: Java v1, Python 2.3, .NET Framework 3.0).",
+ "rdfs:label": "runtimePlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Head",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Head assessment with clinical examination.",
+ "rdfs:label": "Head",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MSRP",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the manufacturer suggested retail price (\"MSRP\") of an offered product.",
+ "rdfs:label": "MSRP",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:addressLocality",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The locality in which the street address is, and which is in the region. For example, Mountain View.",
+ "rdfs:label": "addressLocality",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalAddress"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PoliceStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A police station.",
+ "rdfs:label": "PoliceStation",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:EmergencyService"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isVariantOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.",
+ "rdfs:label": "isVariantOf",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:hasVariant"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:ProductGroup"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:expectsAcceptanceOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.",
+ "rdfs:label": "expectsAcceptanceOf",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaSubscription"
+ },
+ {
+ "@id": "schema:ConsumeAction"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:seatNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location of the reserved seat (e.g., 27).",
+ "rdfs:label": "seatNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:discount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any discount applied (to an Order).",
+ "rdfs:label": "discount",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Friday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Thursday and Saturday.",
+ "rdfs:label": "Friday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q130"
+ }
+ },
+ {
+ "@id": "schema:vehicleTransmission",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) (\"gearbox\" for cars).",
+ "rdfs:label": "vehicleTransmission",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:interactionCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This property is deprecated, alongside the UserInteraction types on which it depended.",
+ "rdfs:label": "interactionCount",
+ "schema:supersededBy": {
+ "@id": "schema:interactionStatistic"
+ }
+ },
+ {
+ "@id": "schema:PaymentComplete",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment has been received and processed.",
+ "rdfs:label": "PaymentComplete"
+ },
+ {
+ "@id": "schema:branchOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]].",
+ "rdfs:label": "branchOf",
+ "schema:domainIncludes": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:parentOrganization"
+ }
+ },
+ {
+ "@id": "schema:CableOrSatelliteService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service which provides access to media programming like TV or radio. Access may be via cable or satellite.",
+ "rdfs:label": "CableOrSatelliteService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:PayAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent pays a price to a participant.",
+ "rdfs:label": "PayAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A DeliveryTimeSettings represents re-usable pieces of shipping information, relating to timing. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]].",
+ "rdfs:label": "DeliveryTimeSettings",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:WarrantyPromise",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.",
+ "rdfs:label": "WarrantyPromise",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:MobilePhoneStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A store that sells mobile phones and related accessories.",
+ "rdfs:label": "MobilePhoneStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:itemDefectReturnLabelSource",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a defect product.",
+ "rdfs:label": "itemDefectReturnLabelSource",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnLabelSourceEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501q",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501q: Non-profit type referring to Credit Counseling Organizations.",
+ "rdfs:label": "Nonprofit501q",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:educationalAlignment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An alignment to an established educational framework.\n\nThis property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.",
+ "rdfs:label": "educationalAlignment",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LearningResource"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:AlignmentObject"
+ }
+ },
+ {
+ "@id": "schema:DrugCost",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.",
+ "rdfs:label": "DrugCost",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:imagingTechnique",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Imaging technique used.",
+ "rdfs:label": "imagingTechnique",
+ "schema:domainIncludes": {
+ "@id": "schema:ImagingTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalImagingTechnique"
+ }
+ },
+ {
+ "@id": "schema:ReadPermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to read or view the document.",
+ "rdfs:label": "ReadPermission"
+ },
+ {
+ "@id": "schema:WearableSizeSystemContinental",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Continental size system for wearables.",
+ "rdfs:label": "WearableSizeSystemContinental",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:healthPlanNetworkTier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tier(s) for this network.",
+ "rdfs:label": "healthPlanNetworkTier",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanNetwork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:arrivalTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected arrival time.",
+ "rdfs:label": "arrivalTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ]
+ },
+ {
+ "@id": "schema:availabilityStarts",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The beginning of the availability of the product or service included in the offer.",
+ "rdfs:label": "availabilityStarts",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ ]
+ },
+ {
+ "@id": "schema:cookingMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method of cooking, such as Frying, Steaming, ...",
+ "rdfs:label": "cookingMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:RentAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.",
+ "rdfs:label": "RentAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:renegotiableLoan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the terms for payment of interest can be renegotiated during the life of the loan.",
+ "rdfs:label": "renegotiableLoan",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:areaServed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area where a service or offered item is provided.",
+ "rdfs:label": "areaServed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:AdministrativeArea"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberedPosition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A number associated with a role in an organization, for example, the number on an athlete's jersey.",
+ "rdfs:label": "numberedPosition",
+ "schema:domainIncludes": {
+ "@id": "schema:OrganizationRole"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:advanceBookingRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of time that is required between accepting the offer and the actual usage of the resource or service.",
+ "rdfs:label": "advanceBookingRequirement",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:parentOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The larger organization that this organization is a [[subOrganization]] of, if any.",
+ "rdfs:label": "parentOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:subOrganization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:ShortStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Short story or tale. A brief work of literature, usually written in narrative prose.",
+ "rdfs:label": "ShortStory",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1976"
+ }
+ },
+ {
+ "@id": "schema:modifiedTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time the reservation was modified.",
+ "rdfs:label": "modifiedTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:costPerUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The cost per unit of the drug.",
+ "rdfs:label": "costPerUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BreadcrumbList",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\\n\\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList. The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.\n ",
+ "rdfs:label": "BreadcrumbList",
+ "rdfs:subClassOf": {
+ "@id": "schema:ItemList"
+ }
+ },
+ {
+ "@id": "schema:ReservationStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated status values for Reservation.",
+ "rdfs:label": "ReservationStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:Observational",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "An observational study design.",
+ "rdfs:label": "Observational",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LandmarksOrHistoricalBuildings",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An historical landmark or building.",
+ "rdfs:label": "LandmarksOrHistoricalBuildings",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:Seat",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe a seat, such as a reserved seat in an event reservation.",
+ "rdfs:label": "Seat",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:PaymentService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Service to transfer funds from a person or organization to a beneficiary person or organization.",
+ "rdfs:label": "PaymentService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:PercutaneousProcedure",
+ "@type": "schema:MedicalProcedureType",
+ "rdfs:comment": "A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.",
+ "rdfs:label": "PercutaneousProcedure",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:OpenTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which the researcher knows the full details of the treatment, and so does the patient.",
+ "rdfs:label": "OpenTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:PaymentDeclined",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payee received the payment, but it was declined for some reason.",
+ "rdfs:label": "PaymentDeclined"
+ },
+ {
+ "@id": "schema:illustrator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The illustrator of the book.",
+ "rdfs:label": "illustrator",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:contentSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "File size in (mega/kilo)bytes.",
+ "rdfs:label": "contentSize",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:contactOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).",
+ "rdfs:label": "contactOption",
+ "schema:domainIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPointOption"
+ }
+ },
+ {
+ "@id": "schema:afterMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object representing the circumstances after performing this direction.",
+ "rdfs:label": "afterMedia",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToDirection"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:priceValidUntil",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date after which the price is no longer available.",
+ "rdfs:label": "priceValidUntil",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:MusicAlbumProductionType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Classification of the album by its type of content: soundtrack, live album, studio album, etc.",
+ "rdfs:label": "MusicAlbumProductionType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:availableIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location in which the strength is available.",
+ "rdfs:label": "availableIn",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugStrength"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:AudioObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An audio file.",
+ "rdfs:label": "AudioObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:Museum",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A museum.",
+ "rdfs:label": "Museum",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:Taxi",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A taxi.",
+ "rdfs:label": "Taxi",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:TaxiService"
+ }
+ },
+ {
+ "@id": "schema:TrainTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip on a commercial train line.",
+ "rdfs:label": "TrainTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ }
+ },
+ {
+ "@id": "schema:primaryPrevention",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.",
+ "rdfs:label": "primaryPrevention",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:dataFeedElement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An item within a data feed. Data feeds may have many elements.",
+ "rdfs:label": "dataFeedElement",
+ "schema:domainIncludes": {
+ "@id": "schema:DataFeed"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:GeospatialGeometry",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.",
+ "rdfs:label": "GeospatialGeometry",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1375"
+ }
+ },
+ {
+ "@id": "schema:PriceComponentTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates different price components that together make up the total price for an offered product.",
+ "rdfs:label": "PriceComponentTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:termDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of time in a term as defined by the institution. A term is a length of time where students take one or more classes. Semesters and quarters are common units for term.",
+ "rdfs:label": "termDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:HealthAndBeautyBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Health and beauty.",
+ "rdfs:label": "HealthAndBeautyBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:occupationalCredentialAwarded",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.",
+ "rdfs:label": "occupationalCredentialAwarded",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Course"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:penciler",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who draws the primary narrative artwork.",
+ "rdfs:label": "penciler",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:interestRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate.",
+ "rdfs:label": "interestRate",
+ "schema:domainIncludes": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:observationDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The observationDate of an [[Observation]].",
+ "rdfs:label": "observationDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:slogan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A slogan or motto associated with the item.",
+ "rdfs:label": "slogan",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c24",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts.",
+ "rdfs:label": "Nonprofit501c24",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Vein",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of blood vessel that specifically carries blood to the heart.",
+ "rdfs:label": "Vein",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vessel"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:cvdNumVentUse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.",
+ "rdfs:label": "cvdNumVentUse",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:ItemListOrderDescending",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with higher values listed first.",
+ "rdfs:label": "ItemListOrderDescending"
+ },
+ {
+ "@id": "schema:hasMenuSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A subgrouping of the menu (by dishes, course, serving time period, etc.).",
+ "rdfs:label": "hasMenuSection",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MenuSection"
+ },
+ {
+ "@id": "schema:Menu"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:MenuSection"
+ }
+ },
+ {
+ "@id": "schema:foodWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.",
+ "rdfs:label": "foodWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:legislationType",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#type_document"
+ },
+ "rdfs:comment": "The type of the legislation. Examples of values are \"law\", \"act\", \"directive\", \"decree\", \"regulation\", \"statutory instrument\", \"loi organique\", \"règlement grand-ducal\", etc., depending on the country.",
+ "rdfs:label": "legislationType",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:genre"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CategoryCode"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#type_document"
+ }
+ },
+ {
+ "@id": "schema:EvidenceLevelC",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Only consensus opinion of experts, case studies, or standard-of-care.",
+ "rdfs:label": "EvidenceLevelC",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:shippingLabel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).",
+ "rdfs:label": "shippingLabel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:ShippingRateSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:valueReference",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.",
+ "rdfs:label": "valueReference",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Enumeration"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:StructuredValue"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MeasurementTypeEnumeration"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:serviceUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The website to access the service.",
+ "rdfs:label": "serviceUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:jobImmediateStart",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An indicator as to whether a position is available for an immediate start.",
+ "rdfs:label": "jobImmediateStart",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2244"
+ }
+ },
+ {
+ "@id": "schema:Artery",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/51114001"
+ },
+ "rdfs:comment": "A type of blood vessel that specifically carries blood away from the heart.",
+ "rdfs:label": "Artery",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vessel"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:NoninvasiveProcedure",
+ "@type": "schema:MedicalProcedureType",
+ "rdfs:comment": "A type of medical procedure that involves noninvasive techniques.",
+ "rdfs:label": "NoninvasiveProcedure",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bookEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The edition of the book.",
+ "rdfs:label": "bookEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:taxonRank",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
+ },
+ "rdfs:comment": "The taxonomic rank of this taxon given preferably as a URI from a controlled vocabulary – typically the ranks from TDWG TaxonRank ontology or equivalent Wikidata URIs.",
+ "rdfs:label": "taxonRank",
+ "schema:domainIncludes": {
+ "@id": "schema:Taxon"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:boardingPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of boarding policy used by the airline (e.g. zone-based or group-based).",
+ "rdfs:label": "boardingPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Airline"
+ },
+ {
+ "@id": "schema:Flight"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:BoardingPolicyType"
+ }
+ },
+ {
+ "@id": "schema:beforeMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object representing the circumstances before performing this direction.",
+ "rdfs:label": "beforeMedia",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToDirection"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SiteNavigationElement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A navigation element of the page.",
+ "rdfs:label": "SiteNavigationElement",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size groups (also known as \"size types\") for wearable products.",
+ "rdfs:label": "WearableSizeGroupEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:SizeGroupEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Neck",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Neck assessment with clinical examination.",
+ "rdfs:label": "Neck",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific dosing schedule for a drug or supplement.",
+ "rdfs:label": "DoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelInBox",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Specifies that a return label will be provided by the seller in the shipping box.",
+ "rdfs:label": "ReturnLabelInBox",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:HealthcareConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item is a pharmaceutical (e.g., a prescription or OTC drug) or a restricted medical device.",
+ "rdfs:label": "HealthcareConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:minPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The lowest price if the price is a range.",
+ "rdfs:label": "minPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:department",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.",
+ "rdfs:label": "department",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:manufacturer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The manufacturer of the product.",
+ "rdfs:label": "manufacturer",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:applicableLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location in which the status applies.",
+ "rdfs:label": "applicableLocation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DrugCost"
+ },
+ {
+ "@id": "schema:DrugLegalStatus"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:ConfirmAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of notifying someone that a future event/action is going to happen as expected.\\n\\nRelated actions:\\n\\n* [[CancelAction]]: The antonym of ConfirmAction.",
+ "rdfs:label": "ConfirmAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InformAction"
+ }
+ },
+ {
+ "@id": "schema:inStoreReturnsOffered",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Are in-store returns offered? (For more advanced return methods use the [[returnMethod]] property.)",
+ "rdfs:label": "inStoreReturnsOffered",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:processingTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Estimated processing time for the service using this channel.",
+ "rdfs:label": "processingTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:FoodService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food service, like breakfast, lunch, or dinner.",
+ "rdfs:label": "FoodService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:DeactivateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).",
+ "rdfs:label": "DeactivateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:TheaterGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.",
+ "rdfs:label": "TheaterGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:PerformingGroup"
+ }
+ },
+ {
+ "@id": "schema:spatial",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:spatial"
+ },
+ "rdfs:comment": "The \"spatial\" property can be used in cases when more specific properties\n(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.",
+ "rdfs:label": "spatial",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:gtin14",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin14",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:availableStrength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An available dosage strength for the drug.",
+ "rdfs:label": "availableStrength",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugStrength"
+ }
+ },
+ {
+ "@id": "schema:OrderPaymentDue",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that payment is due on an order.",
+ "rdfs:label": "OrderPaymentDue"
+ },
+ {
+ "@id": "schema:previousItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to the ListItem that precedes the current one.",
+ "rdfs:label": "previousItem",
+ "schema:domainIncludes": {
+ "@id": "schema:ListItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ListItem"
+ }
+ },
+ {
+ "@id": "schema:AutoRental",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A car rental business.",
+ "rdfs:label": "AutoRental",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:colleague",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A colleague of the person.",
+ "rdfs:label": "colleague",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DigitalFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DigitalFormat.",
+ "rdfs:label": "DigitalFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:OfferItemCondition",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible conditions for the item.",
+ "rdfs:label": "OfferItemCondition",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:exerciseCourse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The course where this action was taken.",
+ "rdfs:label": "exerciseCourse",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:game",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Video game which is played on this server.",
+ "rdfs:label": "game",
+ "schema:domainIncludes": {
+ "@id": "schema:GameServer"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:gameServer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:VideoGame"
+ }
+ },
+ {
+ "@id": "schema:roofLoad",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "roofLoad",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Car"
+ },
+ {
+ "@id": "schema:BusOrCoach"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:totalPaymentDue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total amount due.",
+ "rdfs:label": "totalPaymentDue",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ]
+ },
+ {
+ "@id": "schema:emissionsCO2",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\".",
+ "rdfs:label": "emissionsCO2",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Accommodation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Accommodation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:textValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text value being annotated.",
+ "rdfs:label": "textValue",
+ "schema:domainIncludes": {
+ "@id": "schema:PronounceableText"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:InviteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of asking someone to attend an event. Reciprocal of RsvpAction.",
+ "rdfs:label": "InviteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:potentialUse",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
+ },
+ "rdfs:comment": "Intended use of the BioChemEntity by humans.",
+ "rdfs:label": "potentialUse",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ChemicalSubstance"
+ },
+ {
+ "@id": "schema:MolecularEntity"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ }
+ },
+ {
+ "@id": "schema:tributary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.",
+ "rdfs:label": "tributary",
+ "schema:domainIncludes": {
+ "@id": "schema:Vein"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:PodcastSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A podcast is an episodic series of digital audio or video files which a user can download and listen to.",
+ "rdfs:label": "PodcastSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
+ },
+ {
+ "@id": "schema:SizeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Size related properties of a product, typically a size code ([[name]]) and optionally a [[sizeSystem]], [[sizeGroup]], and product measurements ([[hasMeasurement]]). In addition, the intended audience can be defined through [[suggestedAge]], [[suggestedGender]], and suggested body measurements ([[suggestedMeasurement]]).",
+ "rdfs:label": "SizeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:photos",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Photographs of this place.",
+ "rdfs:label": "photos",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:Photograph"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:photo"
+ }
+ },
+ {
+ "@id": "schema:HealthTopicContent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "[[HealthTopicContent]] is [[WebContent]] that is about some aspect of a health topic, e.g. a condition, its symptoms or treatments. Such content may be comprised of several parts or sections and use different types of media. Multiple instances of [[WebContent]] (and hence [[HealthTopicContent]]) can be related using [[hasPart]] / [[isPartOf]] where there is some kind of content hierarchy, and their content described with [[about]] and [[mentions]] e.g. building upon the existing [[MedicalCondition]] vocabulary.\n ",
+ "rdfs:label": "HealthTopicContent",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebContent"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:publisher",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The publisher of the creative work.",
+ "rdfs:label": "publisher",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:CriticReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[CriticReview]] is a more specialized form of Review written or published by a source that is recognized for its reviewing activities. These can include online columns, travel and food guides, TV and radio shows, blogs and other independent Web sites. [[CriticReview]]s are typically more in-depth and professionally written. For simpler, casually written user/visitor/viewer/customer reviews, it is more appropriate to use the [[UserReview]] type. Review aggregator sites such as Metacritic already separate out the site's user reviews from selected critic reviews that originate from third-party sources.",
+ "rdfs:label": "CriticReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ }
+ },
+ {
+ "@id": "schema:CleaningFee",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the cleaning fee part of the total price for an offered product, for example a vacation rental.",
+ "rdfs:label": "CleaningFee",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:sport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A type of sport (e.g. Baseball).",
+ "rdfs:label": "sport",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SportsOrganization"
+ },
+ {
+ "@id": "schema:SportsEvent"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1951"
+ }
+ },
+ {
+ "@id": "schema:Class",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "rdfs:Class"
+ },
+ "rdfs:comment": "A class, also often called a 'Type'; equivalent to rdfs:Class.",
+ "rdfs:label": "Class",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://meta.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Aquarium",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Aquarium.",
+ "rdfs:label": "Aquarium",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemIT",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Italian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemIT",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:isResizable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality.",
+ "rdfs:label": "isResizable",
+ "schema:domainIncludes": {
+ "@id": "schema:3DModel"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2394"
+ }
+ },
+ {
+ "@id": "schema:associatedReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated [[Review]].",
+ "rdfs:label": "associatedReview",
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:targetName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of a node in an established educational framework.",
+ "rdfs:label": "targetName",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PublicSwimmingPool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A public swimming pool.",
+ "rdfs:label": "PublicSwimmingPool",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupPlus",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Plus\" for wearables.",
+ "rdfs:label": "WearableSizeGroupPlus",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:PodcastEpisode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single episode of a podcast series.",
+ "rdfs:label": "PodcastEpisode",
+ "rdfs:subClassOf": {
+ "@id": "schema:Episode"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
+ },
+ {
+ "@id": "schema:Dataset",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": [
+ {
+ "@id": "dcmitype:Dataset"
+ },
+ {
+ "@id": "dcat:Dataset"
+ },
+ {
+ "@id": "void:Dataset"
+ }
+ ],
+ "rdfs:comment": "A body of structured information describing some topic(s) of interest.",
+ "rdfs:label": "Dataset",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
+ }
+ },
+ {
+ "@id": "schema:breastfeedingWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.",
+ "rdfs:label": "breastfeedingWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Conversation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties.",
+ "rdfs:label": "Conversation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:discountCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency of the discount.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "discountCurrency",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:CovidTestingFacility",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus\n disease is available. If the facility is being made available from an established [[Pharmacy]], [[Hotel]], or other\n non-medical organization, multiple types can be listed. This makes it easier to re-use existing schema.org information\n about that place, e.g. contact info, address, opening hours. Note that in an emergency, such information may not always be reliable.\n ",
+ "rdfs:label": "CovidTestingFacility",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalClinic"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:keywords",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.",
+ "rdfs:label": "keywords",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:regionDrained",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.",
+ "rdfs:label": "regionDrained",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Vein"
+ },
+ {
+ "@id": "schema:LymphaticVessel"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:exceptDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines a [[Date]] or [[DateTime]] during which a scheduled [[Event]] will not take place. The property allows exceptions to\n a [[Schedule]] to be specified. If an exception is specified as a [[DateTime]] then only the event that would have started at that specific date and time\n should be excluded from the schedule. If an exception is specified as a [[Date]] then any event that is scheduled for that 24 hour period should be\n excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.",
+ "rdfs:label": "exceptDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:relatedAnatomy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Anatomical systems or structures that relate to the superficial anatomy.",
+ "rdfs:label": "relatedAnatomy",
+ "schema:domainIncludes": {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:noBylinesPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines.",
+ "rdfs:label": "noBylinesPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OutOfStock",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is out of stock.",
+ "rdfs:label": "OutOfStock"
+ },
+ {
+ "@id": "schema:MedicalIntangible",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.",
+ "rdfs:label": "MedicalIntangible",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:serverStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Status of a game server.",
+ "rdfs:label": "serverStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:GameServer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:GameServerStatus"
+ }
+ },
+ {
+ "@id": "schema:variableMeasured",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.",
+ "rdfs:label": "variableMeasured",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1083"
+ }
+ },
+ {
+ "@id": "schema:PostalCodeRangeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates a range of postal codes, usually defined as the set of valid codes between [[postalCodeBegin]] and [[postalCodeEnd]], inclusively.",
+ "rdfs:label": "PostalCodeRangeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:variantCover",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the variant cover\n \tfor the issue, if the issue is a variant printing. For example, \"Bryan Hitch\n \tVariant Cover\" or \"2nd Printing Variant\".",
+ "rdfs:label": "variantCover",
+ "schema:domainIncludes": {
+ "@id": "schema:ComicIssue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c18",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust (created before 25 June 1959).",
+ "rdfs:label": "Nonprofit501c18",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:honorificSuffix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An honorific suffix following a Person's name such as M.D./PhD/MSCSW.",
+ "rdfs:label": "honorificSuffix",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:assesses",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The item being described is intended to assess the competency or learning outcome defined by the referenced term.",
+ "rdfs:label": "assesses",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:EducationEvent"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2427"
+ }
+ },
+ {
+ "@id": "schema:masthead",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.",
+ "rdfs:label": "masthead",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:courseWorkload",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, \"2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week\".",
+ "rdfs:label": "courseWorkload",
+ "schema:domainIncludes": {
+ "@id": "schema:CourseInstance"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1909"
+ }
+ },
+ {
+ "@id": "schema:WantAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a desire about the object. An agent wants an object.",
+ "rdfs:label": "WantAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:MixtapeAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "MixtapeAlbum.",
+ "rdfs:label": "MixtapeAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c20",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations.",
+ "rdfs:label": "Nonprofit501c20",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c15",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations.",
+ "rdfs:label": "Nonprofit501c15",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ownedFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time of obtaining the product.",
+ "rdfs:label": "ownedFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:OwnershipInfo"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:recognizedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.",
+ "rdfs:label": "recognizedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:meetsEmissionStandard",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates that the vehicle meets the respective emission standard.",
+ "rdfs:label": "meetsEmissionStandard",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:monoisotopicMolecularWeight",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "The monoisotopic mass is the sum of the masses of the atoms in a molecule using the unbound, ground-state, rest mass of the principal (most abundant) isotope for each element instead of the isotopic average mass. Please include the units in the form '<Number> <unit>', for example '770.230488 g/mol' or as '<QuantitativeValue>.",
+ "rdfs:label": "monoisotopicMolecularWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:GraphicNovel",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.",
+ "rdfs:label": "GraphicNovel",
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:TaxiReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "TaxiReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:positiveNotes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Provides positive considerations regarding something, for example product highlights or (alongside [[negativeNotes]]) pro/con lists for reviews.\n\nIn the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described.\n\nThe property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most positive is at the beginning of the list).",
+ "rdfs:label": "positiveNotes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Review"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:ItemList"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2832"
+ }
+ },
+ {
+ "@id": "schema:Bacteria",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic bacteria that cause bacterial infection.",
+ "rdfs:label": "Bacteria",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:NightClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A nightclub or discotheque.",
+ "rdfs:label": "NightClub",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:circle",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.",
+ "rdfs:label": "circle",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoShape"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ScheduleAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Scheduling future actions, events, or tasks.\\n\\nRelated actions:\\n\\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.",
+ "rdfs:label": "ScheduleAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlanAction"
+ }
+ },
+ {
+ "@id": "schema:ScholarlyArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A scholarly article.",
+ "rdfs:label": "ScholarlyArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:benefitsSummaryUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation.",
+ "rdfs:label": "benefitsSummaryUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:wordCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of words in the text of the Article.",
+ "rdfs:label": "wordCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:thumbnail",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Thumbnail image for an image or video.",
+ "rdfs:label": "thumbnail",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:VideoObject"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ImageObject"
+ }
+ },
+ {
+ "@id": "schema:accountId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The identifier for the account the payment will be applied to.",
+ "rdfs:label": "accountId",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:strengthValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The value of an active ingredient's strength, e.g. 325.",
+ "rdfs:label": "strengthValue",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugStrength"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:tocEntry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a [[HyperTocEntry]] in a [[HyperToc]].",
+ "rdfs:label": "tocEntry",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:HyperToc"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:acceptedAnswer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.",
+ "rdfs:label": "acceptedAnswer",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:suggestedAnswer"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Question"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:Answer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:healthcareReportingData",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].",
+ "rdfs:label": "healthcareReportingData",
+ "schema:domainIncludes": {
+ "@id": "schema:Hospital"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CDCPMDRecord"
+ },
+ {
+ "@id": "schema:Dataset"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:applicationCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type of software application, e.g. 'Game, Multimedia'.",
+ "rdfs:label": "applicationCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BuddhistTemple",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Buddhist temple.",
+ "rdfs:label": "BuddhistTemple",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:reviewRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.",
+ "rdfs:label": "reviewRating",
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Rating"
+ }
+ },
+ {
+ "@id": "schema:SatiricalArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized.",
+ "rdfs:label": "SatiricalArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:earlyPrepaymentPenalty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount to be paid as a penalty in the event of early payment of the loan.",
+ "rdfs:label": "earlyPrepaymentPenalty",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FoodEstablishment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food-related business.",
+ "rdfs:label": "FoodEstablishment",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:nationality",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Nationality of the person.",
+ "rdfs:label": "nationality",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Country"
+ }
+ },
+ {
+ "@id": "schema:MarryAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of marrying a person.",
+ "rdfs:label": "MarryAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:ProfilePage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Profile page.",
+ "rdfs:label": "ProfilePage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:AmusementPark",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An amusement park.",
+ "rdfs:label": "AmusementPark",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:titleEIDR",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" has a titleEIDR of \"10.5240/7EC7-228A-510A-053E-CBB8-J\". This title (or work) may have several variants, which EIDR calls \"edits\". See [[editEIDR]].\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
+ "rdfs:label": "titleEIDR",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:Movie"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2469"
+ }
+ },
+ {
+ "@id": "schema:BowlingAlley",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bowling alley.",
+ "rdfs:label": "BowlingAlley",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:url",
+ "@type": "rdf:Property",
+ "rdfs:comment": "URL of the item.",
+ "rdfs:label": "url",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:dosageForm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.",
+ "rdfs:label": "dosageForm",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Sunday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Saturday and Monday.",
+ "rdfs:label": "Sunday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q132"
+ }
+ },
+ {
+ "@id": "schema:ScreeningHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about how to screen or further filter a topic.",
+ "rdfs:label": "ScreeningHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:PaymentCard",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A payment method using a credit, debit, store or other card to associate the payment with an account.",
+ "rdfs:label": "PaymentCard",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:PaymentMethod"
+ },
+ {
+ "@id": "schema:FinancialProduct"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:affiliation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.",
+ "rdfs:label": "affiliation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:memberOf"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:RespiratoryTherapy",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).",
+ "rdfs:label": "RespiratoryTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:inDefinedTermSet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[DefinedTermSet]] that contains this term.",
+ "rdfs:label": "inDefinedTermSet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedTerm"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTermSet"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:accountMinimumInflow",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A minimum amount that has to be paid in every month.",
+ "rdfs:label": "accountMinimumInflow",
+ "schema:domainIncludes": {
+ "@id": "schema:BankAccount"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:reviews",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Review of the item.",
+ "rdfs:label": "reviews",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:review"
+ }
+ },
+ {
+ "@id": "schema:DataFeed",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single feed providing structured information about one or more entities or topics.",
+ "rdfs:label": "DataFeed",
+ "rdfs:subClassOf": {
+ "@id": "schema:Dataset"
+ }
+ },
+ {
+ "@id": "schema:TaxiVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the car as a taxi.",
+ "rdfs:label": "TaxiVehicleUsage",
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:isBasedOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A resource from which this work is derived or from which it is a modification or adaption.",
+ "rdfs:label": "isBasedOn",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ElectronicsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An electronics store.",
+ "rdfs:label": "ElectronicsStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Toxicologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.",
+ "rdfs:label": "Toxicologic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:CDFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "CDFormat.",
+ "rdfs:label": "CDFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:VideoGameClip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short segment/part of a video game.",
+ "rdfs:label": "VideoGameClip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Clip"
+ }
+ },
+ {
+ "@id": "schema:postOfficeBoxNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The post office box number for PO box addresses.",
+ "rdfs:label": "postOfficeBoxNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalAddress"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:TieAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of reaching a draw in a competitive activity.",
+ "rdfs:label": "TieAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AchieveAction"
+ }
+ },
+ {
+ "@id": "schema:payload",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "payload",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:AllWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "All-wheel Drive is a transmission layout where the engine drives all four wheels.",
+ "rdfs:label": "AllWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Bone",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Rigid connective tissue that comprises up the skeletal structure of the human body.",
+ "rdfs:label": "Bone",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AMRadioChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio channel that uses AM.",
+ "rdfs:label": "AMRadioChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:RadioChannel"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:PET",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Positron emission tomography imaging.",
+ "rdfs:label": "PET",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:passengerSequenceNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The passenger's sequence number as assigned by the airline.",
+ "rdfs:label": "passengerSequenceNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:expectedPrognosis",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The likely outcome in either the short term or long term of the medical condition.",
+ "rdfs:label": "expectedPrognosis",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:legislationChanges",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#changes"
+ },
+ "rdfs:comment": "Another legislation that this legislation changes. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change (textual or non-textual amendment) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the legislationConsolidates property.",
+ "rdfs:label": "legislationChanges",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#changes"
+ }
+ },
+ {
+ "@id": "schema:gracePeriod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The period of time after any due date that the borrower has to fulfil its obligations before a default (failure to pay) is deemed to have occurred.",
+ "rdfs:label": "gracePeriod",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MusicAlbumReleaseType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The kind of release which this album is: single, EP or album.",
+ "rdfs:label": "MusicAlbumReleaseType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:memberOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
+ "rdfs:label": "memberOf",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:member"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ProgramMembership"
+ }
+ ]
+ },
+ {
+ "@id": "schema:warranty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The warranty promise(s) included in the offer.",
+ "rdfs:label": "warranty",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:paymentAccepted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.",
+ "rdfs:label": "paymentAccepted",
+ "schema:domainIncludes": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501n",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501n: Non-profit type referring to Charitable Risk Pools.",
+ "rdfs:label": "Nonprofit501n",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:articleSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.",
+ "rdfs:label": "articleSection",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:isEncodedByBioChemEntity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Another BioChemEntity encoding by this one.",
+ "rdfs:label": "isEncodedByBioChemEntity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:encodesBioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Gene"
+ }
+ },
+ {
+ "@id": "schema:ResearchProject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Research project.",
+ "rdfs:label": "ResearchProject",
+ "rdfs:subClassOf": {
+ "@id": "schema:Project"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:repeatFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the frequency at which [[Event]]s will occur according to a schedule [[Schedule]]. The intervals between\n events should be defined as a [[Duration]] of time.",
+ "rdfs:label": "repeatFrequency",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:frequency"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Duration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:courseMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous).",
+ "rdfs:label": "courseMode",
+ "schema:domainIncludes": {
+ "@id": "schema:CourseInstance"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:holdingArchive",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]]."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "holdingArchive"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ArchiveComponent"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:archiveHeld"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ArchiveOrganization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:DislikeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "DislikeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:mentions",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.",
+ "rdfs:label": "mentions",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:legislationApplies",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#implements"
+ },
+ "rdfs:comment": "Indicates that this legislation (or part of a legislation) somehow transfers another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the legislationTransposes property. For example an informative consolidated law of a European Union's member state \"applies\" the consolidated version of the European Directive implemented in it.",
+ "rdfs:label": "legislationApplies",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#implements"
+ }
+ },
+ {
+ "@id": "schema:Schedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A schedule defines a repeating time period used to describe a regularly occurring [[Event]]. At a minimum a schedule will specify [[repeatFrequency]] which describes the interval between occurrences of the event. Additional information can be provided to specify the schedule more precisely.\n This includes identifying the day(s) of the week or month when the recurring event will take place, in addition to its start and end time. Schedules may also\n have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.",
+ "rdfs:label": "Schedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:accountOverdraftLimit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An overdraft is an extension of credit from a lending institution when an account reaches zero. An overdraft allows the individual to continue withdrawing money even if the account has no funds in it. Basically the bank allows people to borrow a set amount of money.",
+ "rdfs:label": "accountOverdraftLimit",
+ "schema:domainIncludes": {
+ "@id": "schema:BankAccount"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numTracks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of tracks in this album or playlist.",
+ "rdfs:label": "numTracks",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicPlaylist"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:evidenceLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Strength of evidence of the data used to formulate the guideline (enumerated).",
+ "rdfs:label": "evidenceLevel",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEvidenceLevel"
+ }
+ },
+ {
+ "@id": "schema:alternateName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An alias for the item.",
+ "rdfs:label": "alternateName",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:numberOfPages",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of pages in the book.",
+ "rdfs:label": "numberOfPages",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:domainIncludes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Relates a property to a class that is (one of) the type(s) the property is expected to be used on.",
+ "rdfs:label": "domainIncludes",
+ "schema:domainIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:isPartOf": {
+ "@id": "http://meta.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Class"
+ }
+ },
+ {
+ "@id": "schema:opponent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The opponent on this action.",
+ "rdfs:label": "opponent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:artist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The primary artist for a work\n \tin a medium other than pencils or digital line art--for example, if the\n \tprimary artwork is done in watercolors or digital paints.",
+ "rdfs:label": "artist",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:ContactPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Contact page.",
+ "rdfs:label": "ContactPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:AlignmentObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.",
+ "rdfs:label": "AlignmentObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"
+ }
+ },
+ {
+ "@id": "schema:publishingPrinciples",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n",
+ "rdfs:label": "publishingPrinciples",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PaymentChargeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The costs of settling the payment using a particular payment method.",
+ "rdfs:label": "PaymentChargeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:orderQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of the item ordered. If the property is not set, assume the quantity is one.",
+ "rdfs:label": "orderQuantity",
+ "schema:domainIncludes": {
+ "@id": "schema:OrderItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:height",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The height of the item.",
+ "rdfs:label": "height",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isbn",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/isbn"
+ },
+ "rdfs:comment": "The ISBN of the book.",
+ "rdfs:label": "isbn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:additionalVariable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.",
+ "rdfs:label": "additionalVariable",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:typicalTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical test typically performed given this condition.",
+ "rdfs:label": "typicalTest",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
+ }
+ },
+ {
+ "@id": "schema:departurePlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The platform from which the train departs.",
+ "rdfs:label": "departurePlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ChooseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",
+ "rdfs:label": "ChooseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:WebAPI",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An application programming interface accessible over Web/Internet technologies.",
+ "rdfs:label": "WebAPI",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ }
+ },
+ {
+ "@id": "schema:PlaceOfWorship",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Place of worship, such as a church, synagogue, or mosque.",
+ "rdfs:label": "PlaceOfWorship",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:TVClip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short TV program or a segment/part of a TV program.",
+ "rdfs:label": "TVClip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Clip"
+ }
+ },
+ {
+ "@id": "schema:Mass",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.",
+ "rdfs:label": "Mass",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:Male",
+ "@type": "schema:GenderType",
+ "rdfs:comment": "The male gender.",
+ "rdfs:label": "Male"
+ },
+ {
+ "@id": "schema:followee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The person or organization being followed.",
+ "rdfs:label": "followee",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:FollowAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DangerousGoodConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is dangerous and requires careful handling and/or special training of the user. See also the [UN Model Classification](https://unece.org/DAM/trans/danger/publi/unrec/rev17/English/02EREv17_Part2.pdf) defining the 9 classes of dangerous goods such as explosives, gases, flammables, and more.",
+ "rdfs:label": "DangerousGoodConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:HyperToc",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items.",
+ "rdfs:label": "HyperToc",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:inventoryLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current approximate inventory level for the item or items.",
+ "rdfs:label": "inventoryLevel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:SomeProducts"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:model",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.",
+ "rdfs:label": "model",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:recordingOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The composition this track is a recording of.",
+ "rdfs:label": "recordingOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordedAs"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:recordedAs",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An audio recording of the work.",
+ "rdfs:label": "recordedAs",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordingOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Restaurant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A restaurant.",
+ "rdfs:label": "Restaurant",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:yield",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.",
+ "rdfs:label": "yield",
+ "schema:domainIncludes": {
+ "@id": "schema:HowTo"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isAvailableGenerically",
+ "@type": "rdf:Property",
+ "rdfs:comment": "True if the drug is available in a generic form (regardless of name).",
+ "rdfs:label": "isAvailableGenerically",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:GovernmentPermit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permit issued by a government agency.",
+ "rdfs:label": "GovernmentPermit",
+ "rdfs:subClassOf": {
+ "@id": "schema:Permit"
+ }
+ },
+ {
+ "@id": "schema:employerOverview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the employer, career opportunities and work environment for this position.",
+ "rdfs:label": "employerOverview",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2396"
+ }
+ },
+ {
+ "@id": "schema:RestrictedDiet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. ",
+ "rdfs:label": "RestrictedDiet",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:contributor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secondary contributor to the CreativeWork or Event.",
+ "rdfs:label": "contributor",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SportsClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sports club.",
+ "rdfs:label": "SportsClub",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:PublicationEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type, e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.",
+ "rdfs:label": "PublicationEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:coursePrerequisites",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Requirements for taking the Course. May be completion of another [[Course]] or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].",
+ "rdfs:label": "coursePrerequisites",
+ "schema:domainIncludes": {
+ "@id": "schema:Course"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Course"
+ },
+ {
+ "@id": "schema:AlignmentObject"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:targetPlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type of app development: phone, Metro style, desktop, XBox, etc.",
+ "rdfs:label": "targetPlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:elevation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT\\_OF\\_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.",
+ "rdfs:label": "elevation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TravelAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A travel agency.",
+ "rdfs:label": "TravelAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:eligibleDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration for which the given offer is valid.",
+ "rdfs:label": "eligibleDuration",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:actionOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The options subject to this action.",
+ "rdfs:label": "actionOption",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ChooseAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ }
+ ]
+ },
+ {
+ "@id": "schema:cheatCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Cheat codes to the game.",
+ "rdfs:label": "cheatCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:readonlyValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.",
+ "rdfs:label": "readonlyValue",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:EnergyEfficiencyEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates energy efficiency levels (also known as \"classes\" or \"ratings\") and certifications that are part of several international energy efficiency standards.",
+ "rdfs:label": "EnergyEfficiencyEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:NailSalon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A nail salon.",
+ "rdfs:label": "NailSalon",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:byArtist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The artist that performed this album or recording.",
+ "rdfs:label": "byArtist",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MusicAlbum"
+ },
+ {
+ "@id": "schema:MusicRecording"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MusicGroup"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:season",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A season in a media series.",
+ "rdfs:label": "season",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:containsSeason"
+ }
+ },
+ {
+ "@id": "schema:bloodSupply",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The blood vessel that carries blood from the heart to the muscle.",
+ "rdfs:label": "bloodSupply",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:healthPlanNetworkId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Name or unique ID of network. (Networks are often reused across different insurance plans.)",
+ "rdfs:label": "healthPlanNetworkId",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HealthPlanNetwork"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:skills",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.",
+ "rdfs:label": "skills",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2322"
+ }
+ ]
+ },
+ {
+ "@id": "schema:xpath",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".",
+ "rdfs:label": "xpath",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:WebPageElement"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:XPathType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ }
+ },
+ {
+ "@id": "schema:availability",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The availability of this item—for example In stock, Out of stock, Pre-order, etc.",
+ "rdfs:label": "availability",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ItemAvailability"
+ }
+ },
+ {
+ "@id": "schema:RefurbishedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is refurbished.",
+ "rdfs:label": "RefurbishedCondition"
+ },
+ {
+ "@id": "schema:Plumber",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A plumbing service.",
+ "rdfs:label": "Plumber",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:TouristInformationCenter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist information center.",
+ "rdfs:label": "TouristInformationCenter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:enginePower",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The power of the vehicle's engine.\n Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\\n\\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine\\_power\\_test\\_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "enginePower",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:fuelCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.\\n\\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles).",
+ "rdfs:label": "fuelCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:QuoteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.",
+ "rdfs:label": "QuoteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:increasesRiskOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The condition, complication, etc. influenced by this factor.",
+ "rdfs:label": "increasesRiskOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskFactor"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:typeOfBed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.",
+ "rdfs:label": "typeOfBed",
+ "schema:domainIncludes": {
+ "@id": "schema:BedDetails"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BedType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupBoys",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Boys\" for wearables.",
+ "rdfs:label": "WearableSizeGroupBoys",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:percentile75",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 75th percentile value.",
+ "rdfs:label": "percentile75",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:suggestedMinAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Minimum recommended age in years for the audience or user.",
+ "rdfs:label": "suggestedMinAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:inverseOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Relates a property to a property that is its inverse. Inverse properties relate the same pairs of items to each other, but in reversed direction. For example, the 'alumni' and 'alumniOf' properties are inverseOf each other. Some properties don't have explicit inverses; in these situations RDFa and JSON-LD syntax for reverse properties can be used.",
+ "rdfs:label": "inverseOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:isPartOf": {
+ "@id": "http://meta.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Property"
+ }
+ },
+ {
+ "@id": "schema:CompletedActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An action that has already taken place.",
+ "rdfs:label": "CompletedActionStatus"
+ },
+ {
+ "@id": "schema:OceanBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An ocean (for example, the Pacific).",
+ "rdfs:label": "OceanBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:PlayGameAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of playing a video game.",
+ "rdfs:label": "PlayGameAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:activityFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How often one should engage in the activity.",
+ "rdfs:label": "activityFrequency",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ActivateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).",
+ "rdfs:label": "ActivateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:playerType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Player type required—for example, Flash or Silverlight.",
+ "rdfs:label": "playerType",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:broadcastSubChannel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The subchannel used for the broadcast.",
+ "rdfs:label": "broadcastSubChannel",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastFrequencySpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2111"
+ }
+ },
+ {
+ "@id": "schema:MenuSection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.",
+ "rdfs:label": "MenuSection",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:MovieRentalStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A movie rental store.",
+ "rdfs:label": "MovieRentalStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:HomeAndConstructionBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A construction business.\\n\\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).",
+ "rdfs:label": "HomeAndConstructionBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:contentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The supported content type(s) for an EntryPoint response.",
+ "rdfs:label": "contentType",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EmergencyService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An emergency service, such as a fire station or ER.",
+ "rdfs:label": "EmergencyService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Chapter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "One of the sections into which a book is divided. A chapter usually has a section number or a name.",
+ "rdfs:label": "Chapter",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:preOp",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the workup, testing, and other preparations required before implanting this device.",
+ "rdfs:label": "preOp",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalDevice"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:employee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Someone working for this organization.",
+ "rdfs:label": "employee",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementUnderbust",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of body just below the bust. Used, for example, to fit women's swimwear.",
+ "rdfs:label": "BodyMeasurementUnderbust",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:license",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A license document that applies to this content, typically indicated by URL.",
+ "rdfs:label": "license",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:itemCondition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A predefined value from OfferItemCondition specifying the condition of the product or service, or the products or services included in the offer. Also used for product return policies to specify the condition of products accepted for returns.",
+ "rdfs:label": "itemCondition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:OfferItemCondition"
+ }
+ },
+ {
+ "@id": "schema:customer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Party placing the order or paying the invoice.",
+ "rdfs:label": "customer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Order",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.",
+ "rdfs:label": "Order",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:ArtGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An art gallery.",
+ "rdfs:label": "ArtGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c8",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations.",
+ "rdfs:label": "Nonprofit501c8",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:wheelbase",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The distance between the centers of the front and rear wheels.\\n\\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet",
+ "rdfs:label": "wheelbase",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:CreativeWork",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
+ "rdfs:label": "CreativeWork",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:OrderStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated status values for Order.",
+ "rdfs:label": "OrderStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:carbohydrateContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of carbohydrates.",
+ "rdfs:label": "carbohydrateContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:paymentDue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date that payment is due.",
+ "rdfs:label": "paymentDue",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:paymentDueDate"
+ }
+ },
+ {
+ "@id": "schema:tourBookingPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.",
+ "rdfs:label": "tourBookingPage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:LeftHandDriving",
+ "@type": "schema:SteeringPositionValue",
+ "rdfs:comment": "The steering position is on the left side of the vehicle (viewed from the main direction of driving).",
+ "rdfs:label": "LeftHandDriving",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:ComicCoverArt",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The artwork on the cover of a comic.",
+ "rdfs:label": "ComicCoverArt",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:CoverArt"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:colorist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who adds color to inked drawings.",
+ "rdfs:label": "colorist",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:procedureType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of procedure, for example Surgical, Noninvasive, or Percutaneous.",
+ "rdfs:label": "procedureType",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalProcedureType"
+ }
+ },
+ {
+ "@id": "schema:LikeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "LikeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementCollar",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the collar, for example of a shirt",
+ "rdfs:label": "WearableMeasurementCollar",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ItemListUnordered",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with no explicit order.",
+ "rdfs:label": "ItemListUnordered"
+ },
+ {
+ "@id": "schema:DemoGameAvailability",
+ "@type": "schema:GameAvailabilityEnumeration",
+ "rdfs:comment": "Indicates demo game availability, i.e. a somehow limited demonstration of the full game.",
+ "rdfs:label": "DemoGameAvailability",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:checkoutPageURLTemplate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL template (RFC 6570) for a checkout page for an offer. This approach allows merchants to specify a URL for online checkout of the offered product, by interpolating parameters such as the logged in user ID, product ID, quantity, discount code etc. Parameter naming and standardization are not specified here.",
+ "rdfs:label": "checkoutPageURLTemplate",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3135"
+ }
+ },
+ {
+ "@id": "schema:Canal",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A canal, like the Panama Canal.",
+ "rdfs:label": "Canal",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:InteractAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of interacting with another person or organization.",
+ "rdfs:label": "InteractAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:SideEffectsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Side effects that can be observed from the usage of the topic.",
+ "rdfs:label": "SideEffectsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:connectedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Other anatomical structures to which this structure is connected.",
+ "rdfs:label": "connectedTo",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:hasEnergyEfficiencyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard.",
+ "rdfs:label": "hasEnergyEfficiencyCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EnergyEfficiencyEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:citation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.",
+ "rdfs:label": "citation",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AudiobookFormat",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.",
+ "rdfs:label": "AudiobookFormat"
+ },
+ {
+ "@id": "schema:suitableForDiet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.",
+ "rdfs:label": "suitableForDiet",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Recipe"
+ },
+ {
+ "@id": "schema:MenuItem"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:RestrictedDiet"
+ }
+ },
+ {
+ "@id": "schema:MathSolver",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A math solver which is capable of solving a subset of mathematical problems.",
+ "rdfs:label": "MathSolver",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
+ }
+ },
+ {
+ "@id": "schema:accessibilitySummary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as \"short descriptions are present but long descriptions will be needed for non-visual users\" or \"short descriptions are present and no long descriptions are needed.\"",
+ "rdfs:label": "accessibilitySummary",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
+ }
+ },
+ {
+ "@id": "schema:childTaxon",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
+ },
+ "rdfs:comment": "Closest child taxa of the taxon in question.",
+ "rdfs:label": "childTaxon",
+ "schema:domainIncludes": {
+ "@id": "schema:Taxon"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:parentTaxon"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:yearlyRevenue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The size of the business in annual revenue.",
+ "rdfs:label": "yearlyRevenue",
+ "schema:domainIncludes": {
+ "@id": "schema:BusinessAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryB",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryB",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:Collection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection of items, e.g. creative works or products.",
+ "rdfs:label": "Collection",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:associatedArticle",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A NewsArticle associated with the Media Object.",
+ "rdfs:label": "associatedArticle",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:NewsArticle"
+ }
+ },
+ {
+ "@id": "schema:ExerciseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of participating in exertive activity for the purposes of improving health and fitness.",
+ "rdfs:label": "ExerciseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlayAction"
+ }
+ },
+ {
+ "@id": "schema:GameServerStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Status of a game server.",
+ "rdfs:label": "GameServerStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:Gene",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "A discrete unit of inheritance which affects one or more biological traits (Source: [https://en.wikipedia.org/wiki/Gene](https://en.wikipedia.org/wiki/Gene)). Examples include FOXP2 (Forkhead box protein P2), SCARNA21 (small Cajal body-specific RNA 21), A- (agouti genotype).",
+ "rdfs:label": "Gene",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Downpayment",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments.",
+ "rdfs:label": "Downpayment",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:scheduleTimezone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the timezone for which the time(s) indicated in the [[Schedule]] are given. The value provided should be among those listed in the IANA Time Zone Database.",
+ "rdfs:label": "scheduleTimezone",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:dropoffLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Where a rental car can be dropped off.",
+ "rdfs:label": "dropoffLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:RentalCarReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:knows",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most generic bi-directional social/work relation.",
+ "rdfs:label": "knows",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:Invoice",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statement of the money due for goods or services; a bill.",
+ "rdfs:label": "Invoice",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:broadcastAffiliateOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The media network(s) whose content is broadcast on this station.",
+ "rdfs:label": "broadcastAffiliateOf",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:relatedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most generic familial relation.",
+ "rdfs:label": "relatedTo",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:superEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
+ "rdfs:label": "superEvent",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:subEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:PostOffice",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A post office.",
+ "rdfs:label": "PostOffice",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentOffice"
+ }
+ },
+ {
+ "@id": "schema:relatedDrug",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any other drug related to this one, for example commonly-prescribed alternatives.",
+ "rdfs:label": "relatedDrug",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:replyToUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL at which a reply may be posted to the specified UserComment.",
+ "rdfs:label": "replyToUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:providesBroadcastService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The BroadcastService offered on this channel.",
+ "rdfs:label": "providesBroadcastService",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:hasBroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastService"
+ }
+ },
+ {
+ "@id": "schema:TextDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A file composed primarily of text.",
+ "rdfs:label": "TextDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:vehicleIdentificationNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.",
+ "rdfs:label": "vehicleIdentificationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:serialNumber"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Flight",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An airline flight.",
+ "rdfs:label": "Flight",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ }
+ },
+ {
+ "@id": "schema:Text",
+ "@type": [
+ "rdfs:Class",
+ "schema:DataType"
+ ],
+ "rdfs:comment": "Data type: Text.",
+ "rdfs:label": "Text"
+ },
+ {
+ "@id": "schema:handlingTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup. Typical properties: minValue, maxValue, unitCode (d for DAY). This is by common convention assumed to mean business days (if a unitCode is used, coded as \"d\"), i.e. only counting days when the business normally operates.",
+ "rdfs:label": "handlingTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:DecontextualizedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'missing context' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'missing context': Presenting unaltered video in an inaccurate manner that misrepresents the footage. For example, using incorrect dates or locations, altering the transcript or sharing brief clips from a longer video to mislead viewers. (A video rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] to be 'missing context': Presenting unaltered images in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An image rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] with embedded text to be 'missing context': An unaltered image presented in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An 'original' image with inaccurate text would generally fall in this category.)\n\nFor an [[AudioObject]] to be 'missing context': Unaltered audio presented in an inaccurate manner that misrepresents it. For example, using incorrect dates or locations, or sharing brief clips from a longer recording to mislead viewers. (Audio rated “original” can also be missing context.)\n",
+ "rdfs:label": "DecontextualizedContent",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:BedType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of bed. This is used for indicating the bed or beds available in an accommodation.",
+ "rdfs:label": "BedType",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1262"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ ]
+ },
+ {
+ "@id": "schema:sameAs",
+ "@type": "rdf:Property",
+ "rdfs:comment": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
+ "rdfs:label": "sameAs",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:doesNotShip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates when shipping to a particular [[shippingDestination]] is not available.",
+ "rdfs:label": "doesNotShip",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ShippingRateSettings"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:BlogPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A blog post.",
+ "rdfs:label": "BlogPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:SocialMediaPosting"
+ }
+ },
+ {
+ "@id": "schema:Distance",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.",
+ "rdfs:label": "Distance",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:energyEfficiencyScaleMin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
+ "rdfs:label": "energyEfficiencyScaleMin",
+ "schema:domainIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EUEnergyEfficiencyEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:worksFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Organizations that the person works for.",
+ "rdfs:label": "worksFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:ReservationPending",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a reservation when a request has been sent, but not confirmed.",
+ "rdfs:label": "ReservationPending"
+ },
+ {
+ "@id": "schema:LodgingReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for lodging at a hotel, motel, inn, etc.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "LodgingReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:restockingFee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Use [[MonetaryAmount]] to specify a fixed restocking fee for product returns, or use [[Number]] to specify a percentage of the product price paid by the customer.",
+ "rdfs:label": "restockingFee",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:geoWithin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoWithin",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SearchResultsPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Search results page.",
+ "rdfs:label": "SearchResultsPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:physicalRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
+ "rdfs:label": "physicalRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ }
+ },
+ {
+ "@id": "schema:gameServer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The server on which it is possible to play the game.",
+ "rdfs:label": "gameServer",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoGame"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:game"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:GameServer"
+ }
+ },
+ {
+ "@id": "schema:financialAidEligible",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A financial aid type or program which students may use to pay for tuition or fees associated with the program.",
+ "rdfs:label": "financialAidEligible",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2418"
+ }
+ },
+ {
+ "@id": "schema:award",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An award won by or for this item.",
+ "rdfs:label": "award",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:equal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is equal to the object.",
+ "rdfs:label": "equal",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:TennisComplex",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tennis complex.",
+ "rdfs:label": "TennisComplex",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:Embassy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An embassy.",
+ "rdfs:label": "Embassy",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:cvdFacilityId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the NHSN facility that this data record applies to. Use [[cvdFacilityCounty]] to indicate the county. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.",
+ "rdfs:label": "cvdFacilityId",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:DamagedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is damaged.",
+ "rdfs:label": "DamagedCondition"
+ },
+ {
+ "@id": "schema:UnofficialLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates that a document has no particular or special standing (e.g. a republication of a law by a private publisher).",
+ "rdfs:label": "UnofficialLegalValue",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-unofficial"
+ }
+ },
+ {
+ "@id": "schema:MedicalGuideline",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.",
+ "rdfs:label": "MedicalGuideline",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:CampingPitch",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\\n\\n\nIn British English a campsite, or campground, is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites.\n(Source: Wikipedia, see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite).)\\n\\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n",
+ "rdfs:label": "CampingPitch",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:LoseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of being defeated in a competitive activity.",
+ "rdfs:label": "LoseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AchieveAction"
+ }
+ },
+ {
+ "@id": "schema:eventSchedule",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of\n repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly\n gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that\n is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated\n [[Schedule]], this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months\n or seasons.",
+ "rdfs:label": "eventSchedule",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:webCheckinTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time when a passenger can check into the flight online.",
+ "rdfs:label": "webCheckinTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupTall",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Tall\" for wearables.",
+ "rdfs:label": "WearableSizeGroupTall",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:KosherDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Jewish dietary practices.",
+ "rdfs:label": "KosherDiet"
+ },
+ {
+ "@id": "schema:FDAcategoryB",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.",
+ "rdfs:label": "FDAcategoryB",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupJuniors",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Juniors\" for wearables.",
+ "rdfs:label": "WearableSizeGroupJuniors",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ElementarySchool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An elementary school.",
+ "rdfs:label": "ElementarySchool",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:streetAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The street address. For example, 1600 Amphitheatre Pkwy.",
+ "rdfs:label": "streetAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalAddress"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EmailMessage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An email message.",
+ "rdfs:label": "EmailMessage",
+ "rdfs:subClassOf": {
+ "@id": "schema:Message"
+ }
+ },
+ {
+ "@id": "schema:SaleEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Sales event.",
+ "rdfs:label": "SaleEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:ControlAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent controls a device or application.",
+ "rdfs:label": "ControlAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:sportsTeam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The sports team that participated on this action.",
+ "rdfs:label": "sportsTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SportsTeam"
+ }
+ },
+ {
+ "@id": "schema:GameAvailabilityEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "For a [[VideoGame]], such as used with a [[PlayGameAction]], an enumeration of the kind of game availability offered. ",
+ "rdfs:label": "GameAvailabilityEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:ActionStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The status of an Action.",
+ "rdfs:label": "ActionStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:clipNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Position of the clip within an ordered group of clips.",
+ "rdfs:label": "clipNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Clip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:broadcaster",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization owning or operating the broadcast service.",
+ "rdfs:label": "broadcaster",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:partOfSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomical or organ system that this structure is part of.",
+ "rdfs:label": "partOfSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalSystem"
+ }
+ },
+ {
+ "@id": "schema:articleBody",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The actual body of the article.",
+ "rdfs:label": "articleBody",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:contactlessPayment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology.",
+ "rdfs:label": "contactlessPayment",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MediaReviewItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Represents an item or group of closely related items treated as a unit for the sake of evaluation in a [[MediaReview]]. Authorship etc. apply to the items rather than to the curation/grouping or reviewing party.",
+ "rdfs:label": "MediaReviewItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:ImageObjectSnapshot",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[ImageObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata (e.g. XMP, EXIF) the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "ImageObjectSnapshot",
+ "rdfs:subClassOf": {
+ "@id": "schema:ImageObject"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:Pharmacy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A pharmacy or drugstore.",
+ "rdfs:label": "Pharmacy",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalBusiness"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:fatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of fat.",
+ "rdfs:label": "fatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:acceptedOffer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.",
+ "rdfs:label": "acceptedOffer",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ }
+ },
+ {
+ "@id": "schema:includedDataCatalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').",
+ "rdfs:label": "includedDataCatalog",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataCatalog"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:includedInDataCatalog"
+ }
+ },
+ {
+ "@id": "schema:ContactPoint",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A contact point—for example, a Customer Complaints department.",
+ "rdfs:label": "ContactPoint",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ }
+ },
+ {
+ "@id": "schema:labelDetails",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to the drug's label details.",
+ "rdfs:label": "labelDetails",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:PublicHolidays",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a \"day of the week\", it can be used with [[OpeningHoursSpecification]]. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs.",
+ "rdfs:label": "PublicHolidays",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:BusTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip on a commercial bus line.",
+ "rdfs:label": "BusTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ }
+ },
+ {
+ "@id": "schema:AutomotiveBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Car repair, sales, or parts.",
+ "rdfs:label": "AutomotiveBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Rating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.",
+ "rdfs:label": "Rating",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Physician",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A doctor's office.",
+ "rdfs:label": "Physician",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:subtitleLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).",
+ "rdfs:label": "subtitleLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ScreeningEvent"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:BroadcastEvent"
+ },
+ {
+ "@id": "schema:TVEpisode"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Language"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2110"
+ }
+ },
+ {
+ "@id": "schema:EventCancelled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s).",
+ "rdfs:label": "EventCancelled"
+ },
+ {
+ "@id": "schema:ResultsNotAvailable",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Results are not available.",
+ "rdfs:label": "ResultsNotAvailable",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:variesBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. \"color\"; terms defined elsewhere can be referenced with their URIs.",
+ "rdfs:label": "variesBy",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductGroup"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:gameLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Real or fictional location of the game (or part of game).",
+ "rdfs:label": "gameLocation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Game"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:PostalAddress"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Review",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A review of an item - for example, of a restaurant, movie, or store.",
+ "rdfs:label": "Review",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:measurementTechnique",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]),\ncorresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.\n\nFor example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".\n\nIf the [[variableMeasured]] is \"depression rating\", the [[measurementTechnique]] could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".\n\nIf there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].\n ",
+ "rdfs:label": "measurementTechnique",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DataCatalog"
+ },
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:DataDownload"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1425"
+ }
+ },
+ {
+ "@id": "schema:Campground",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \\n\\n\nIn British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites (source: Wikipedia, see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n",
+ "rdfs:label": "Campground",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:percentile25",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 25th percentile value.",
+ "rdfs:label": "percentile25",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:email",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Email address.",
+ "rdfs:label": "email",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Joint",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The anatomical location at which two or more bones make contact.",
+ "rdfs:label": "Joint",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:healthPlanCostSharing",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The costs to the patient for services under this network or formulary.",
+ "rdfs:label": "healthPlanCostSharing",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HealthPlanFormulary"
+ },
+ {
+ "@id": "schema:HealthPlanNetwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:bed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.",
+ "rdfs:label": "bed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HotelRoom"
+ },
+ {
+ "@id": "schema:Suite"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:BedDetails"
+ },
+ {
+ "@id": "schema:BedType"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:inPlaylist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The playlist to which this recording belongs.",
+ "rdfs:label": "inPlaylist",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicPlaylist"
+ }
+ },
+ {
+ "@id": "schema:givenName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Given name. In the U.S., the first name of a Person.",
+ "rdfs:label": "givenName",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:actionStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the current disposition of the Action.",
+ "rdfs:label": "actionStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ActionStatusType"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]], [[Product]], or [[Offer]].",
+ "rdfs:label": "MerchantReturnPolicy",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:CompleteDataFeed",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[CompleteDataFeed]] is a [[DataFeed]] whose standard representation includes content for every item currently in the feed.\n\nThis is the equivalent of Atom's element as defined in Feed Paging and Archiving [RFC 5005](https://tools.ietf.org/html/rfc5005), for example (and as defined for Atom), when using data from a feed that represents a collection of items that varies over time (e.g. \"Top Twenty Records\") there is no need to have newer entries mixed in alongside older, obsolete entries. By marking this feed as a CompleteDataFeed, old entries can be safely discarded when the feed is refreshed, since we can assume the feed has provided descriptions for all current items.",
+ "rdfs:label": "CompleteDataFeed",
+ "rdfs:subClassOf": {
+ "@id": "schema:DataFeed"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1397"
+ }
+ },
+ {
+ "@id": "schema:PrimaryCare",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The medical care by a physician, or other health-care professional, who is the patient's first contact with the health-care system and who may recommend a specialist if necessary.",
+ "rdfs:label": "PrimaryCare",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:workLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contact location for a person's place of work.",
+ "rdfs:label": "workLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Article",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "Article",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:City",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A city or town.",
+ "rdfs:label": "City",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:albums",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A collection of music albums.",
+ "rdfs:label": "albums",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicGroup"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:album"
+ }
+ },
+ {
+ "@id": "schema:arrivalAirport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The airport where the flight terminates.",
+ "rdfs:label": "arrivalAirport",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Airport"
+ }
+ },
+ {
+ "@id": "schema:HealthPlanCostSharingSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A description of costs to the patient under a given network or formulary.",
+ "rdfs:label": "HealthPlanCostSharingSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:MedicalObservationalStudy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.",
+ "rdfs:label": "MedicalObservationalStudy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LockerDelivery",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A DeliveryMethod in which an item is made available via locker.",
+ "rdfs:label": "LockerDelivery"
+ },
+ {
+ "@id": "schema:ItemListOrderAscending",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with lower values listed first.",
+ "rdfs:label": "ItemListOrderAscending"
+ },
+ {
+ "@id": "schema:checkoutTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The latest someone may check out of a lodging establishment.",
+ "rdfs:label": "checkoutTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:LodgingReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ]
+ },
+ {
+ "@id": "schema:price",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\\n\\nUsage guidelines:\\n\\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\n ",
+ "rdfs:label": "price",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:TradeAction"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:validUntil",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date when the item is no longer valid.",
+ "rdfs:label": "validUntil",
+ "schema:domainIncludes": {
+ "@id": "schema:Permit"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:termsOfService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Human-readable terms of service documentation.",
+ "rdfs:label": "termsOfService",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ }
+ },
+ {
+ "@id": "schema:contactPoints",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contact point for a person or organization.",
+ "rdfs:label": "contactPoints",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:contactPoint"
+ }
+ },
+ {
+ "@id": "schema:agent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote a book.",
+ "rdfs:label": "agent",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AudioObjectSnapshot",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[AudioObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "AudioObjectSnapshot",
+ "rdfs:subClassOf": {
+ "@id": "schema:AudioObject"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:doseSchedule",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.",
+ "rdfs:label": "doseSchedule",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:TherapeuticProcedure"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DoseSchedule"
+ }
+ },
+ {
+ "@id": "schema:reviewAspect",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This Review or Rating is relevant to this part or facet of the itemReviewed.",
+ "rdfs:label": "reviewAspect",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Guide"
+ },
+ {
+ "@id": "schema:Review"
+ },
+ {
+ "@id": "schema:Rating"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1689"
+ }
+ },
+ {
+ "@id": "schema:Statement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statement about something, for example a fun or interesting fact. If known, the main entity this statement is about can be indicated using mainEntity. For more formal claims (e.g. in Fact Checking), consider using [[Claim]] instead. Use the [[text]] property to capture the text of the statement.",
+ "rdfs:label": "Statement",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2912"
+ }
+ },
+ {
+ "@id": "schema:Trip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip or journey. An itinerary of visits to one or more places.",
+ "rdfs:label": "Trip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementWaist",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the waist section, for example of pants",
+ "rdfs:label": "WearableMeasurementWaist",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:authenticator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media.",
+ "rdfs:label": "authenticator",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaSubscription"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementBack",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the back section, for example of a jacket",
+ "rdfs:label": "WearableMeasurementBack",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:lesser",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than the object.",
+ "rdfs:label": "lesser",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:AnaerobicActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.",
+ "rdfs:label": "AnaerobicActivity",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:experienceRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of skills and experience needed for the position or Occupation.",
+ "rdfs:label": "experienceRequirements",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:OccupationalExperienceRequirements"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:ReducedRelevanceForChildrenConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "A general code for cases where relevance to children is reduced, e.g. adult education, mortgages, retirement-related products, etc.",
+ "rdfs:label": "ReducedRelevanceForChildrenConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:MedicalIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.",
+ "rdfs:label": "MedicalIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ResearchOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Research Organization (e.g. scientific institute, research company).",
+ "rdfs:label": "ResearchOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2877"
+ }
+ },
+ {
+ "@id": "schema:GenderType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enumeration of genders.",
+ "rdfs:label": "GenderType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:partOfEpisode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The episode to which this clip belongs.",
+ "rdfs:label": "partOfEpisode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Clip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Episode"
+ }
+ },
+ {
+ "@id": "schema:Eye",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Eye or ophthalmological function assessment with clinical examination.",
+ "rdfs:label": "Eye",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:QAPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).",
+ "rdfs:label": "QAPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:targetUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL of a node in an established educational framework.",
+ "rdfs:label": "targetUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:diversityStaffingReport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.",
+ "rdfs:label": "diversityStaffingReport",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Article"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PhysicalActivityCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Categories of physical activity, organized by physiologic classification.",
+ "rdfs:label": "PhysicalActivityCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19HospPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.",
+ "rdfs:label": "cvdNumC19HospPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:containsPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The basic containment relation between a place and another that it contains.",
+ "rdfs:label": "containsPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:containedInPlace"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:qualifications",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specific qualifications required for this role or Occupation.",
+ "rdfs:label": "qualifications",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AdultOrientedEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumeration of considerations that make a product relevant or potentially restricted for adults only.",
+ "rdfs:label": "AdultOrientedEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:validFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of validity of a permit or similar thing.",
+ "rdfs:label": "validFor",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Permit"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:Playground",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A playground.",
+ "rdfs:label": "Playground",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:MedicalObservationalStudyDesign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Design models for observational medical studies. Enumerated type.",
+ "rdfs:label": "MedicalObservationalStudyDesign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ChemicalSubstance",
+ "@type": "rdfs:Class",
+ "dcterms:source": [
+ {
+ "@id": "http://bioschemas.org"
+ },
+ {
+ "@id": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999"
+ }
+ ],
+ "rdfs:comment": "A chemical substance is 'a portion of matter of constant composition, composed of molecular entities of the same type or of different types' (source: [ChEBI:59999](https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999)).",
+ "rdfs:label": "ChemicalSubstance",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:specialCommitments",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.",
+ "rdfs:label": "specialCommitments",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:nsn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. ",
+ "rdfs:label": "nsn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2126"
+ }
+ },
+ {
+ "@id": "schema:commentCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.",
+ "rdfs:label": "commentCount",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:servicePostalAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The address for accessing the service by mail.",
+ "rdfs:label": "servicePostalAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupRegular",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Regular\" for wearables.",
+ "rdfs:label": "WearableSizeGroupRegular",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:cookTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "cookTime",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:performTime"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:MedicineSystem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Systems of medical practice.",
+ "rdfs:label": "MedicineSystem",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SubwayStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subway station.",
+ "rdfs:label": "SubwayStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:SomeProducts",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A placeholder for multiple similar products of the same kind.",
+ "rdfs:label": "SomeProducts",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:deliveryAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Destination address.",
+ "rdfs:label": "deliveryAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:MonetaryAmount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between £1,000 and £1,000,000 GBP, or the value of a salary, etc. It is recommended to use [[PriceSpecification]] Types to describe the price of an Offer, Invoice, etc.",
+ "rdfs:label": "MonetaryAmount",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:foundingDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date that this organization was founded.",
+ "rdfs:label": "foundingDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:InsertAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of adding at a specific location in an ordered collection.",
+ "rdfs:label": "InsertAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AddAction"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelSourceEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several types of return labels for product returns.",
+ "rdfs:label": "ReturnLabelSourceEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:ProductGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc.\n\nWhile a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. ",
+ "rdfs:label": "ProductGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2597"
+ }
+ },
+ {
+ "@id": "schema:taxonomicRange",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "The taxonomic grouping of the organism that expresses, encodes, or in some way related to the BioChemEntity.",
+ "rdfs:label": "taxonomicRange",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ }
+ ]
+ },
+ {
+ "@id": "schema:resultReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of result. The review that resulted in the performing of the action.",
+ "rdfs:label": "resultReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:result"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ReviewAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ }
+ },
+ {
+ "@id": "schema:phoneticText",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Representation of a text [[textValue]] using the specified [[speechToTextMarkup]]. For example the city name of Houston in IPA: /ˈhjuːstən/.",
+ "rdfs:label": "phoneticText",
+ "schema:domainIncludes": {
+ "@id": "schema:PronounceableText"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:repetitions",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of times one should repeat the activity.",
+ "rdfs:label": "repetitions",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:reviewedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.",
+ "rdfs:label": "reviewedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:jobTitle",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The job title of the person (for example, Financial Manager).",
+ "rdfs:label": "jobTitle",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
+ }
+ },
+ {
+ "@id": "schema:hostingOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization (airline, travelers' club, etc.) the membership is made with.",
+ "rdfs:label": "hostingOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:hasVariant",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]).",
+ "rdfs:label": "hasVariant",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductGroup"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isVariantOf"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:LivingWithHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about coping or life related to the topic.",
+ "rdfs:label": "LivingWithHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:isLocatedInSubcellularLocation",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Subcellular location where this BioChemEntity is located; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "isLocatedInSubcellularLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:temporalCoverage",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:temporal"
+ },
+ "rdfs:comment": "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content, e.g. ScholarlyArticle, Book, TVSeries or TVEpisode, may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.",
+ "rdfs:label": "temporalCoverage",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:dateCreated",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date on which the CreativeWork was created or the item was added to a DataFeed.",
+ "rdfs:label": "dateCreated",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RecommendedDoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
+ "rdfs:label": "RecommendedDoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:deliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The method of delivery.",
+ "rdfs:label": "deliveryMethod",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TrackAction"
+ },
+ {
+ "@id": "schema:ReceiveAction"
+ },
+ {
+ "@id": "schema:SendAction"
+ },
+ {
+ "@id": "schema:OrderAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ }
+ },
+ {
+ "@id": "schema:owns",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Products owned by the organization or person.",
+ "rdfs:label": "owns",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OwnershipInfo"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:discussionUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to the page containing the comments of the CreativeWork.",
+ "rdfs:label": "discussionUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:ActionAccessSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of requirements that must be fulfilled in order to perform an Action.",
+ "rdfs:label": "ActionAccessSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:duplicateTherapy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A therapy that duplicates or overlaps this one.",
+ "rdfs:label": "duplicateTherapy",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:numberOfBathroomsTotal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total integer number of bathrooms in some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): \"The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.\". See also [[numberOfRooms]].",
+ "rdfs:label": "numberOfBathroomsTotal",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:drugUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unit in which the drug is measured, e.g. '5 mg tablet'.",
+ "rdfs:label": "drugUnit",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:DrugCost"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:dietFeatures",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.",
+ "rdfs:label": "dietFeatures",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EntertainmentBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A business providing entertainment.",
+ "rdfs:label": "EntertainmentBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:free",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.",
+ "rdfs:label": "free",
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:isAccessibleForFree"
+ }
+ },
+ {
+ "@id": "schema:copyrightNotice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.",
+ "rdfs:label": "copyrightNotice",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2659"
+ }
+ },
+ {
+ "@id": "schema:learningResourceType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.",
+ "rdfs:label": "learningResourceType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LearningResource"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Beach",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Beach.",
+ "rdfs:label": "Beach",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:OccupationalActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.",
+ "rdfs:label": "OccupationalActivity",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:estimatedFlightDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The estimated time the flight will take.",
+ "rdfs:label": "estimatedFlightDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Duration"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:requiredMinAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Audiences defined by a person's minimum age.",
+ "rdfs:label": "requiredMinAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:borrower",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The person that borrows the object being lent.",
+ "rdfs:label": "borrower",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:LendAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:FDAcategoryD",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.",
+ "rdfs:label": "FDAcategoryD",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Podiatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.",
+ "rdfs:label": "Podiatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:billingPeriod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time interval used to compute the invoice.",
+ "rdfs:label": "billingPeriod",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:awards",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Awards won by or for this item.",
+ "rdfs:label": "awards",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:award"
+ }
+ },
+ {
+ "@id": "schema:ReactAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of responding instinctively and emotionally to an object, expressing a sentiment.",
+ "rdfs:label": "ReactAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:MedicalScholarlyArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A scholarly article in the medical domain.",
+ "rdfs:label": "MedicalScholarlyArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:ScholarlyArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:RefundTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several kinds of product return refund types.",
+ "rdfs:label": "RefundTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:OfferForLease",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose\n [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
+ "rdfs:label": "OfferForLease",
+ "rdfs:subClassOf": {
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ }
+ },
+ {
+ "@id": "schema:differentialDiagnosis",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.",
+ "rdfs:label": "differentialDiagnosis",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DDxElement"
+ }
+ },
+ {
+ "@id": "schema:CatholicChurch",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Catholic church.",
+ "rdfs:label": "CatholicChurch",
+ "rdfs:subClassOf": {
+ "@id": "schema:Church"
+ }
+ },
+ {
+ "@id": "schema:ReservationHold",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a reservation on hold pending an update like credit card number or flight changes.",
+ "rdfs:label": "ReservationHold"
+ },
+ {
+ "@id": "schema:Nonprofit501c6",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards.",
+ "rdfs:label": "Nonprofit501c6",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Midwifery",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period (including care of the newborn), besides sexual and reproductive health of women throughout their lives.",
+ "rdfs:label": "Midwifery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:loanTerm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of the loan or credit agreement.",
+ "rdfs:label": "loanTerm",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:duration"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:accessModeSufficient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).",
+ "rdfs:label": "accessModeSufficient",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ItemList"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
+ }
+ },
+ {
+ "@id": "schema:maximumVirtualAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). ",
+ "rdfs:label": "maximumVirtualAttendeeCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:FinancialProduct",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.",
+ "rdfs:label": "FinancialProduct",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:LiveAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "LiveAlbum.",
+ "rdfs:label": "LiveAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:ExhibitionEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...",
+ "rdfs:label": "ExhibitionEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:FullGameAvailability",
+ "@type": "schema:GameAvailabilityEnumeration",
+ "rdfs:comment": "Indicates full game availability.",
+ "rdfs:label": "FullGameAvailability",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:MedicalEntity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The most generic type of entity related to health and the practice of medicine.",
+ "rdfs:label": "MedicalEntity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:byMonthWeek",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month.",
+ "rdfs:label": "byMonthWeek",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2599"
+ }
+ },
+ {
+ "@id": "schema:ResumeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer).",
+ "rdfs:label": "ResumeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:pathophysiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.",
+ "rdfs:label": "pathophysiology",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PhysicalActivity"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ProgramMembership",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.",
+ "rdfs:label": "ProgramMembership",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:guidelineSubject",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The medical conditions, treatments, etc. that are the subject of the guideline.",
+ "rdfs:label": "guidelineSubject",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:attendees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person attending the event.",
+ "rdfs:label": "attendees",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:attendee"
+ }
+ },
+ {
+ "@id": "schema:review",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A review of the item.",
+ "rdfs:label": "review",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ }
+ },
+ {
+ "@id": "schema:DiscoverAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of discovering/finding an object.",
+ "rdfs:label": "DiscoverAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:FindAction"
+ }
+ },
+ {
+ "@id": "schema:children",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A child of the person.",
+ "rdfs:label": "children",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:OfflinePermanently",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: OfflinePermanently. Server is offline and not available.",
+ "rdfs:label": "OfflinePermanently"
+ },
+ {
+ "@id": "schema:dissolutionDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date that this organization was dissolved.",
+ "rdfs:label": "dissolutionDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:CafeOrCoffeeShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A cafe or coffee shop.",
+ "rdfs:label": "CafeOrCoffeeShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:conditionsOfAccess",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\\n\\nFor example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \". ",
+ "rdfs:label": "conditionsOfAccess",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2173"
+ }
+ },
+ {
+ "@id": "schema:ReimbursementCap",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the maximum reimbursement paid by an insurer for the drug.",
+ "rdfs:label": "ReimbursementCap",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:administrationRoute",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A route by which this drug may be administered, e.g. 'oral'.",
+ "rdfs:label": "administrationRoute",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:paymentMethodId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).",
+ "rdfs:label": "paymentMethodId",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DryCleaningOrLaundry",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A dry-cleaning business.",
+ "rdfs:label": "DryCleaningOrLaundry",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:dateReceived",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date/time the message was received if a single recipient exists.",
+ "rdfs:label": "dateReceived",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:healthPlanId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)",
+ "rdfs:label": "healthPlanId",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:ContagiousnessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about contagion mechanisms and contagiousness information over the topic.",
+ "rdfs:label": "ContagiousnessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:interactivityType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.",
+ "rdfs:label": "interactivityType",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:includesAttraction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Attraction located at destination.",
+ "rdfs:label": "includesAttraction",
+ "schema:domainIncludes": {
+ "@id": "schema:TouristDestination"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:TouristAttraction"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RVPark",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.",
+ "rdfs:label": "RVPark",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:LymphaticVessel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.",
+ "rdfs:label": "LymphaticVessel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vessel"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ItemAvailability",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible product availability options.",
+ "rdfs:label": "ItemAvailability",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:ExchangeRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that a refund can be done as an exchange for the same product.",
+ "rdfs:label": "ExchangeRefund",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:CharitableIncorporatedOrganization",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization (UK).",
+ "rdfs:label": "CharitableIncorporatedOrganization",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:lodgingUnitType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Textual description of the unit type (including suite vs. room, size of bed, etc.).",
+ "rdfs:label": "lodgingUnitType",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Discontinued",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has been discontinued.",
+ "rdfs:label": "Discontinued"
+ },
+ {
+ "@id": "schema:itemLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "Current location of the item."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "itemLocation"
+ },
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ArchiveComponent"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:medicalSpecialty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical specialty of the provider.",
+ "rdfs:label": "medicalSpecialty",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Physician"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalClinic"
+ },
+ {
+ "@id": "schema:Hospital"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSpecialty"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementNeck",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of neck. Used, for example, to fit shirts.",
+ "rdfs:label": "BodyMeasurementNeck",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:EvidenceLevelA",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Data derived from multiple randomized clinical trials or meta-analyses.",
+ "rdfs:label": "EvidenceLevelA",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:returnPolicyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies an applicable return policy (from an enumeration).",
+ "rdfs:label": "returnPolicyCategory",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MerchantReturnEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:SpeechPathology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The scientific study and treatment of defects, disorders, and malfunctions of speech and voice, as stuttering, lisping, or lalling, and of language disturbances, as aphasia or delayed language acquisition.",
+ "rdfs:label": "SpeechPathology",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An electronic file or document.",
+ "rdfs:label": "DigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:device",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
+ "rdfs:label": "device",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:availableOnDevice"
+ }
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value providing information about the opening hours of a place or a certain service inside a place.\\n\\n\nThe place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\\n\\nIf the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.\n ",
+ "rdfs:label": "OpeningHoursSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:PresentationDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A file containing slides or used for a presentation.",
+ "rdfs:label": "PresentationDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:ProfessionalService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Original definition: \"provider of professional services.\"\\n\\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]],\n [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]],\n [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]].",
+ "rdfs:label": "ProfessionalService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:availableChannel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).",
+ "rdfs:label": "availableChannel",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ServiceChannel"
+ }
+ },
+ {
+ "@id": "schema:Book",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A book.",
+ "rdfs:label": "Book",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:BankOrCreditUnion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Bank or credit union.",
+ "rdfs:label": "BankOrCreditUnion",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:abstract",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An abstract is a short description that summarizes a [[CreativeWork]].",
+ "rdfs:label": "abstract",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/276"
+ }
+ },
+ {
+ "@id": "schema:cholesterolContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of milligrams of cholesterol.",
+ "rdfs:label": "cholesterolContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:numChildren",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of children staying in the unit.",
+ "rdfs:label": "numChildren",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:IngredientsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content discussing ingredients-related aspects of a health topic.",
+ "rdfs:label": "IngredientsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:membershipNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A unique identifier for the membership.",
+ "rdfs:label": "membershipNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:distribution",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A downloadable form of this dataset, at a specific location, in a specific format. This property can be repeated if different variations are available. There is no expectation that different downloadable distributions must contain exactly equivalent information (see also [DCAT](https://www.w3.org/TR/vocab-dcat-3/#Class:Distribution) on this point). Different distributions might include or exclude different subsets of the entire dataset, for example.",
+ "rdfs:label": "distribution",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataDownload"
+ }
+ },
+ {
+ "@id": "schema:valueMinLength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the minimum allowed range for number of characters in a literal value.",
+ "rdfs:label": "valueMinLength",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:guidelineDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date on which this guideline's recommendation was made.",
+ "rdfs:label": "guidelineDate",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:programMembershipUsed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.",
+ "rdfs:label": "programMembershipUsed",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ProgramMembership"
+ }
+ },
+ {
+ "@id": "schema:medicineSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.",
+ "rdfs:label": "medicineSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicineSystem"
+ }
+ },
+ {
+ "@id": "schema:MedicalTrialDesign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Design models for medical trials. Enumerated type.",
+ "rdfs:label": "MedicalTrialDesign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc"
+ }
+ },
+ {
+ "@id": "schema:fileFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.",
+ "rdfs:label": "fileFormat",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:encodingFormat"
+ }
+ },
+ {
+ "@id": "schema:PhysicalTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of progressive physical care and rehabilitation aimed at improving a health condition.",
+ "rdfs:label": "PhysicalTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:interpretedAsClaim",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].",
+ "rdfs:label": "interpretedAsClaim",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:serviceOperator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.",
+ "rdfs:label": "serviceOperator",
+ "schema:domainIncludes": {
+ "@id": "schema:GovernmentService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:broadcastOfEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The event being broadcast such as a sporting event or awards ceremony.",
+ "rdfs:label": "broadcastOfEvent",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:bookingAgent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.",
+ "rdfs:label": "bookingAgent",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:broker"
+ }
+ },
+ {
+ "@id": "schema:itemReviewed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The item that is being reviewed/rated.",
+ "rdfs:label": "itemReviewed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Review"
+ },
+ {
+ "@id": "schema:AggregateRating"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:status",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The status of the study (enumerated).",
+ "rdfs:label": "status",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ },
+ {
+ "@id": "schema:MedicalStudy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalStudyStatus"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:EventStatusType"
+ }
+ ]
+ },
+ {
+ "@id": "schema:returnLabelSource",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned for any reason.",
+ "rdfs:label": "returnLabelSource",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnLabelSourceEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:vehicleInteriorType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.",
+ "rdfs:label": "vehicleInteriorType",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:originatesFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The vasculature the lymphatic structure originates, or afferents, from.",
+ "rdfs:label": "originatesFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:LymphaticVessel"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:Drug",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/410942007"
+ },
+ "rdfs:comment": "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge makes a clear difference between them.",
+ "rdfs:label": "Drug",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Substance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:interactionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Action representing the type of interaction. For up votes, +1s, etc. use [[LikeAction]]. For down votes use [[DislikeAction]]. Otherwise, use the most specific Action.",
+ "rdfs:label": "interactionType",
+ "schema:domainIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:hasMap",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "hasMap",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Map"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Season",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media season, e.g. TV, radio, video game etc.",
+ "rdfs:label": "Season",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ },
+ {
+ "@id": "schema:parent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A parent of this person.",
+ "rdfs:label": "parent",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:safetyConsideration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.",
+ "rdfs:label": "safetyConsideration",
+ "schema:domainIncludes": {
+ "@id": "schema:DietarySupplement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EventVenue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An event venue.",
+ "rdfs:label": "EventVenue",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:vehicleEngine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about the engine or engines of the vehicle.",
+ "rdfs:label": "vehicleEngine",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:text",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The textual content of this CreativeWork.",
+ "rdfs:label": "text",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EPRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "EPRelease.",
+ "rdfs:label": "EPRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:fundedItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates something directly or indirectly funded or sponsored through a [[Grant]]. See also [[ownershipFundingInfo]].",
+ "rdfs:label": "fundedItem",
+ "schema:domainIncludes": {
+ "@id": "schema:Grant"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:funding"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ReservationPackage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A group of multiple reservations with common values for all sub-reservations.",
+ "rdfs:label": "ReservationPackage",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:archivedAt",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.",
+ "rdfs:label": "archivedAt",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebPage"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:molecularWeight",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "This is the molecular weight of the entity being described, not of the parent. Units should be included in the form '<Number> <unit>', for example '12 amu' or as '<QuantitativeValue>.",
+ "rdfs:label": "molecularWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:merchant",
+ "@type": "rdf:Property",
+ "rdfs:comment": "'merchant' is an out-dated term for 'seller'.",
+ "rdfs:label": "merchant",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:seller"
+ }
+ },
+ {
+ "@id": "schema:AutoBodyShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Auto body shop.",
+ "rdfs:label": "AutoBodyShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:gtin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin)). GTINs identify trade items, including products and services, using numeric identification codes.\n\nThe GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) express GTINs as URLs (URIs, IRIs, etc.). Details including regular expression examples can be found in, Section 6 of the GS1 URI Syntax specification; see also [schema.org tracking issue](https://github.com/schemaorg/schemaorg/issues/3156#issuecomment-1209522809) for schema.org-specific discussion. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a \"GS1 Digital Link\" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties.\n\nNote also that this is a definition for how to include GTINs in Schema.org data, and not a definition of GTINs in general - see the GS1 documentation for authoritative details.",
+ "rdfs:label": "gtin",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:LegalForceStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible statuses for the legal force of a legislation.",
+ "rdfs:label": "LegalForceStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce"
+ }
+ },
+ {
+ "@id": "schema:jobStartDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date on which a successful applicant for this job would be expected to start work. Choose a specific date in the future or use the jobImmediateStart property to indicate the position is to be filled as soon as possible.",
+ "rdfs:label": "jobStartDate",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2244"
+ }
+ },
+ {
+ "@id": "schema:TypesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Categorization and other types related to a topic.",
+ "rdfs:label": "TypesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:CheckAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.",
+ "rdfs:label": "CheckAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:FindAction"
+ }
+ },
+ {
+ "@id": "schema:StudioAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "StudioAlbum.",
+ "rdfs:label": "StudioAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:iataCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "IATA identifier for an airline or airport.",
+ "rdfs:label": "iataCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Airline"
+ },
+ {
+ "@id": "schema:Airport"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:contactType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.",
+ "rdfs:label": "contactType",
+ "schema:domainIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:title",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The title of the job.",
+ "rdfs:label": "title",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:characterName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.",
+ "rdfs:label": "characterName",
+ "schema:domainIncludes": {
+ "@id": "schema:PerformanceRole"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:dateDeleted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The datetime the item was removed from the DataFeed.",
+ "rdfs:label": "dateDeleted",
+ "schema:domainIncludes": {
+ "@id": "schema:DataFeedItem"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isRelatedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another, somehow related product (or multiple products).",
+ "rdfs:label": "isRelatedTo",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:DisabilitySupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "DisabilitySupport: this is a benefit for disability support.",
+ "rdfs:label": "DisabilitySupport",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:negativeNotes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Provides negative considerations regarding something, most typically in pro/con lists for reviews (alongside [[positiveNotes]]). For symmetry \n\nIn the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described. Since product descriptions \ntend to emphasise positive claims, it may be relatively unusual to find [[negativeNotes]] used in this way. Nevertheless for the sake of symmetry, [[negativeNotes]] can be used on [[Product]].\n\nThe property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most negative is at the beginning of the list).",
+ "rdfs:label": "negativeNotes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Review"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2832"
+ }
+ },
+ {
+ "@id": "schema:StagesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Stages that can be observed from a topic.",
+ "rdfs:label": "StagesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:alternativeHeadline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secondary title of the CreativeWork.",
+ "rdfs:label": "alternativeHeadline",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:assembly",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Library file name, e.g., mscorlib.dll, system.web.dll.",
+ "rdfs:label": "assembly",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:executableLibraryName"
+ }
+ },
+ {
+ "@id": "schema:application",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An application that can complete the request.",
+ "rdfs:label": "application",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:actionApplication"
+ }
+ },
+ {
+ "@id": "schema:creditText",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.",
+ "rdfs:label": "creditText",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2659"
+ }
+ },
+ {
+ "@id": "schema:suggestedMeasurement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A suggested range of body measurements for the intended audience or person, for example inseam between 32 and 34 inches or height between 170 and 190 cm. Typically found on a size chart for wearable products.",
+ "rdfs:label": "suggestedMeasurement",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:eventStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.",
+ "rdfs:label": "eventStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EventStatusType"
+ }
+ },
+ {
+ "@id": "schema:containedIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The basic containment relation between a place and one that contains it.",
+ "rdfs:label": "containedIn",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:containedInPlace"
+ }
+ },
+ {
+ "@id": "schema:LegislationObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific object or file containing a Legislation. Note that the same Legislation can be published in multiple files. For example, a digitally signed PDF, a plain PDF and an HTML version.",
+ "rdfs:label": "LegislationObject",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Legislation"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#Format"
+ }
+ },
+ {
+ "@id": "schema:bankAccountType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of a bank account.",
+ "rdfs:label": "bankAccountType",
+ "schema:domainIncludes": {
+ "@id": "schema:BankAccount"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Airport",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An airport.",
+ "rdfs:label": "Airport",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:trailer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The trailer of a movie or TV/radio series, season, episode, etc.",
+ "rdfs:label": "trailer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:VideoObject"
+ }
+ },
+ {
+ "@id": "schema:documentation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Further documentation describing the Web API in more detail.",
+ "rdfs:label": "documentation",
+ "schema:domainIncludes": {
+ "@id": "schema:WebAPI"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ }
+ },
+ {
+ "@id": "schema:MedicalStudyStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The status of a medical study. Enumerated type.",
+ "rdfs:label": "MedicalStudyStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bioChemInteraction",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A BioChemEntity that is known to interact with this item.",
+ "rdfs:label": "bioChemInteraction",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:naturalProgression",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected progression of the condition if it is not treated and allowed to progress naturally.",
+ "rdfs:label": "naturalProgression",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:paymentStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The status of payment; whether the invoice has been paid or not.",
+ "rdfs:label": "paymentStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PaymentStatusType"
+ }
+ ]
+ },
+ {
+ "@id": "schema:itemOffered",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
+ "rdfs:label": "itemOffered",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:offers"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:AggregateOffer"
+ },
+ {
+ "@id": "schema:Trip"
+ }
+ ]
+ },
+ {
+ "@id": "schema:gameEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The edition of a video game.",
+ "rdfs:label": "gameEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoGame"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:numberOfBedrooms",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].",
+ "rdfs:label": "numberOfBedrooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:intensity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.",
+ "rdfs:label": "intensity",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:UserLikes",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserLikes",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:funding",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].",
+ "rdfs:label": "funding",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:fundedItem"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Grant"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:proprietaryName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Proprietary name given to the diet plan, typically by its originator or creator.",
+ "rdfs:label": "proprietaryName",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:sharedContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.",
+ "rdfs:label": "sharedContent",
+ "schema:domainIncludes": {
+ "@id": "schema:SocialMediaPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:AmpStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices.",
+ "rdfs:label": "AmpStory",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2646"
+ }
+ },
+ {
+ "@id": "schema:collection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The collection target of the action.",
+ "rdfs:label": "collection",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:UpdateAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:targetCollection"
+ }
+ },
+ {
+ "@id": "schema:interactionStatistic",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.",
+ "rdfs:label": "interactionStatistic",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2421"
+ }
+ },
+ {
+ "@id": "schema:CookAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing/preparing food.",
+ "rdfs:label": "CookAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:isPartOfBioChemEntity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "Indicates a BioChemEntity that is (in some sense) a part of this BioChemEntity. ",
+ "rdfs:label": "isPartOfBioChemEntity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:hasBioChemEntityPart"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:MedicalWebPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A web page that provides medical information.",
+ "rdfs:label": "MedicalWebPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:greaterOrEqual",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.",
+ "rdfs:label": "greaterOrEqual",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Throat",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Throat assessment with clinical examination.",
+ "rdfs:label": "Throat",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Urologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.",
+ "rdfs:label": "Urologic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:events",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Upcoming or past events associated with this place or organization.",
+ "rdfs:label": "events",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:event"
+ }
+ },
+ {
+ "@id": "schema:StadiumOrArena",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A stadium.",
+ "rdfs:label": "StadiumOrArena",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:SportsActivityLocation"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FDAnotEvaluated",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.",
+ "rdfs:label": "FDAnotEvaluated",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Cardiovascular",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.",
+ "rdfs:label": "Cardiovascular",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:UserComments",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserComments",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:numberOfDoors",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of doors.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfDoors",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:lastReviewed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.",
+ "rdfs:label": "lastReviewed",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:foodEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The specific food event where the action occurred.",
+ "rdfs:label": "foodEvent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CookAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:FoodEvent"
+ }
+ },
+ {
+ "@id": "schema:Lung",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Lung and respiratory system clinical examination.",
+ "rdfs:label": "Lung",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:workExample",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.",
+ "rdfs:label": "workExample",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:exampleOfWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:workPerformed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A work performed in some event, for example a play performed in a TheaterEvent.",
+ "rdfs:label": "workPerformed",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workFeatured"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:ReserveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.",
+ "rdfs:label": "ReserveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlanAction"
+ }
+ },
+ {
+ "@id": "schema:OrderInTransit",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order is in transit.",
+ "rdfs:label": "OrderInTransit"
+ },
+ {
+ "@id": "schema:BusinessEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Business event.",
+ "rdfs:label": "BusinessEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:identifyingExam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A physical examination that can identify this sign.",
+ "rdfs:label": "identifyingExam",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalSign"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PhysicalExam"
+ }
+ },
+ {
+ "@id": "schema:Residence",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The place where a person lives.",
+ "rdfs:label": "Residence",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:includedInDataCatalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A data catalog which contains this dataset.",
+ "rdfs:label": "includedInDataCatalog",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataCatalog"
+ }
+ },
+ {
+ "@id": "schema:BroadcastChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.",
+ "rdfs:label": "BroadcastChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:MusicComposition",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A musical composition.",
+ "rdfs:label": "MusicComposition",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:WinAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of achieving victory in a competitive activity.",
+ "rdfs:label": "WinAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AchieveAction"
+ }
+ },
+ {
+ "@id": "schema:currentExchangeRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current price of a currency.",
+ "rdfs:label": "currentExchangeRate",
+ "schema:domainIncludes": {
+ "@id": "schema:ExchangeRateSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:dependencies",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Prerequisites needed to fulfill steps in article.",
+ "rdfs:label": "dependencies",
+ "schema:domainIncludes": {
+ "@id": "schema:TechArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:SalePrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents a sale price (usually active for a limited period) of an offered product.",
+ "rdfs:label": "SalePrice",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:duration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "duration",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:Audiobook"
+ },
+ {
+ "@id": "schema:MusicRecording"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:MusicRelease"
+ },
+ {
+ "@id": "schema:QuantitativeValueDistribution"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ ]
+ },
+ {
+ "@id": "schema:relevantOccupation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Occupation for the JobPosting.",
+ "rdfs:label": "relevantOccupation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Occupation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:jobLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A (typically single) geographic location associated with the job position.",
+ "rdfs:label": "jobLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:volumeNumber",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/volume"
+ },
+ "rdfs:comment": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".",
+ "rdfs:label": "volumeNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationVolume"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:HowToTip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).",
+ "rdfs:label": "HowToTip",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:torque",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The torque (turning force) of the vehicle's engine.\\n\\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\\n\\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "torque",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:publishedOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A broadcast service associated with the publication event.",
+ "rdfs:label": "publishedOn",
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastService"
+ }
+ },
+ {
+ "@id": "schema:Longitudinal",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.",
+ "rdfs:label": "Longitudinal",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Hackathon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event.",
+ "rdfs:label": "Hackathon",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2526"
+ }
+ },
+ {
+ "@id": "schema:algorithm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The algorithm or rules to follow to compute the score.",
+ "rdfs:label": "algorithm",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskScore"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:legislationLegalValue",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#legal_value"
+ },
+ "rdfs:comment": "The legal value of this legislation file. The same legislation can be written in multiple files with different legal values. Typically a digitally signed PDF have a \"stronger\" legal value than the HTML file of the same act.",
+ "rdfs:label": "legislationLegalValue",
+ "schema:domainIncludes": {
+ "@id": "schema:LegislationObject"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:LegalValueLevel"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#legal_value"
+ }
+ },
+ {
+ "@id": "schema:associatedClaimReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated [[ClaimReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].",
+ "rdfs:label": "associatedClaimReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:associatedReview"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:StatisticalPopulation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A StatisticalPopulation is a set of instances of a certain given type that satisfy some set of constraints. The property [[populationType]] is used to specify the type. Any property that can be used on instances of that type can appear on the statistical population. For example, a [[StatisticalPopulation]] representing all [[Person]]s with a [[homeLocation]] of East Podunk California would be described by applying the appropriate [[homeLocation]] and [[populationType]] properties to a [[StatisticalPopulation]] item that stands for that set of people.\nThe properties [[numConstraints]] and [[constrainingProperty]] are used to specify which of the populations properties are used to specify the population. Note that the sense of \"population\" used here is the general sense of a statistical\npopulation, and does not imply that the population consists of people. For example, a [[populationType]] of [[Event]] or [[NewsArticle]] could be used. See also [[Observation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ",
+ "rdfs:label": "StatisticalPopulation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:answerExplanation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ",
+ "rdfs:label": "answerExplanation",
+ "schema:domainIncludes": {
+ "@id": "schema:Answer"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Comment"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2636"
+ }
+ },
+ {
+ "@id": "schema:WriteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of authoring written creative content.",
+ "rdfs:label": "WriteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:HowToSection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).",
+ "rdfs:label": "HowToSection",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ListItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MusicReleaseFormatType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Format of this release (the type of recording media used, i.e. compact disc, digital media, LP, etc.).",
+ "rdfs:label": "MusicReleaseFormatType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:FinancialService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Financial services business.",
+ "rdfs:label": "FinancialService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:HVACBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A business that provides Heating, Ventilation and Air Conditioning services.",
+ "rdfs:label": "HVACBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:RepaymentSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing repayment.",
+ "rdfs:label": "RepaymentSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RelatedTopicsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Other prominent or relevant topics tied to the main topic.",
+ "rdfs:label": "RelatedTopicsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:seeks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to products or services sought by the organization or person (demand).",
+ "rdfs:label": "seeks",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Demand"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:UserPlusOnes",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPlusOnes",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:employees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "People working for this organization.",
+ "rdfs:label": "employees",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:employee"
+ }
+ },
+ {
+ "@id": "schema:Gynecologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.",
+ "rdfs:label": "Gynecologic",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:diagnosis",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process.",
+ "rdfs:label": "diagnosis",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DDxElement"
+ },
+ {
+ "@id": "schema:Patient"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
+ }
+ },
+ {
+ "@id": "schema:mobileUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The [[mobileUrl]] property is provided for specific situations in which data consumers need to determine whether one of several provided URLs is a dedicated 'mobile site'.\n\nTo discourage over-use, and reflecting intial usecases, the property is expected only on [[Product]] and [[Offer]], rather than [[Thing]]. The general trend in web technology is towards [responsive design](https://en.wikipedia.org/wiki/Responsive_web_design) in which content can be flexibly adapted to a wide range of browsing environments. Pages and sites referenced with the long-established [[url]] property should ideally also be usable on a wide variety of devices, including mobile phones. In most cases, it would be pointless and counter productive to attempt to update all [[url]] markup to use [[mobileUrl]] for more mobile-oriented pages. The property is intended for the case when items (primarily [[Product]] and [[Offer]]) have extra URLs hosted on an additional \"mobile site\" alongside the main one. It should not be taken as an endorsement of this publication style.\n ",
+ "rdfs:label": "mobileUrl",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3134"
+ }
+ },
+ {
+ "@id": "schema:requiredQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The required quantity of the item(s).",
+ "rdfs:label": "requiredQuantity",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToItem"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:about",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The subject matter of the content.",
+ "rdfs:label": "about",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CommunicateAction"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:subjectOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
+ }
+ },
+ {
+ "@id": "schema:hasEnergyConsumptionDetails",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the energy efficiency Category (also known as \"class\" or \"rating\") for a product according to an international energy efficiency standard.",
+ "rdfs:label": "hasEnergyConsumptionDetails",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnNotPermitted",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that product returns are not permitted.",
+ "rdfs:label": "MerchantReturnNotPermitted",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:expressedIn",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Tissue, organ, biological sample, etc in which activity of this gene has been observed experimentally. For example brain, digestive system.",
+ "rdfs:label": "expressedIn",
+ "schema:domainIncludes": {
+ "@id": "schema:Gene"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:weight",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The weight of the product or person.",
+ "rdfs:label": "weight",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:OrderPickupAvailable",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing availability of an order for pickup.",
+ "rdfs:label": "OrderPickupAvailable"
+ },
+ {
+ "@id": "schema:DeliveryEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An event involving the delivery of an item.",
+ "rdfs:label": "DeliveryEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:LimitedByGuaranteeCharity",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee (UK).",
+ "rdfs:label": "LimitedByGuaranteeCharity",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ComputerLanguage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type.",
+ "rdfs:label": "ComputerLanguage",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementCup",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the cup, for example of a bra",
+ "rdfs:label": "WearableMeasurementCup",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:PeopleAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics belonging to people, e.g. who compose an item's target audience.",
+ "rdfs:label": "PeopleAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:ReportedDoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A patient-reported or observed dosing schedule for a drug or supplement.",
+ "rdfs:label": "ReportedDoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:composer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person or organization who wrote a composition, or who is the composer of a work performed at some event.",
+ "rdfs:label": "composer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:MusicComposition"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Motorcycle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.",
+ "rdfs:label": "Motorcycle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:clinicalPharmacology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
+ "rdfs:label": "clinicalPharmacology",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c21",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts.",
+ "rdfs:label": "Nonprofit501c21",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:postalCodePrefix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A defined range of postal codes indicated by a common textual prefix. Used for non-numeric systems such as UK.",
+ "rdfs:label": "postalCodePrefix",
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:FollowAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\\n\\nRelated actions:\\n\\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it).",
+ "rdfs:label": "FollowAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:shippingDetails",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates information about the shipping policies and options associated with an [[Offer]].",
+ "rdfs:label": "shippingDetails",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OfferShippingDetails"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:VideoGame",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.",
+ "rdfs:label": "VideoGame",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:SoftwareApplication"
+ },
+ {
+ "@id": "schema:Game"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OpinionNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[OpinionNewsArticle]] is a [[NewsArticle]] that primarily expresses opinions rather than journalistic reporting of news and events. For example, a [[NewsArticle]] consisting of a column or [[Blog]]/[[BlogPosting]] entry in the Opinions section of a news publication. ",
+ "rdfs:label": "OpinionNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MapCategoryType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enumeration of several kinds of Map.",
+ "rdfs:label": "MapCategoryType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:NGO",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Organization: Non-governmental Organization.",
+ "rdfs:label": "NGO",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:BusStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bus station.",
+ "rdfs:label": "BusStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:Substance",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/105590001"
+ },
+ "rdfs:comment": "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.",
+ "rdfs:label": "Substance",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:arrivalStation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The station where the train trip ends.",
+ "rdfs:label": "arrivalStation",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:TrainStation"
+ }
+ },
+ {
+ "@id": "schema:TrainStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A train station.",
+ "rdfs:label": "TrainStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:SportingGoodsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sporting goods store.",
+ "rdfs:label": "SportingGoodsStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:UnRegisterAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of un-registering from a service.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: antonym of UnRegisterAction.\\n* [[LeaveAction]]: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you were previously registered, rather than leaving a team/group of people.",
+ "rdfs:label": "UnRegisterAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:unnamedSourcesPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.",
+ "rdfs:label": "unnamedSourcesPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:educationRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Educational background needed for the position or Occupation.",
+ "rdfs:label": "educationRequirements",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:Occupation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DoubleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.",
+ "rdfs:label": "DoubleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:salaryUponCompletion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected salary upon completing the training.",
+ "rdfs:label": "salaryUponCompletion",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmountDistribution"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:ToyStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A toy store.",
+ "rdfs:label": "ToyStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:UnemploymentSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "UnemploymentSupport: this is a benefit for unemployment support.",
+ "rdfs:label": "UnemploymentSupport",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:MedicalSign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.",
+ "rdfs:label": "MedicalSign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalSignOrSymptom"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MovieSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A series of movies. Included movies can be indicated with the hasPart property.",
+ "rdfs:label": "MovieSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:claimInterpreter",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[Claim]] interpreted from [[MediaObject]] content\n sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].",
+ "rdfs:label": "claimInterpreter",
+ "schema:domainIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:vehicleInteriorColor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The color or color combination of the interior of the vehicle.",
+ "rdfs:label": "vehicleInteriorColor",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:affectedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Drugs that affect the test's results.",
+ "rdfs:label": "affectedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:realEstateAgent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The real estate agent involved in the action.",
+ "rdfs:label": "realEstateAgent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:RentAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RealEstateAgent"
+ }
+ },
+ {
+ "@id": "schema:Car",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A car is a wheeled, self-powered motor vehicle used for transportation.",
+ "rdfs:label": "Car",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:subOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.",
+ "rdfs:label": "subOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:parentOrganization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:SoldOut",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has sold out.",
+ "rdfs:label": "SoldOut"
+ },
+ {
+ "@id": "schema:issueNumber",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/issue"
+ },
+ "rdfs:comment": "Identifies the issue of publication; for example, \"iii\" or \"2\".",
+ "rdfs:label": "issueNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationIssue"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:encodings",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object that encodes this CreativeWork.",
+ "rdfs:label": "encodings",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:encoding"
+ }
+ },
+ {
+ "@id": "schema:recipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The participant who is at the receiving end of the action.",
+ "rdfs:label": "recipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TipAction"
+ },
+ {
+ "@id": "schema:CommunicateAction"
+ },
+ {
+ "@id": "schema:PayAction"
+ },
+ {
+ "@id": "schema:DonateAction"
+ },
+ {
+ "@id": "schema:ReturnAction"
+ },
+ {
+ "@id": "schema:GiveAction"
+ },
+ {
+ "@id": "schema:Message"
+ },
+ {
+ "@id": "schema:SendAction"
+ },
+ {
+ "@id": "schema:AuthorizeAction"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Physiotherapy",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery.",
+ "rdfs:label": "Physiotherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:musicCompositionForm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of composition (e.g. overture, sonata, symphony, etc.).",
+ "rdfs:label": "musicCompositionForm",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Pond",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A pond.",
+ "rdfs:label": "Pond",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:fileSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.",
+ "rdfs:label": "fileSize",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:foundingLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the Organization was founded.",
+ "rdfs:label": "foundingLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:PropertyValueSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Property value specification.",
+ "rdfs:label": "PropertyValueSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ }
+ },
+ {
+ "@id": "schema:BorrowAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\\n\\nRelated actions:\\n\\n* [[LendAction]]: Reciprocal of BorrowAction.",
+ "rdfs:label": "BorrowAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:HinduDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Hindu dietary practices, in particular, beef-free.",
+ "rdfs:label": "HinduDiet"
+ },
+ {
+ "@id": "schema:Hematologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.",
+ "rdfs:label": "Hematologic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:departureBoatTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The terminal or port from which the boat departs.",
+ "rdfs:label": "departureBoatTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:BoatTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BoatTerminal"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:requiresSubscription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates if use of the media require a subscription (either paid or free). Allowed values are ```true``` or ```false``` (note that an earlier version had 'yes', 'no').",
+ "rdfs:label": "requiresSubscription",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaSubscription"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:tool",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
+ "rdfs:label": "tool",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToDirection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:HowToTool"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:LowSaltDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced sodium intake.",
+ "rdfs:label": "LowSaltDiet"
+ },
+ {
+ "@id": "schema:numberOfAvailableAccommodationUnits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the number of available accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAccommodationUnits]].",
+ "rdfs:label": "numberOfAvailableAccommodationUnits",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ApartmentComplex"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:XPathType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Text representing an XPath (typically but not necessarily version 1.0).",
+ "rdfs:label": "XPathType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1672"
+ }
+ },
+ {
+ "@id": "schema:SingleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.",
+ "rdfs:label": "SingleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:funder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
+ "rdfs:label": "funder",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:sponsor"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Grant"
+ },
+ {
+ "@id": "schema:MonetaryGrant"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RadioChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup.",
+ "rdfs:label": "RadioChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:BroadcastChannel"
+ }
+ },
+ {
+ "@id": "schema:Thing",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The most generic type of item.",
+ "rdfs:label": "Thing"
+ },
+ {
+ "@id": "schema:amount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of money.",
+ "rdfs:label": "amount",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MonetaryGrant"
+ },
+ {
+ "@id": "schema:InvestmentOrDeposit"
+ },
+ {
+ "@id": "schema:LoanOrCredit"
+ },
+ {
+ "@id": "schema:MoneyTransfer"
+ },
+ {
+ "@id": "schema:DatedMoneySpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoOverlaps",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoOverlaps",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SingleRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "SingleRelease.",
+ "rdfs:label": "SingleRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemAU",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Australian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemAU",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:UKTrust",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "UKTrust: Non-profit type referring to a UK trust.",
+ "rdfs:label": "UKTrust",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ImageObject",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcmitype:Image"
+ },
+ "rdfs:comment": "An image file.",
+ "rdfs:label": "ImageObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:iso6523Code",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](http://schema.org/leiCode), [duns](http://schema.org/duns) and [vatID](http://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ",
+ "rdfs:label": "iso6523Code",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2915"
+ }
+ },
+ {
+ "@id": "schema:BookFormatType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The publication format of the book.",
+ "rdfs:label": "BookFormatType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:PaidLeave",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "PaidLeave: this is a benefit for paid leave.",
+ "rdfs:label": "PaidLeave",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:prescriptionStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the status of drug prescription, e.g. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc.",
+ "rdfs:label": "prescriptionStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DrugPrescriptionStatus"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EditedOrCroppedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'edited or cropped content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'edited or cropped content': The video has been edited or rearranged. This category applies to time edits, including editing multiple videos together to alter the story being told or editing out large portions from a video.\n\nFor an [[ImageObject]] to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[ImageObject]] with embedded text to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[AudioObject]] to be 'edited or cropped content': The audio has been edited or rearranged. This category applies to time edits, including editing multiple audio clips together to alter the story being told or editing out large portions from the recording.\n",
+ "rdfs:label": "EditedOrCroppedContent",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c12",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c12: Non-profit type referring to Benevolent Life Insurance Associations, Mutual Ditch or Irrigation Companies, Mutual or Cooperative Telephone Companies.",
+ "rdfs:label": "Nonprofit501c12",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:accommodationCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Category of an [[Accommodation]], following real estate conventions, e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).",
+ "rdfs:label": "accommodationCategory",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:category"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:VitalSign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Vital signs are measures of various physiological functions in order to assess the most basic body functions.",
+ "rdfs:label": "VitalSign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalSign"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasCourse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program.",
+ "rdfs:label": "hasCourse",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Course"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2483"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemMX",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Mexican size system for wearables.",
+ "rdfs:label": "WearableSizeSystemMX",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:GardenStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A garden store.",
+ "rdfs:label": "GardenStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:bioChemSimilarity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A similar BioChemEntity, e.g., obtained by fingerprint similarity algorithms.",
+ "rdfs:label": "bioChemSimilarity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:SearchRescueOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Search and Rescue organization of some kind.",
+ "rdfs:label": "SearchRescueOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3052"
+ }
+ },
+ {
+ "@id": "schema:TherapeuticProcedure",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/277132007"
+ },
+ "rdfs:comment": "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.",
+ "rdfs:label": "TherapeuticProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:diversityPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.",
+ "rdfs:label": "diversityPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BrainStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.",
+ "rdfs:label": "BrainStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:assemblyVersion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Associated product/technology version. E.g., .NET Framework 4.5.",
+ "rdfs:label": "assemblyVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:TreatmentsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Treatments or related therapies for a Topic.",
+ "rdfs:label": "TreatmentsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:drug",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifying a drug or medicine used in a medication procedure.",
+ "rdfs:label": "drug",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ },
+ {
+ "@id": "schema:DrugClass"
+ },
+ {
+ "@id": "schema:Patient"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:Recipe",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail.",
+ "rdfs:label": "Recipe",
+ "rdfs:subClassOf": {
+ "@id": "schema:HowTo"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupMaternity",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Maternity\" for wearables.",
+ "rdfs:label": "WearableSizeGroupMaternity",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ReplaceAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of editing a recipient by replacing an old object with a new object.",
+ "rdfs:label": "ReplaceAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UpdateAction"
+ }
+ },
+ {
+ "@id": "schema:Code",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
+ "rdfs:label": "Code",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:SoftwareSourceCode"
+ }
+ },
+ {
+ "@id": "schema:video",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An embedded video object.",
+ "rdfs:label": "video",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:Clip"
+ }
+ ]
+ },
+ {
+ "@id": "schema:median",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The median value.",
+ "rdfs:label": "median",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c16",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.",
+ "rdfs:label": "Nonprofit501c16",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:SizeSystemMetric",
+ "@type": "schema:SizeSystemEnumeration",
+ "rdfs:comment": "Metric size system.",
+ "rdfs:label": "SizeSystemMetric",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ChildCare",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Childcare center.",
+ "rdfs:label": "ChildCare",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:LocationFeatureSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Specifies a location feature by providing a structured value representing a feature of an accommodation as a property-value pair of varying degrees of formality.",
+ "rdfs:label": "LocationFeatureSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PropertyValue"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:percentile90",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 90th percentile value.",
+ "rdfs:label": "percentile90",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:GovernmentOffice",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A government office—for example, an IRS or DMV office.",
+ "rdfs:label": "GovernmentOffice",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:RemixAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "RemixAlbum.",
+ "rdfs:label": "RemixAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Date",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "Date"
+ },
+ {
+ "@id": "schema:OTC",
+ "@type": "schema:DrugPrescriptionStatus",
+ "rdfs:comment": "The character of a medical substance, typically a medicine, of being available over the counter or not.",
+ "rdfs:label": "OTC",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasMerchantReturnPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a MerchantReturnPolicy that may be applicable.",
+ "rdfs:label": "hasMerchantReturnPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:Taxon",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "A set of organisms asserted to represent a natural cohesive biological unit.",
+ "rdfs:label": "Taxon",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:cvdCollectionDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "collectiondate - Date for which patient counts are reported.",
+ "rdfs:label": "cvdCollectionDate",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:lesserOrEqual",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.",
+ "rdfs:label": "lesserOrEqual",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:AccountingService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Accountancy business.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).\n ",
+ "rdfs:label": "AccountingService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:videoFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).",
+ "rdfs:label": "videoFormat",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BroadcastEvent"
+ },
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:ScreeningEvent"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EventScheduled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default.",
+ "rdfs:label": "EventScheduled"
+ },
+ {
+ "@id": "schema:Vessel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.",
+ "rdfs:label": "Vessel",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:recordLabel",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/mo/label"
+ },
+ "rdfs:comment": "The label that issued the release.",
+ "rdfs:label": "recordLabel",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:associatedPathophysiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.",
+ "rdfs:label": "associatedPathophysiology",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementSleeve",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the sleeve length, for example of a shirt",
+ "rdfs:label": "WearableMeasurementSleeve",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ListPrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the list price (the price a product is actually advertised for) of an offered product.",
+ "rdfs:label": "ListPrice",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:CommunicateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.",
+ "rdfs:label": "CommunicateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:WebApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web applications.",
+ "rdfs:label": "WebApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:LodgingBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A lodging business, such as a motel, hotel, or inn.",
+ "rdfs:label": "LodgingBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Suspended",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Suspended.",
+ "rdfs:label": "Suspended",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Subscription",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the subscription pricing component of the total price for an offered product.",
+ "rdfs:label": "Subscription",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:FreeReturn",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that product returns are free of charge for the customer.",
+ "rdfs:label": "FreeReturn",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:isPartOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.",
+ "rdfs:label": "isPartOf",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HowToTool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tool used (but not consumed) when performing instructions for how to achieve a result.",
+ "rdfs:label": "HowToTool",
+ "rdfs:subClassOf": {
+ "@id": "schema:HowToItem"
+ }
+ },
+ {
+ "@id": "schema:InvestmentFund",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A company or fund that gathers capital from a number of investors to create a pool of money that is then re-invested into stocks, bonds and other assets.",
+ "rdfs:label": "InvestmentFund",
+ "rdfs:subClassOf": {
+ "@id": "schema:InvestmentOrDeposit"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoEquals",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship).",
+ "rdfs:label": "geoEquals",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:sportsEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The sports event where this action occurred.",
+ "rdfs:label": "sportsEvent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SportsEvent"
+ }
+ },
+ {
+ "@id": "schema:FailedActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.",
+ "rdfs:label": "FailedActionStatus"
+ },
+ {
+ "@id": "schema:RealEstateAgent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A real-estate agent.",
+ "rdfs:label": "RealEstateAgent",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:AdvertiserContentArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content.",
+ "rdfs:label": "AdvertiserContentArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Drawing",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A picture or diagram made with a pencil, pen, or crayon rather than paint.",
+ "rdfs:label": "Drawing",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:providesService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The service provided by this channel.",
+ "rdfs:label": "providesService",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:prescribingInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to prescribing information for the drug.",
+ "rdfs:label": "prescribingInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:RegisterAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of registering to be a user of a service, product or web page.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\\n* [[FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.",
+ "rdfs:label": "RegisterAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:pregnancyWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.",
+ "rdfs:label": "pregnancyWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:CommunityHealth",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas.",
+ "rdfs:label": "CommunityHealth",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:businessFunction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.",
+ "rdfs:label": "businessFunction",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:BusinessFunction"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:instrument",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The object that helped the agent perform the action. E.g. John wrote a book with *a pen*.",
+ "rdfs:label": "instrument",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:birthDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date of birth.",
+ "rdfs:label": "birthDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:pattern",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.",
+ "rdfs:label": "pattern",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:MortgageLoan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A loan in which property or real estate is used as collateral. (A loan securitized against some real estate.)",
+ "rdfs:label": "MortgageLoan",
+ "rdfs:subClassOf": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:CorrectionComment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[comment]] that corrects [[CreativeWork]].",
+ "rdfs:label": "CorrectionComment",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
+ }
+ },
+ {
+ "@id": "schema:Periodical",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.org/ontology/bibo/Periodical"
+ },
+ "rdfs:comment": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended to continue indefinitely, such as a magazine, scholarly journal, or newspaper.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "Periodical",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:verificationFactCheckingPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].",
+ "rdfs:label": "verificationFactCheckingPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:monthlyMinimumRepaymentAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month.",
+ "rdfs:label": "monthlyMinimumRepaymentAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BusStop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bus stop.",
+ "rdfs:label": "BusStop",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:offersPrescriptionByMail",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether prescriptions can be delivered by mail.",
+ "rdfs:label": "offersPrescriptionByMail",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanFormulary"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:OfficeEquipmentStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An office equipment store.",
+ "rdfs:label": "OfficeEquipmentStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:touristType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Attraction suitable for type(s) of tourist. E.g. children, visitors from a particular country, etc. ",
+ "rdfs:label": "touristType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TouristDestination"
+ },
+ {
+ "@id": "schema:TouristAttraction"
+ },
+ {
+ "@id": "schema:TouristTrip"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:editor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the Person who edited the CreativeWork.",
+ "rdfs:label": "editor",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:MisconceptionsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about common misconceptions and myths that are related to a topic.",
+ "rdfs:label": "MisconceptionsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:governmentBenefitsInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.",
+ "rdfs:label": "governmentBenefitsInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:GovernmentService"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:calories",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of calories.",
+ "rdfs:label": "calories",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Energy"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementHeight",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the height, for example the heel height of a shoe",
+ "rdfs:label": "WearableMeasurementHeight",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:unitCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.",
+ "rdfs:label": "unitCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ {
+ "@id": "schema:UnitPriceSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Church",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A church.",
+ "rdfs:label": "Church",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:countriesNotSupported",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "countriesNotSupported",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PrependAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of inserting at the beginning if an ordered collection.",
+ "rdfs:label": "PrependAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InsertAction"
+ }
+ },
+ {
+ "@id": "schema:Appearance",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Appearance assessment with clinical examination.",
+ "rdfs:label": "Appearance",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:dateModified",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.",
+ "rdfs:label": "dateModified",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:translationOfWork",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.",
+ "rdfs:label": "translationOfWork",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:workTranslation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:SkiResort",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A ski resort.",
+ "rdfs:label": "SkiResort",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:SportsActivityLocation"
+ },
+ {
+ "@id": "schema:Resort"
+ }
+ ]
+ },
+ {
+ "@id": "schema:legalStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The drug or supplement's legal status, including any controlled substance schedules that apply.",
+ "rdfs:label": "legalStatus",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DrugLegalStatus"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:printColumn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of the column in which the NewsArticle appears in the print edition.",
+ "rdfs:label": "printColumn",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:occupancy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person",
+ "rdfs:label": "occupancy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HotelRoom"
+ },
+ {
+ "@id": "schema:Suite"
+ },
+ {
+ "@id": "schema:Apartment"
+ },
+ {
+ "@id": "schema:SingleFamilyResidence"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:billingDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property).",
+ "rdfs:label": "billingDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Duration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:hasRepresentation",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A common representation such as a protein sequence or chemical structure for this entity. For images use schema.org/image.",
+ "rdfs:label": "hasRepresentation",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:creativeWorkStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.",
+ "rdfs:label": "creativeWorkStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/987"
+ }
+ },
+ {
+ "@id": "schema:PriceTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates different price types, for example list price, invoice price, and sale price.",
+ "rdfs:label": "PriceTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:isBasedOnUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.",
+ "rdfs:label": "isBasedOnUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:isBasedOn"
+ }
+ },
+ {
+ "@id": "schema:MedicalTrial",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical trial is a type of medical study that uses a scientific process to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.",
+ "rdfs:label": "MedicalTrial",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:HowTo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Instructions that explain how to achieve a result by performing a sequence of steps.",
+ "rdfs:label": "HowTo",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c7",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs.",
+ "rdfs:label": "Nonprofit501c7",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:eligibilityToWorkRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.",
+ "rdfs:label": "eligibilityToWorkRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ }
+ },
+ {
+ "@id": "schema:DanceGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.",
+ "rdfs:label": "DanceGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:PerformingGroup"
+ }
+ },
+ {
+ "@id": "schema:isFamilyFriendly",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether this content is family friendly.",
+ "rdfs:label": "isFamilyFriendly",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:blogPosts",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a post that is part of a [[Blog]]. Note that historically, what we term a \"Blog\" was once known as a \"weblog\", and that what we term a \"BlogPosting\" is now often colloquially referred to as a \"blog\".",
+ "rdfs:label": "blogPosts",
+ "schema:domainIncludes": {
+ "@id": "schema:Blog"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BlogPosting"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:blogPost"
+ }
+ },
+ {
+ "@id": "schema:hasBioPolymerSequence",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "A symbolic representation of a BioChemEntity. For example, a nucleotide sequence of a Gene or an amino acid sequence of a Protein.",
+ "rdfs:label": "hasBioPolymerSequence",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Protein"
+ },
+ {
+ "@id": "schema:Gene"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:addressCountry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1).",
+ "rdfs:label": "addressCountry",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Country"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:Photograph",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A photograph.",
+ "rdfs:label": "Photograph",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:HousePainter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A house painting service.",
+ "rdfs:label": "HousePainter",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:tissueSample",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of tissue sample required for the test.",
+ "rdfs:label": "tissueSample",
+ "schema:domainIncludes": {
+ "@id": "schema:PathologyTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:infectiousAgent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The actual infectious agent, such as a specific bacterium.",
+ "rdfs:label": "infectiousAgent",
+ "schema:domainIncludes": {
+ "@id": "schema:InfectiousDisease"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:driveWheelConfiguration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.",
+ "rdfs:label": "driveWheelConfiguration",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DriveWheelConfigurationValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:leaseLength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property.",
+ "rdfs:label": "leaseLength",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:RealEstateListing"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Duration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:OrderProblem",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that there is a problem with the order.",
+ "rdfs:label": "OrderProblem"
+ },
+ {
+ "@id": "schema:gtin12",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin12",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:operatingSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Operating systems supported (Windows 7, OS X 10.6, Android 1.6).",
+ "rdfs:label": "operatingSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:sizeSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The size system used to identify a product's size. Typically either a standard (for example, \"GS1\" or \"ISO-EN13402\"), country code (for example \"US\" or \"JP\"), or a measuring system (for example \"Metric\" or \"Imperial\").",
+ "rdfs:label": "sizeSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:SizeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:SizeSystemEnumeration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501a",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations.",
+ "rdfs:label": "Nonprofit501a",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:exifData",
+ "@type": "rdf:Property",
+ "rdfs:comment": "exif data for this object.",
+ "rdfs:label": "exifData",
+ "schema:domainIncludes": {
+ "@id": "schema:ImageObject"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:estimatedSalary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.",
+ "rdfs:label": "estimatedSalary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:MonetaryAmountDistribution"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:DiscussionForumPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A posting to a discussion forum.",
+ "rdfs:label": "DiscussionForumPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:SocialMediaPosting"
+ }
+ },
+ {
+ "@id": "schema:CohortStudy",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.",
+ "rdfs:label": "CohortStudy",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:numberOfAccommodationUnits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the total (available plus unavailable) number of accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAvailableAccommodationUnits]].",
+ "rdfs:label": "numberOfAccommodationUnits",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ApartmentComplex"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:Wednesday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Tuesday and Thursday.",
+ "rdfs:label": "Wednesday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q128"
+ }
+ },
+ {
+ "@id": "schema:landlord",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The owner of the real estate property.",
+ "rdfs:label": "landlord",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:RentAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:UnclassifiedAdultConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is suitable only for adults, without indicating why. Due to widespread use of \"adult\" as a euphemism for \"sexual\", many such items are likely suited also for the SexualContentConsideration code.",
+ "rdfs:label": "UnclassifiedAdultConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:featureList",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Features or modules provided by this application (and possibly required by other applications).",
+ "rdfs:label": "featureList",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:openingHours",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>.",
+ "rdfs:label": "openingHours",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LocalBusiness"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:maps",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "maps",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:hasMap"
+ }
+ },
+ {
+ "@id": "schema:TransitMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A transit map.",
+ "rdfs:label": "TransitMap"
+ },
+ {
+ "@id": "schema:serviceAudience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The audience eligible for this service.",
+ "rdfs:label": "serviceAudience",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Audience"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:audience"
+ }
+ },
+ {
+ "@id": "schema:RealEstateListing",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell).\n The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]].\n ",
+ "rdfs:label": "RealEstateListing",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ }
+ },
+ {
+ "@id": "schema:SellAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.",
+ "rdfs:label": "SellAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:ShareAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of distributing content to people for their amusement or edification.",
+ "rdfs:label": "ShareAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:Bakery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bakery.",
+ "rdfs:label": "Bakery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:isAccessibleForFree",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.",
+ "rdfs:label": "isAccessibleForFree",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:isSimilarTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another, functionally similar product (or multiple products).",
+ "rdfs:label": "isSimilarTo",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:WholesaleStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A wholesale store.",
+ "rdfs:label": "WholesaleStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:RejectAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n* [[AcceptAction]]: The antonym of RejectAction.",
+ "rdfs:label": "RejectAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:cvdNumTotBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numtotbeds - ALL HOSPITAL BEDS: Total number of all inpatient and outpatient beds, including all staffed, ICU, licensed, and overflow (surge) beds used for inpatients or outpatients.",
+ "rdfs:label": "cvdNumTotBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:WarrantyScope",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A range of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Labor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n ",
+ "rdfs:label": "WarrantyScope",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:ticketToken",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.",
+ "rdfs:label": "ticketToken",
+ "schema:domainIncludes": {
+ "@id": "schema:Ticket"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:expectedArrivalFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The earliest date the package may arrive.",
+ "rdfs:label": "expectedArrivalFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:diet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The diet used in this action.",
+ "rdfs:label": "diet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Diet"
+ }
+ },
+ {
+ "@id": "schema:SpeakableSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A SpeakableSpecification indicates (typically via [[xpath]] or [[cssSelector]]) sections of a document that are highlighted as particularly [[speakable]]. Instances of this type are expected to be used primarily as values of the [[speakable]] property.",
+ "rdfs:label": "SpeakableSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ }
+ },
+ {
+ "@id": "schema:DepartmentStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A department store.",
+ "rdfs:label": "DepartmentStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:numberOfLoanPayments",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of payments contractually required at origination to repay the loan. For monthly paying loans this is the number of months from the contractual first payment date to the maturity date.",
+ "rdfs:label": "numberOfLoanPayments",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:deathDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date of death.",
+ "rdfs:label": "deathDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:GasStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A gas station.",
+ "rdfs:label": "GasStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:PlanAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of planning the execution of an event/task/action/reservation/plan to a future date.",
+ "rdfs:label": "PlanAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:broadcastTimezone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts.",
+ "rdfs:label": "broadcastTimezone",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:relatedLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link related to this web page, for example to other related web pages.",
+ "rdfs:label": "relatedLink",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:author",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.",
+ "rdfs:label": "author",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Rating"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ratingExplanation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with \"fact check\" markup using [[ClaimReview]].",
+ "rdfs:label": "ratingExplanation",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2300"
+ }
+ },
+ {
+ "@id": "schema:additionalName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An additional name for a Person, can be used for a middle name.",
+ "rdfs:label": "additionalName",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:alternateName"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:starRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).",
+ "rdfs:label": "starRating",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FoodEstablishment"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:MotorcycleDealer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorcycle dealer.",
+ "rdfs:label": "MotorcycleDealer",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:MedicalOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical organization (physical or not), such as hospital, institution or clinic.",
+ "rdfs:label": "MedicalOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:secondaryPrevention",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.",
+ "rdfs:label": "secondaryPrevention",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:regionsAllowed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166).",
+ "rdfs:label": "regionsAllowed",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:OfferCatalog",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.",
+ "rdfs:label": "OfferCatalog",
+ "rdfs:subClassOf": {
+ "@id": "schema:ItemList"
+ }
+ },
+ {
+ "@id": "schema:educationalCredentialAwarded",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.",
+ "rdfs:label": "educationalCredentialAwarded",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Course"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:infectiousAgentClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The class of infectious agent (bacteria, prion, etc.) that causes the disease.",
+ "rdfs:label": "infectiousAgentClass",
+ "schema:domainIncludes": {
+ "@id": "schema:InfectiousDisease"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:InfectiousAgentClass"
+ }
+ },
+ {
+ "@id": "schema:GeneralContractor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A general contractor.",
+ "rdfs:label": "GeneralContractor",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:Online",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: Online. Server is available.",
+ "rdfs:label": "Online"
+ },
+ {
+ "@id": "schema:printEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The edition of the print product in which the NewsArticle appears.",
+ "rdfs:label": "printEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Observation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Instances of the class [[Observation]] are used to specify observations about an entity (which may or may not be an instance of a [[StatisticalPopulation]]), at a particular time. The principal properties of an [[Observation]] are [[observedNode]], [[measuredProperty]], [[measuredValue]] (or [[median]], etc.) and [[observationDate]] ([[measuredProperty]] properties can, but need not always, be W3C RDF Data Cube \"measure properties\", as in the [lifeExpectancy example](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).\nSee also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ",
+ "rdfs:label": "Observation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:contentUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Actual bytes of the media object, for example the image file or video file.",
+ "rdfs:label": "contentUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:step",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.",
+ "rdfs:label": "step",
+ "schema:domainIncludes": {
+ "@id": "schema:HowTo"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:HowToSection"
+ },
+ {
+ "@id": "schema:HowToStep"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:validIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area where a permit or similar thing is valid.",
+ "rdfs:label": "validIn",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Permit"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:artMedium",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The material used. (E.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)",
+ "rdfs:label": "artMedium",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:material"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberOfAxles",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of axles.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfAxles",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:CategoryCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Category Code.",
+ "rdfs:label": "CategoryCode",
+ "rdfs:subClassOf": {
+ "@id": "schema:DefinedTerm"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:DrinkAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of swallowing liquids.",
+ "rdfs:label": "DrinkAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:loanPaymentFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Frequency of payments due, i.e. number of months between payments. This is defined as a frequency, i.e. the reciprocal of a period of time.",
+ "rdfs:label": "loanPaymentFrequency",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:unsaturatedFatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of unsaturated fat.",
+ "rdfs:label": "unsaturatedFatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:PlayAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, competition or exercise.\\n\\nRelated actions:\\n\\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.",
+ "rdfs:label": "PlayAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:typicalCreditsPerTerm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of credits or units a full-time student would be expected to take in 1 term however 'term' is defined by the institution.",
+ "rdfs:label": "typicalCreditsPerTerm",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:StructuredValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:applicableCountry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A country where a particular merchant return policy applies to, for example the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "applicableCountry",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Country"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3001"
+ }
+ },
+ {
+ "@id": "schema:scheduledTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time the object is scheduled to.",
+ "rdfs:label": "scheduledTime",
+ "schema:domainIncludes": {
+ "@id": "schema:PlanAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c28",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts.",
+ "rdfs:label": "Nonprofit501c28",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:object",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). E.g. John read *a book*.",
+ "rdfs:label": "object",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:Report",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Report generated by governmental or non-governmental organization.",
+ "rdfs:label": "Report",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:contentReferenceTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.",
+ "rdfs:label": "contentReferenceTime",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1050"
+ }
+ },
+ {
+ "@id": "schema:sizeGroup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The size group (also known as \"size type\") for a product's size. Size groups are common in the fashion industry to define size segments and suggested audiences for wearable products. Multiple values can be combined, for example \"men's big and tall\", \"petite maternity\" or \"regular\"",
+ "rdfs:label": "sizeGroup",
+ "schema:domainIncludes": {
+ "@id": "schema:SizeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SizeGroupEnumeration"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:biologicalRole",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A role played by the BioChemEntity within a biological context.",
+ "rdfs:label": "biologicalRole",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ }
+ },
+ {
+ "@id": "schema:OriginalShippingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay the original shipping costs when returning a product.",
+ "rdfs:label": "OriginalShippingFees",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:DaySpa",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A day spa.",
+ "rdfs:label": "DaySpa",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:event",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Upcoming or past event associated with this place, organization, or action.",
+ "rdfs:label": "event",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PlayAction"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:InviteAction"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:LeaveAction"
+ },
+ {
+ "@id": "schema:InformAction"
+ },
+ {
+ "@id": "schema:JoinAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:servesCuisine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The cuisine of the restaurant.",
+ "rdfs:label": "servesCuisine",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:duns",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
+ "rdfs:label": "duns",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:performerIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Event that this person is a performer or participant in.",
+ "rdfs:label": "performerIn",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:inChIKey",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "InChIKey is a hashed version of the full InChI (using the SHA-256 algorithm).",
+ "rdfs:label": "inChIKey",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:carrier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.",
+ "rdfs:label": "carrier",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ParcelDelivery"
+ },
+ {
+ "@id": "schema:Flight"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:provider"
+ }
+ },
+ {
+ "@id": "schema:photo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A photograph of this place.",
+ "rdfs:label": "photo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:image"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Photograph"
+ },
+ {
+ "@id": "schema:ImageObject"
+ }
+ ]
+ },
+ {
+ "@id": "schema:correction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.",
+ "rdfs:label": "correction",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CorrectionComment"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
+ }
+ ]
+ },
+ {
+ "@id": "schema:iupacName",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "Systematic method of naming chemical compounds as recommended by the International Union of Pure and Applied Chemistry (IUPAC).",
+ "rdfs:label": "iupacName",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Geriatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.",
+ "rdfs:label": "Geriatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:returnMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return method offered, specified from an enumeration.",
+ "rdfs:label": "returnMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnMethodEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:supplyTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The area to which the artery supplies blood.",
+ "rdfs:label": "supplyTo",
+ "schema:domainIncludes": {
+ "@id": "schema:Artery"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:alumni",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Alumni of an organization.",
+ "rdfs:label": "alumni",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:EducationalOrganization"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:alumniOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:AppendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of inserting at the end if an ordered collection.",
+ "rdfs:label": "AppendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InsertAction"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupWomens",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Womens\" for wearables.",
+ "rdfs:label": "WearableSizeGroupWomens",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Occupation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A profession, may involve prolonged training and/or a formal qualification.",
+ "rdfs:label": "Occupation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:VisualArtwork",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A work of art that is primarily visual in character.",
+ "rdfs:label": "VisualArtwork",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass"
+ }
+ },
+ {
+ "@id": "schema:sdDatePublished",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]",
+ "rdfs:label": "sdDatePublished",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
+ }
+ },
+ {
+ "@id": "schema:suggestedGender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The suggested gender of the intended person or audience, for example \"male\", \"female\", or \"unisex\".",
+ "rdfs:label": "suggestedGender",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GenderType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ethicsPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.",
+ "rdfs:label": "ethicsPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:NewsMediaOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ },
+ {
+ "@id": "schema:adverseOutcome",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or otherwise life-threatening or requiring immediate medical attention), tag it as a seriousAdverseOutcome instead.",
+ "rdfs:label": "adverseOutcome",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ {
+ "@id": "schema:MedicalDevice"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:molecularFormula",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "The empirical formula is the simplest whole number ratio of all the atoms in a molecule.",
+ "rdfs:label": "molecularFormula",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:populationType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the populationType common to all members of a [[StatisticalPopulation]].",
+ "rdfs:label": "populationType",
+ "schema:domainIncludes": {
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Class"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:RadiationTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of care using radiation aimed at improving a health condition.",
+ "rdfs:label": "RadiationTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:leiCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.",
+ "rdfs:label": "leiCode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BodyMeasurementHeight",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Body height (measured between crown of head and soles of feet). Used, for example, to fit jackets.",
+ "rdfs:label": "BodyMeasurementHeight",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:OfferShippingDetails",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "OfferShippingDetails represents information about shipping destinations.\n\nMultiple of these entities can be used to represent different shipping rates for different destinations:\n\nOne entity for Alaska/Hawaii. A different one for continental US. A different one for all France.\n\nMultiple of these entities can be used to represent different shipping costs and delivery times.\n\nTwo entities that are identical but differ in rate and time:\n\nE.g. Cheaper and slower: $5 in 5-7 days\nor Fast and expensive: $15 in 1-2 days.",
+ "rdfs:label": "OfferShippingDetails",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c5",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations.",
+ "rdfs:label": "Nonprofit501c5",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c25",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents.",
+ "rdfs:label": "Nonprofit501c25",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:MedicalResearcher",
+ "@type": "schema:MedicalAudienceType",
+ "rdfs:comment": "Medical researchers.",
+ "rdfs:label": "MedicalResearcher",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:error",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For failed actions, more information on the cause of the failure.",
+ "rdfs:label": "error",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:transmissionMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.",
+ "rdfs:label": "transmissionMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:InfectiousDisease"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:postalCodeRange",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A defined range of postal codes.",
+ "rdfs:label": "postalCodeRange",
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalCodeRangeSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:RadioSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.",
+ "rdfs:label": "RadioSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:MedicalSymptom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.",
+ "rdfs:label": "MedicalSymptom",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalSignOrSymptom"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:sugarContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of sugar.",
+ "rdfs:label": "sugarContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c1",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c1: Non-profit type referring to Corporations Organized Under Act of Congress, including Federal Credit Unions and National Farm Loan Associations.",
+ "rdfs:label": "Nonprofit501c1",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:breadcrumb",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A set of links that can help a user understand and navigate a website hierarchy.",
+ "rdfs:label": "breadcrumb",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BreadcrumbList"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SteeringPositionValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A value indicating a steering position.",
+ "rdfs:label": "SteeringPositionValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:APIReference",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Reference documentation for application programming interfaces (APIs).",
+ "rdfs:label": "APIReference",
+ "rdfs:subClassOf": {
+ "@id": "schema:TechArticle"
+ }
+ },
+ {
+ "@id": "schema:Fungus",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic fungus.",
+ "rdfs:label": "Fungus",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskScore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.",
+ "rdfs:label": "MedicalRiskScore",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:priceComponent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node.",
+ "rdfs:label": "priceComponent",
+ "schema:domainIncludes": {
+ "@id": "schema:CompoundPriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:CreativeWorkSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as TV, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n\t ",
+ "rdfs:label": "CreativeWorkSeries",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Series"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Hotel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hotel is an establishment that provides lodging paid on a short-term basis (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Hotel",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:quarantineGuidelines",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Guidelines about quarantine rules, e.g. in the context of a pandemic.",
+ "rdfs:label": "quarantineGuidelines",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:travelBans",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about travel bans, e.g. in the context of a pandemic.",
+ "rdfs:label": "travelBans",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:AskAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n* [[ReplyAction]]: Appears generally as a response to AskAction.",
+ "rdfs:label": "AskAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:target",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a target EntryPoint, or url, for an Action.",
+ "rdfs:label": "target",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:EntryPoint"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MediaGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Media gallery page. A mixed-media page that can contain media such as images, videos, and other multimedia.",
+ "rdfs:label": "MediaGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:CollectionPage"
+ }
+ },
+ {
+ "@id": "schema:validThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.",
+ "rdfs:label": "validThrough",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:SizeGroupEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size groups for various product categories.",
+ "rdfs:label": "SizeGroupEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementHand",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum hand girth (measured over the knuckles of the open right hand excluding thumb, fingers together). Used, for example, to fit gloves.",
+ "rdfs:label": "BodyMeasurementHand",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:SchoolDistrict",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A School District is an administrative area for the administration of schools.",
+ "rdfs:label": "SchoolDistrict",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2500"
+ }
+ },
+ {
+ "@id": "schema:comment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Comments, typically from users.",
+ "rdfs:label": "comment",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:RsvpAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Comment"
+ }
+ },
+ {
+ "@id": "schema:trialDesign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifics about the trial design (enumerated).",
+ "rdfs:label": "trialDesign",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTrial"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTrialDesign"
+ }
+ },
+ {
+ "@id": "schema:LinkRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Role that represents a Web link, e.g. as expressed via the 'url' property. Its linkRelationship property can indicate URL-based and plain textual link types, e.g. those in IANA link registry or others such as 'amphtml'. This structure provides a placeholder where details from HTML's link element can be represented outside of HTML, e.g. in JSON-LD feeds.",
+ "rdfs:label": "LinkRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1045"
+ }
+ },
+ {
+ "@id": "schema:TVEpisode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A TV episode which can be part of a series or season.",
+ "rdfs:label": "TVEpisode",
+ "rdfs:subClassOf": {
+ "@id": "schema:Episode"
+ }
+ },
+ {
+ "@id": "schema:productID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The product identifier, such as ISBN. For example: ``` meta itemprop=\"productID\" content=\"isbn:123-456-789\" ```.",
+ "rdfs:label": "productID",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:productionCompany",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The production company or studio responsible for the item, e.g. series, video game, episode etc.",
+ "rdfs:label": "productionCompany",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:FMRadioChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio channel that uses FM.",
+ "rdfs:label": "FMRadioChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:RadioChannel"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:codingSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The coding system, e.g. 'ICD-10'.",
+ "rdfs:label": "codingSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCode"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:countryOfOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The country of origin of something, including products as well as creative works such as movie and TV content.\n\nIn the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.\n\nIn the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.",
+ "rdfs:label": "countryOfOrigin",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:TVSeason"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Country"
+ }
+ },
+ {
+ "@id": "schema:WritePermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to write or edit the document.",
+ "rdfs:label": "WritePermission"
+ },
+ {
+ "@id": "schema:subEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.",
+ "rdfs:label": "subEvent",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:superEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:activityDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Length of time to engage in the activity.",
+ "rdfs:label": "activityDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Duration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:vatID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Value-added Tax ID of the organization or person.",
+ "rdfs:label": "vatID",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:engineType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of engine or engines powering the vehicle.",
+ "rdfs:label": "engineType",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:cvdFacilityCounty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Name of the County of the NHSN facility that this data record applies to. Use [[cvdFacilityId]] to identify the facility. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.",
+ "rdfs:label": "cvdFacilityCounty",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:Menu",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured representation of food or drink items available from a FoodEstablishment.",
+ "rdfs:label": "Menu",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:vehicleSeatingCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons.",
+ "rdfs:label": "vehicleSeatingCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Clip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short TV or radio program or a segment/part of a program.",
+ "rdfs:label": "Clip",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:DownloadAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of downloading an object.",
+ "rdfs:label": "DownloadAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:UserTweets",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserTweets",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:hasDefinedTerm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A Defined Term contained in this term set.",
+ "rdfs:label": "hasDefinedTerm",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Taxon"
+ },
+ {
+ "@id": "schema:DefinedTermSet"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:PaymentStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.",
+ "rdfs:label": "PaymentStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:valueName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.",
+ "rdfs:label": "valueName",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:credentialCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term.",
+ "rdfs:label": "credentialCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:Anesthesia",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to study of anesthetics and their application.",
+ "rdfs:label": "Anesthesia",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:overdosage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.",
+ "rdfs:label": "overdosage",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemCN",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Chinese size system for wearables.",
+ "rdfs:label": "WearableSizeSystemCN",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:serviceSmsNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number to access the service by text message.",
+ "rdfs:label": "serviceSmsNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ }
+ },
+ {
+ "@id": "schema:VinylFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "VinylFormat.",
+ "rdfs:label": "VinylFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:procedure",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the procedure involved in setting up, using, and/or installing the device.",
+ "rdfs:label": "procedure",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalDevice"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:FourWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.",
+ "rdfs:label": "FourWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:webFeed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom.",
+ "rdfs:label": "webFeed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ {
+ "@id": "schema:PodcastSeries"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DataFeed"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
+ },
+ {
+ "@id": "schema:partOfInvoice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The order is being paid as part of the referenced Invoice.",
+ "rdfs:label": "partOfInvoice",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Invoice"
+ }
+ },
+ {
+ "@id": "schema:availableService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical service available from this provider.",
+ "rdfs:label": "availableService",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Physician"
+ },
+ {
+ "@id": "schema:Hospital"
+ },
+ {
+ "@id": "schema:MedicalClinic"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalTherapy"
+ },
+ {
+ "@id": "schema:MedicalTest"
+ },
+ {
+ "@id": "schema:MedicalProcedure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PerformingArtsTheater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A theater or other performing art center.",
+ "rdfs:label": "PerformingArtsTheater",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:availableTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A diagnostic test or procedure offered by this lab.",
+ "rdfs:label": "availableTest",
+ "schema:domainIncludes": {
+ "@id": "schema:DiagnosticLab"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
+ }
+ },
+ {
+ "@id": "schema:MedicalDevicePurpose",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Categories of medical devices, organized by the purpose or intended use of the device.",
+ "rdfs:label": "MedicalDevicePurpose",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Zoo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A zoo.",
+ "rdfs:label": "Zoo",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:BasicIncome",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "BasicIncome: this is a benefit for basic income.",
+ "rdfs:label": "BasicIncome",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:Flexibility",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged in to improve joint and muscle flexibility.",
+ "rdfs:label": "Flexibility",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:JoinAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent joins an event/group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.",
+ "rdfs:label": "JoinAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:IceCreamShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An ice cream shop.",
+ "rdfs:label": "IceCreamShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:applicationSuite",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of the application suite to which the application belongs (e.g. Excel belongs to Office).",
+ "rdfs:label": "applicationSuite",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:HinduTemple",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Hindu temple.",
+ "rdfs:label": "HinduTemple",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:hasAdultConsideration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Used to tag an item to be intended or suitable for consumption or use by adults only.",
+ "rdfs:label": "hasAdultConsideration",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdultOrientedEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:encodesCreativeWork",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CreativeWork encoded by this media object.",
+ "rdfs:label": "encodesCreativeWork",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:encoding"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:timeRequired",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.",
+ "rdfs:label": "timeRequired",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:signOrSymptom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.",
+ "rdfs:label": "signOrSymptom",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSignOrSymptom"
+ }
+ },
+ {
+ "@id": "schema:significantLinks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
+ "rdfs:label": "significantLinks",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:significantLink"
+ }
+ },
+ {
+ "@id": "schema:diseasePreventionInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about disease prevention.",
+ "rdfs:label": "diseasePreventionInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:broadcastFrequencyValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The frequency in MHz for a particular broadcast.",
+ "rdfs:label": "broadcastFrequencyValue",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastFrequencySpecification"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:NarcoticConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item is a narcotic as defined by the [1961 UN convention](https://www.incb.org/incb/en/narcotic-drugs/Yellowlist/yellow-list.html), for example marijuana or heroin.",
+ "rdfs:label": "NarcoticConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:CancelAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of asserting that a future event/action is no longer going to happen.\\n\\nRelated actions:\\n\\n* [[ConfirmAction]]: The antonym of CancelAction.",
+ "rdfs:label": "CancelAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlanAction"
+ }
+ },
+ {
+ "@id": "schema:RadioSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Season dedicated to radio broadcast and associated online delivery.",
+ "rdfs:label": "RadioSeason",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ },
+ {
+ "@id": "schema:Dentist",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A dentist.",
+ "rdfs:label": "Dentist",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:LocalBusiness"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WebPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.",
+ "rdfs:label": "WebPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c11",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations.",
+ "rdfs:label": "Nonprofit501c11",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:costOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.",
+ "rdfs:label": "costOrigin",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DrugClass",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.",
+ "rdfs:label": "DrugClass",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Musculoskeletal",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.",
+ "rdfs:label": "Musculoskeletal",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:episodes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An episode of a TV/radio series or season.",
+ "rdfs:label": "episodes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Episode"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:episode"
+ }
+ },
+ {
+ "@id": "schema:numberOfPreviousOwners",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of owners of the vehicle, including the current one.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfPreviousOwners",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Game",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.",
+ "rdfs:label": "Game",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:CityHall",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A city hall.",
+ "rdfs:label": "CityHall",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:requiredMaxAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Audiences defined by a person's maximum age.",
+ "rdfs:label": "requiredMaxAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:PharmacySpecialty",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The practice or art and science of preparing and dispensing drugs and medicines.",
+ "rdfs:label": "PharmacySpecialty",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:subStageSuffix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The substage, e.g. 'a' for Stage IIIa.",
+ "rdfs:label": "subStageSuffix",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalConditionStage"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:significance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.",
+ "rdfs:label": "significance",
+ "schema:domainIncludes": {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:numConstraints",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the number of constraints (not counting [[populationType]]) defined for a particular [[StatisticalPopulation]]. This helps applications understand if they have access to a sufficiently complete description of a [[StatisticalPopulation]].",
+ "rdfs:label": "numConstraints",
+ "schema:domainIncludes": {
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:partOfSeason",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The season to which this episode belongs.",
+ "rdfs:label": "partOfSeason",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:Clip"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ },
+ {
+ "@id": "schema:HowToDirection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A direction indicating a single action to do in the instructions for how to achieve a result.",
+ "rdfs:label": "HowToDirection",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ListItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MoveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.",
+ "rdfs:label": "MoveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:BuyAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.",
+ "rdfs:label": "BuyAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501e",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations.",
+ "rdfs:label": "Nonprofit501e",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:knowsLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).",
+ "rdfs:label": "knowsLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Language"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HearingImpairedSupported",
+ "@type": "schema:ContactPointOption",
+ "rdfs:comment": "Uses devices to support users with hearing impairments.",
+ "rdfs:label": "HearingImpairedSupported"
+ },
+ {
+ "@id": "schema:Nonprofit501c3",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c3: Non-profit type referring to Religious, Educational, Charitable, Scientific, Literary, Testing for Public Safety, Fostering National or International Amateur Sports Competition, or Prevention of Cruelty to Children or Animals Organizations.",
+ "rdfs:label": "Nonprofit501c3",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Manuscript",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A book, document, or piece of music written by hand rather than typed or printed.",
+ "rdfs:label": "Manuscript",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:CompilationAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "CompilationAlbum.",
+ "rdfs:label": "CompilationAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:BookSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A series of books. Included books can be indicated with the hasPart property.",
+ "rdfs:label": "BookSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:typicalAgeRange",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical expected age range, e.g. '7-9', '11-'.",
+ "rdfs:label": "typicalAgeRange",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:recommendationStrength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Strength of the guideline's recommendation (e.g. 'class I').",
+ "rdfs:label": "recommendationStrength",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuidelineRecommendation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:postalCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The postal code. For example, 94043.",
+ "rdfs:label": "postalCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PostalAddress"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:GeoShape"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19Died",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location.",
+ "rdfs:label": "cvdNumC19Died",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:ReturnAtKiosk",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be made at a kiosk.",
+ "rdfs:label": "ReturnAtKiosk",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:totalPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "totalPrice",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:Ticket"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TouristDestination",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist destination. In principle any [[Place]] can be a [[TouristDestination]] from a [[City]], Region or [[Country]] to an [[AmusementPark]] or [[Hotel]]. This Type can be used on its own to describe a general [[TouristDestination]], or be used as an [[additionalType]] to add tourist relevant properties to any other [[Place]]. A [[TouristDestination]] is defined as a [[Place]] that contains, or is colocated with, one or more [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.\n (See examples below.)",
+ "rdfs:label": "TouristDestination",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:liveBlogUpdate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An update to the LiveBlog.",
+ "rdfs:label": "liveBlogUpdate",
+ "schema:domainIncludes": {
+ "@id": "schema:LiveBlogPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BlogPosting"
+ }
+ },
+ {
+ "@id": "schema:businessDays",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Days of the week when the merchant typically operates, indicated via opening hours markup.",
+ "rdfs:label": "businessDays",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:RsvpResponseType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.",
+ "rdfs:label": "RsvpResponseType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:RadioBroadcastService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A delivery service through which radio content is provided via broadcast over the air or online.",
+ "rdfs:label": "RadioBroadcastService",
+ "rdfs:subClassOf": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
+ }
+ },
+ {
+ "@id": "schema:NonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.",
+ "rdfs:label": "NonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:MusicStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music store.",
+ "rdfs:label": "MusicStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:catalogNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The catalog number for the release.",
+ "rdfs:label": "catalogNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:alignmentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.",
+ "rdfs:label": "alignmentType",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:containedInPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The basic containment relation between a place and one that contains it.",
+ "rdfs:label": "containedInPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:containsPlace"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:genre",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Genre of the creative work, broadcast channel or group.",
+ "rdfs:label": "genre",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BroadcastChannel"
+ },
+ {
+ "@id": "schema:MusicGroup"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:itemListOrder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type of ordering (e.g. Ascending, Descending, Unordered).",
+ "rdfs:label": "itemListOrder",
+ "schema:domainIncludes": {
+ "@id": "schema:ItemList"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemListOrderType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:returnShippingFeesAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Amount of shipping costs for product returns (for any reason). Applicable when property [[returnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "returnShippingFeesAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:InstallAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of installing an application.",
+ "rdfs:label": "InstallAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:Nursing",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A health profession of a person formally educated and trained in the care of the sick or infirm person.",
+ "rdfs:label": "Nursing",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:targetCollection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The collection target of the action.",
+ "rdfs:label": "targetCollection",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:UpdateAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:Message",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single message from a sender to one or more organizations or people.",
+ "rdfs:label": "Message",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:educationalRole",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An educationalRole of an EducationalAudience.",
+ "rdfs:label": "educationalRole",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:isInvolvedInBiologicalProcess",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Biological process this BioChemEntity is involved in; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "isInvolvedInBiologicalProcess",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:maximumEnrollment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The maximum number of students who may be enrolled in the program.",
+ "rdfs:label": "maximumEnrollment",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:BarOrPub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bar or pub.",
+ "rdfs:label": "BarOrPub",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:trainName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of the train (e.g. The Orient Express).",
+ "rdfs:label": "trainName",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:utterances",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].",
+ "rdfs:label": "utterances",
+ "schema:domainIncludes": {
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:IndividualProduct",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single, identifiable product instance (e.g. a laptop with a particular serial number).",
+ "rdfs:label": "IndividualProduct",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:suggestedAnswer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.",
+ "rdfs:label": "suggestedAnswer",
+ "schema:domainIncludes": {
+ "@id": "schema:Question"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Answer"
+ },
+ {
+ "@id": "schema:ItemList"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SportsTeam",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Organization: Sports team.",
+ "rdfs:label": "SportsTeam",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsOrganization"
+ }
+ },
+ {
+ "@id": "schema:purchaseDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date the item, e.g. vehicle, was purchased by the current owner.",
+ "rdfs:label": "purchaseDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Vehicle"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:NewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.\n\nA more detailed overview of [schema.org News markup](/docs/news.html) is also available.\n",
+ "rdfs:label": "NewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HairSalon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hair salon.",
+ "rdfs:label": "HairSalon",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:UseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of applying an object to its intended purpose.",
+ "rdfs:label": "UseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:reservedTicket",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A ticket associated with the reservation.",
+ "rdfs:label": "reservedTicket",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Ticket"
+ }
+ },
+ {
+ "@id": "schema:httpMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.",
+ "rdfs:label": "httpMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:SoundtrackAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "SoundtrackAlbum.",
+ "rdfs:label": "SoundtrackAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:HowToStep",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.",
+ "rdfs:label": "HowToStep",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ListItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HardwareStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hardware store.",
+ "rdfs:label": "HardwareStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Virus",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic virus that causes viral infection.",
+ "rdfs:label": "Virus",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:EndorsementRating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \"critic's pick\" blog, a\n\"Like\" or \"+1\" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by\nsome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].\n\nAn [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,\nendorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.\n",
+ "rdfs:label": "EndorsementRating",
+ "rdfs:subClassOf": {
+ "@id": "schema:Rating"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1293"
+ }
+ },
+ {
+ "@id": "schema:Brewery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Brewery.",
+ "rdfs:label": "Brewery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:Country",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A country.",
+ "rdfs:label": "Country",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:BoatTerminal",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A terminal for boats, ships, and other water vessels.",
+ "rdfs:label": "BoatTerminal",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:Play",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A play is a form of literature, usually consisting of dialogue between characters, intended for theatrical performance rather than just reading. Note: A performance of a Play would be a [[TheaterEvent]] or [[BroadcastEvent]] - the *Play* being the [[workPerformed]].",
+ "rdfs:label": "Play",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1816"
+ }
+ },
+ {
+ "@id": "schema:producer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).",
+ "rdfs:label": "producer",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ParkingFacility",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A parking lot or other parking facility.",
+ "rdfs:label": "ParkingFacility",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:MedicalDevice",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/63653004"
+ },
+ "rdfs:comment": "Any object used in a medical capacity, such as to diagnose or treat a patient.",
+ "rdfs:label": "MedicalDevice",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Winery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A winery.",
+ "rdfs:label": "Winery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:targetPopulation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.",
+ "rdfs:label": "targetPopulation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DoseSchedule"
+ },
+ {
+ "@id": "schema:DietarySupplement"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:CheckOutAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check-in) or place (e.g. hotel).\\n\\nRelated actions:\\n\\n* [[CheckInAction]]: The antonym of CheckOutAction.\\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.",
+ "rdfs:label": "CheckOutAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:programType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of educational or occupational program. For example, classroom, internship, alternance, etc.",
+ "rdfs:label": "programType",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ }
+ },
+ {
+ "@id": "schema:coverageStartTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.",
+ "rdfs:label": "coverageStartTime",
+ "schema:domainIncludes": {
+ "@id": "schema:LiveBlogPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:ArchiveOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "ArchiveOrganization"
+ },
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:bodyType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).",
+ "rdfs:label": "bodyType",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:PaymentPastDue",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment is due and considered late.",
+ "rdfs:label": "PaymentPastDue"
+ },
+ {
+ "@id": "schema:musicGroupMember",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A member of a music group—for example, John, Paul, George, or Ringo.",
+ "rdfs:label": "musicGroupMember",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicGroup"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:member"
+ }
+ },
+ {
+ "@id": "schema:workPresented",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The movie presented during this event.",
+ "rdfs:label": "workPresented",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workFeatured"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ScreeningEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Movie"
+ }
+ },
+ {
+ "@id": "schema:LoanOrCredit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges.",
+ "rdfs:label": "LoanOrCredit",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:associatedDisease",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Disease associated to this BioChemEntity. Such disease can be a MedicalCondition or a URL. If you want to add an evidence supporting the association, please use PropertyValue.",
+ "rdfs:label": "associatedDisease",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalCondition"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:StatusEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Lists or enumerations dealing with status types.",
+ "rdfs:label": "StatusEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2604"
+ }
+ },
+ {
+ "@id": "schema:GroceryStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A grocery store.",
+ "rdfs:label": "GroceryStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:applicationSubCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Subcategory of the application, e.g. 'Arcade Game'.",
+ "rdfs:label": "applicationSubCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:includesObject",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].",
+ "rdfs:label": "includesObject",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ProductCollection"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:schemaVersion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to\n indicate the use of a specific schema.org release, e.g. ```10.0``` as a simple string, or more explicitly via URL, ```http://schema.org/docs/releases.html#v10.0```. There may be situations in which other schemas might usefully be referenced this way, e.g. ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/``` but this has not been carefully explored in the community.",
+ "rdfs:label": "schemaVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EffectivenessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the effectiveness-related aspects of a health topic.",
+ "rdfs:label": "EffectivenessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:audience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An intended audience, i.e. a group for whom something was created.",
+ "rdfs:label": "audience",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:PlayAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:parentItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The parent of a question, answer or item in general.",
+ "rdfs:label": "parentItem",
+ "schema:domainIncludes": {
+ "@id": "schema:Comment"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Comment"
+ }
+ },
+ {
+ "@id": "schema:gamePlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The electronic systems used to play video games.",
+ "rdfs:label": "gamePlatform",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OccupationalTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems.",
+ "rdfs:label": "OccupationalTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:VenueMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A venue map (e.g. for malls, auditoriums, museums, etc.).",
+ "rdfs:label": "VenueMap"
+ },
+ {
+ "@id": "schema:courseCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).",
+ "rdfs:label": "courseCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Course"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EventMovedOnline",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online.",
+ "rdfs:label": "EventMovedOnline"
+ },
+ {
+ "@id": "schema:functionalClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The degree of mobility the joint allows.",
+ "rdfs:label": "functionalClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Joint"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalEntity"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Barcode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An image of a visual machine-readable code such as a barcode or QR code.",
+ "rdfs:label": "Barcode",
+ "rdfs:subClassOf": {
+ "@id": "schema:ImageObject"
+ }
+ },
+ {
+ "@id": "schema:VeterinaryCare",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A vet's office.",
+ "rdfs:label": "VeterinaryCare",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:encoding",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.",
+ "rdfs:label": "encoding",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:encodesCreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:ingredients",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
+ "rdfs:label": "ingredients",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:supply"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:recipeIngredient"
+ }
+ },
+ {
+ "@id": "schema:BeautySalon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Beauty salon.",
+ "rdfs:label": "BeautySalon",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:Vehicle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.",
+ "rdfs:label": "Vehicle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ }
+ },
+ {
+ "@id": "schema:WebSite",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.",
+ "rdfs:label": "WebSite",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Place",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Entities that have a somewhat fixed, physical extension.",
+ "rdfs:label": "Place",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:correctionsPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.",
+ "rdfs:label": "correctionsPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:UserInteraction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserInteraction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:Electrician",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An electrician.",
+ "rdfs:label": "Electrician",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryE",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryE",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:publisherImprint",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The publishing division which published the comic.",
+ "rdfs:label": "publisherImprint",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:BusinessEntityType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Business\\n* http://purl.org/goodrelations/v1#Enduser\\n* http://purl.org/goodrelations/v1#PublicInstitution\\n* http://purl.org/goodrelations/v1#Reseller\n\t ",
+ "rdfs:label": "BusinessEntityType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:attendee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization attending the event.",
+ "rdfs:label": "attendee",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:possibleTreatment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A possible treatment to address this condition, sign or symptom.",
+ "rdfs:label": "possibleTreatment",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalSignOrSymptom"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:ReturnAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).",
+ "rdfs:label": "ReturnAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:PerformanceRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.",
+ "rdfs:label": "PerformanceRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ }
+ },
+ {
+ "@id": "schema:MedicalBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include different businesses run by health professionals.",
+ "rdfs:label": "MedicalBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalClinic",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well.",
+ "rdfs:label": "MedicalClinic",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalBusiness"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Protein",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Protein is here used in its widest possible definition, as classes of amino acid based molecules. Amyloid-beta Protein in human (UniProt P05067), eukaryota (e.g. an OrthoDB group) or even a single molecule that one can point to are all of type schema:Protein. A protein can thus be a subclass of another protein, e.g. schema:Protein as a UniProt record can have multiple isoforms inside it which would also be schema:Protein. They can be imagined, synthetic, hypothetical or naturally occurring.",
+ "rdfs:label": "Protein",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:normalRange",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Range of acceptable values for a typical patient, when applicable.",
+ "rdfs:label": "normalRange",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TrackAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent tracks an object for updates.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects.",
+ "rdfs:label": "TrackAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:FindAction"
+ }
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The price for the delivery of an offer using a particular delivery method.",
+ "rdfs:label": "DeliveryChargeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:departureAirport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The airport where the flight originates.",
+ "rdfs:label": "departureAirport",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Airport"
+ }
+ },
+ {
+ "@id": "schema:ComicIssue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Individual comic issues are serially published as\n \tpart of a larger series. For the sake of consistency, even one-shot issues\n \tbelong to a series comprised of a single issue. All comic issues can be\n \tuniquely identified by: the combination of the name and volume number of the\n \tseries to which the issue belongs; the issue number; and the variant\n \tdescription of the issue (if any).",
+ "rdfs:label": "ComicIssue",
+ "rdfs:subClassOf": {
+ "@id": "schema:PublicationIssue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bodyLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Location in the body of the anatomical structure.",
+ "rdfs:label": "bodyLocation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:medicalAudience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Medical audience for page.",
+ "rdfs:label": "medicalAudience",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalWebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalAudience"
+ },
+ {
+ "@id": "schema:MedicalAudienceType"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AgreeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "AgreeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:ActiveNotRecruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Active, but not recruiting new participants.",
+ "rdfs:label": "ActiveNotRecruiting",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Tuesday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Monday and Wednesday.",
+ "rdfs:label": "Tuesday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q127"
+ }
+ },
+ {
+ "@id": "schema:messageAttachment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CreativeWork attached to the message.",
+ "rdfs:label": "messageAttachment",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:itemDefectReturnShippingFeesAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Amount of shipping costs for defect product returns. Applicable when property [[itemDefectReturnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "itemDefectReturnShippingFeesAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:Protozoa",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Single-celled organism that causes an infection.",
+ "rdfs:label": "Protozoa",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LeisureTimeActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.",
+ "rdfs:label": "LeisureTimeActivity",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AcceptAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of committing to/adopting an object.\\n\\nRelated actions:\\n\\n* [[RejectAction]]: The antonym of AcceptAction.",
+ "rdfs:label": "AcceptAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:duringMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object representing the circumstances while performing this direction.",
+ "rdfs:label": "duringMedia",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToDirection"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Permit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permit issued by an organization, e.g. a parking pass.",
+ "rdfs:label": "Permit",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c27",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations.",
+ "rdfs:label": "Nonprofit501c27",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:EventStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.",
+ "rdfs:label": "EventStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:namedPosition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.",
+ "rdfs:label": "namedPosition",
+ "schema:domainIncludes": {
+ "@id": "schema:Role"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:roleName"
+ }
+ },
+ {
+ "@id": "schema:AlcoholConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item contains alcohol or promotes alcohol consumption.",
+ "rdfs:label": "AlcoholConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:maxValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The upper value of some characteristic or property.",
+ "rdfs:label": "maxValue",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:logo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated logo.",
+ "rdfs:label": "logo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:image"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:CDCPMDRecord",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n definitions used as the source here.\n ",
+ "rdfs:label": "CDCPMDRecord",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:MensClothingStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A men's clothing store.",
+ "rdfs:label": "MensClothingStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:geoCrosses",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCrosses",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Room",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Room",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:CollegeOrUniversity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A college, university, or other third-level educational institution.",
+ "rdfs:label": "CollegeOrUniversity",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:passengerPriorityStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).",
+ "rdfs:label": "passengerPriorityStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberOfPlayers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicate how many people can play this game (minimum, maximum, or range).",
+ "rdfs:label": "numberOfPlayers",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Game"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:biomechnicalClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The biomechanical properties of the bone.",
+ "rdfs:label": "biomechnicalClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Joint"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:reservationId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A unique identifier for the reservation.",
+ "rdfs:label": "reservationId",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:SheetMusic",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Printed music, as opposed to performed or recorded music.",
+ "rdfs:label": "SheetMusic",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:signDetected",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sign detected by the test.",
+ "rdfs:label": "signDetected",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSign"
+ }
+ },
+ {
+ "@id": "schema:doseValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The value of the dose, e.g. 500.",
+ "rdfs:label": "doseValue",
+ "schema:domainIncludes": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:archiveHeld",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]]."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "archiveHeld"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ArchiveOrganization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:holdingArchive"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ArchiveComponent"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:acrissCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards.",
+ "rdfs:label": "acrissCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BusOrCoach"
+ },
+ {
+ "@id": "schema:Car"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:appearance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an occurrence of a [[Claim]] in some [[CreativeWork]].",
+ "rdfs:label": "appearance",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workExample"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ }
+ },
+ {
+ "@id": "schema:answerCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of answers this question has received.",
+ "rdfs:label": "answerCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Question"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:transFatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of trans fat.",
+ "rdfs:label": "transFatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:WPAdBlock",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An advertising section of the page.",
+ "rdfs:label": "WPAdBlock",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:UserBlocks",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserBlocks",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:SeaBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sea (for example, the Caspian sea).",
+ "rdfs:label": "SeaBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:interactionService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The WebSite or SoftwareApplication where the interactions took place.",
+ "rdfs:label": "interactionService",
+ "schema:domainIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebSite"
+ },
+ {
+ "@id": "schema:SoftwareApplication"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WearableMeasurementWidth",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the width, for example of shoes",
+ "rdfs:label": "WearableMeasurementWidth",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:orderNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The identifier of the transaction.",
+ "rdfs:label": "orderNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DeliveryMethod",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\\n* http://purl.org/goodrelations/v1#DeliveryModeMail\\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
+ "rdfs:label": "DeliveryMethod",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:beneficiaryBank",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary.",
+ "rdfs:label": "beneficiaryBank",
+ "schema:domainIncludes": {
+ "@id": "schema:MoneyTransfer"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:BankOrCreditUnion"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:accessibilityAPI",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).",
+ "rdfs:label": "accessibilityAPI",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:sdPublisher",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The\n[[sdPublisher]] property helps make such practices more explicit.",
+ "rdfs:label": "sdPublisher",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
+ }
+ },
+ {
+ "@id": "schema:fuelType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.",
+ "rdfs:label": "fuelType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Vehicle"
+ },
+ {
+ "@id": "schema:EngineSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:VisualArtsEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Visual arts event.",
+ "rdfs:label": "VisualArtsEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:Language",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]].",
+ "rdfs:label": "Language",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:acceptsReservations",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```.",
+ "rdfs:label": "acceptsReservations",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TollFree",
+ "@type": "schema:ContactPointOption",
+ "rdfs:comment": "The associated telephone number is toll free.",
+ "rdfs:label": "TollFree"
+ },
+ {
+ "@id": "schema:PathologyTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.",
+ "rdfs:label": "PathologyTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DrugPrescriptionStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates whether this drug is available by prescription or over-the-counter.",
+ "rdfs:label": "DrugPrescriptionStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:startOffset",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The start time of the clip expressed as the number of seconds from the beginning of the work.",
+ "rdfs:label": "startOffset",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:SeekToAction"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:HyperTocEntry"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2021"
+ }
+ },
+ {
+ "@id": "schema:eligibleRegion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\\n\\nSee also [[ineligibleRegion]].\n ",
+ "rdfs:label": "eligibleRegion",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:areaServed"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:GeoShape"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ ]
+ },
+ {
+ "@id": "schema:countryOfLastProcessing",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the item (typically [[Product]]) was last processed and tested before importation.",
+ "rdfs:label": "countryOfLastProcessing",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/991"
+ }
+ },
+ {
+ "@id": "schema:codeSampleType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
+ "rdfs:label": "codeSampleType",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:seasons",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A season in a media series.",
+ "rdfs:label": "seasons",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:season"
+ }
+ },
+ {
+ "@id": "schema:opens",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The opening hour of the place or service on the given day(s) of the week.",
+ "rdfs:label": "opens",
+ "schema:domainIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Time"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:DrivingSchoolVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the vehicle for driving school.",
+ "rdfs:label": "DrivingSchoolVehicleUsage",
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Offer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\\n\\nNote: As the [[businessFunction]] property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\\n\\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/).",
+ "rdfs:label": "Offer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates types (or dimensions) of a person's body measurements, for example for fitting of clothes.",
+ "rdfs:label": "BodyMeasurementTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:MeasurementTypeEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:VideoGameSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A video game series.",
+ "rdfs:label": "VideoGameSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:OnDemandEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A publication event, e.g. catch-up TV or radio podcast, during which a program is available on-demand.",
+ "rdfs:label": "OnDemandEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:Pulmonary",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.",
+ "rdfs:label": "Pulmonary",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:rangeIncludes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.",
+ "rdfs:label": "rangeIncludes",
+ "schema:domainIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:isPartOf": {
+ "@id": "http://meta.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Class"
+ }
+ },
+ {
+ "@id": "schema:returnPolicySeasonalOverride",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Seasonal override of a return policy.",
+ "rdfs:label": "returnPolicySeasonalOverride",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:HealthClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A health club.",
+ "rdfs:label": "HealthClub",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:HealthAndBeautyBusiness"
+ },
+ {
+ "@id": "schema:SportsActivityLocation"
+ }
+ ]
+ },
+ {
+ "@id": "schema:StagedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'staged content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'staged content': A video that has been created using actors or similarly contrived.\n\nFor an [[ImageObject]] to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[ImageObject]] with embedded text to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[AudioObject]] to be 'staged content': Audio that has been created using actors or similarly contrived.\n",
+ "rdfs:label": "StagedContent",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:LegalService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).",
+ "rdfs:label": "LegalService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c9",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations.",
+ "rdfs:label": "Nonprofit501c9",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:providerMobility",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').",
+ "rdfs:label": "providerMobility",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:FastFoodRestaurant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A fast-food restaurant.",
+ "rdfs:label": "FastFoodRestaurant",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:honorificPrefix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.",
+ "rdfs:label": "honorificPrefix",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ccRecipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of recipient. The recipient copied on a message.",
+ "rdfs:label": "ccRecipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:recipient"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:customerRemorseReturnShippingFeesAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of shipping costs if a product is returned due to customer remorse. Applicable when property [[customerRemorseReturnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "customerRemorseReturnShippingFeesAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:measuredProperty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The measuredProperty of an [[Observation]], either a schema.org property, a property from other RDF-compatible systems, e.g. W3C RDF Data Cube, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties).",
+ "rdfs:label": "measuredProperty",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:BusinessFunction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ConstructionInstallation\\n* http://purl.org/goodrelations/v1#Dispose\\n* http://purl.org/goodrelations/v1#LeaseOut\\n* http://purl.org/goodrelations/v1#Maintain\\n* http://purl.org/goodrelations/v1#ProvideService\\n* http://purl.org/goodrelations/v1#Repair\\n* http://purl.org/goodrelations/v1#Sell\\n* http://purl.org/goodrelations/v1#Buy\n ",
+ "rdfs:label": "BusinessFunction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:arrivalBusStop",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stop or station from which the bus arrives.",
+ "rdfs:label": "arrivalBusStop",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BusStop"
+ },
+ {
+ "@id": "schema:BusStation"
+ }
+ ]
+ },
+ {
+ "@id": "schema:recipeCuisine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The cuisine of the recipe (for example, French or Ethiopian).",
+ "rdfs:label": "recipeCuisine",
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:bestRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.",
+ "rdfs:label": "bestRating",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Dermatologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Something relating to or practicing dermatology.",
+ "rdfs:label": "Dermatologic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:Dermatology"
+ }
+ },
+ {
+ "@id": "schema:releaseNotes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of what changed in this version.",
+ "rdfs:label": "releaseNotes",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PaymentDue",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment is due, but still within an acceptable time to be received.",
+ "rdfs:label": "PaymentDue"
+ },
+ {
+ "@id": "schema:DJMixAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "DJMixAlbum.",
+ "rdfs:label": "DJMixAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:URL",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: URL.",
+ "rdfs:label": "URL",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:audio",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An embedded audio object.",
+ "rdfs:label": "audio",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MusicRecording"
+ },
+ {
+ "@id": "schema:AudioObject"
+ },
+ {
+ "@id": "schema:Clip"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2420"
+ }
+ },
+ {
+ "@id": "schema:EducationalAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An EducationalAudience.",
+ "rdfs:label": "EducationalAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"
+ }
+ },
+ {
+ "@id": "schema:SinglePlayer",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: SinglePlayer. Which is played by a lone player.",
+ "rdfs:label": "SinglePlayer"
+ },
+ {
+ "@id": "schema:Legislation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article).",
+ "rdfs:label": "Legislation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": [
+ {
+ "@id": "http://data.europa.eu/eli/ontology#LegalResource"
+ },
+ {
+ "@id": "http://data.europa.eu/eli/ontology#LegalExpression"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HealthCare",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "HealthCare: this is a benefit for health care.",
+ "rdfs:label": "HealthCare",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:softwareHelp",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Software application help.",
+ "rdfs:label": "softwareHelp",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:sensoryRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
+ "rdfs:label": "sensoryRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ }
+ },
+ {
+ "@id": "schema:PreventionHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.",
+ "rdfs:label": "PreventionHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:DepartAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of departing from a place. An agent departs from a fromLocation for a destination, optionally with participants.",
+ "rdfs:label": "DepartAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:MoveAction"
+ }
+ },
+ {
+ "@id": "schema:asin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An Amazon Standard Identification Number (ASIN) is a 10-character alphanumeric unique identifier assigned by Amazon.com and its partners for product identification within the Amazon organization (summary from [Wikipedia](https://en.wikipedia.org/wiki/Amazon_Standard_Identification_Number)'s article).\n\nNote also that this is a definition for how to include ASINs in Schema.org data, and not a definition of ASINs in general - see documentation from Amazon for authoritative details.\nASINs are most commonly encoded as text strings, but the [asin] property supports URL/URI as potential values too.",
+ "rdfs:label": "asin",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:evidenceOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.",
+ "rdfs:label": "evidenceOrigin",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:supportingData",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Supporting data for a SoftwareApplication.",
+ "rdfs:label": "supportingData",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataFeed"
+ }
+ },
+ {
+ "@id": "schema:programPrerequisites",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Prerequisites for enrolling in the program.",
+ "rdfs:label": "programPrerequisites",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Course"
+ },
+ {
+ "@id": "schema:AlignmentObject"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:EnergyConsumptionDetails",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US.",
+ "rdfs:label": "EnergyConsumptionDetails",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:Painting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A painting.",
+ "rdfs:label": "Painting",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:chemicalComposition",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
+ },
+ "rdfs:comment": "The chemical composition describes the identity and relative ratio of the chemical elements that make up the substance.",
+ "rdfs:label": "chemicalComposition",
+ "schema:domainIncludes": {
+ "@id": "schema:ChemicalSubstance"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MultiPlayer",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.",
+ "rdfs:label": "MultiPlayer"
+ },
+ {
+ "@id": "schema:parents",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A parents of the person.",
+ "rdfs:label": "parents",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:parent"
+ }
+ },
+ {
+ "@id": "schema:CreditCard",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#AmericanExpress\\n* http://purl.org/goodrelations/v1#DinersClub\\n* http://purl.org/goodrelations/v1#Discover\\n* http://purl.org/goodrelations/v1#JCB\\n* http://purl.org/goodrelations/v1#MasterCard\\n* http://purl.org/goodrelations/v1#VISA\n ",
+ "rdfs:label": "CreditCard",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:PaymentCard"
+ },
+ {
+ "@id": "schema:LoanOrCredit"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ ]
+ },
+ {
+ "@id": "schema:countriesSupported",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "countriesSupported",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:hoursAvailable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The hours during which this service or contact is available.",
+ "rdfs:label": "hoursAvailable",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ },
+ {
+ "@id": "schema:LimitedAvailability",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has limited availability.",
+ "rdfs:label": "LimitedAvailability"
+ },
+ {
+ "@id": "schema:availableOnDevice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
+ "rdfs:label": "availableOnDevice",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:stageAsNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stage represented as a number, e.g. 3.",
+ "rdfs:label": "stageAsNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalConditionStage"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:VeganDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of all animal products.",
+ "rdfs:label": "VeganDiet"
+ },
+ {
+ "@id": "schema:ApplyAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of registering to an organization/service without the guarantee to receive it.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.",
+ "rdfs:label": "ApplyAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:NLNonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "NLNonprofitType: Non-profit organization type originating from the Netherlands.",
+ "rdfs:label": "NLNonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:NonprofitType"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ParkingMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A parking map.",
+ "rdfs:label": "ParkingMap"
+ },
+ {
+ "@id": "schema:GiveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\\n\\nRelated actions:\\n\\n* [[TakeAction]]: Reciprocal of GiveAction.\\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).",
+ "rdfs:label": "GiveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:familyName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Family name. In the U.S., the last name of a Person.",
+ "rdfs:label": "familyName",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:deliveryTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total delay between the receipt of the order and the goods reaching the final customer.",
+ "rdfs:label": "deliveryTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:siblings",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sibling of the person.",
+ "rdfs:label": "siblings",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:sibling"
+ }
+ },
+ {
+ "@id": "schema:isProprietary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "True if this item's name is a proprietary/brand name (vs. generic name).",
+ "rdfs:label": "isProprietary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:softwareVersion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Version of the software instance.",
+ "rdfs:label": "softwareVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Ayurvedic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.",
+ "rdfs:label": "Ayurvedic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:gameItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
+ "rdfs:label": "gameItem",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Game"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:proteinContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of protein.",
+ "rdfs:label": "proteinContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupExtraTall",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Extra Tall\" for wearables.",
+ "rdfs:label": "WearableSizeGroupExtraTall",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:bccRecipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of recipient. The recipient blind copied on a message.",
+ "rdfs:label": "bccRecipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:recipient"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ListItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An list item, e.g. a step in a checklist or how-to description.",
+ "rdfs:label": "ListItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:winner",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The winner of the action.",
+ "rdfs:label": "winner",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:LoseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:TVSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.",
+ "rdfs:label": "TVSeries",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FloorPlan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A FloorPlan is an explicit representation of a collection of similar accommodations, allowing the provision of common information (room counts, sizes, layout diagrams) and offers for rental or sale. In typical use, some [[ApartmentComplex]] has an [[accommodationFloorPlan]] which is a [[FloorPlan]]. A FloorPlan is always in the context of a particular place, either a larger [[ApartmentComplex]] or a single [[Apartment]]. The visual/spatial aspects of a floor plan (i.e. room layout, [see wikipedia](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. ",
+ "rdfs:label": "FloorPlan",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:NotInForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that a legislation is currently not in force.",
+ "rdfs:label": "NotInForce",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-notInForce"
+ }
+ },
+ {
+ "@id": "schema:freeShippingThreshold",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A monetary value above (or at) which the shipping rate becomes free. Intended to be used via an [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]].",
+ "rdfs:label": "freeShippingThreshold",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingRateSettings"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:accessibilityFeature",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).",
+ "rdfs:label": "accessibilityFeature",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Radiography",
+ "@type": [
+ "schema:MedicalImagingTechnique",
+ "schema:MedicalSpecialty"
+ ],
+ "rdfs:comment": "Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body.",
+ "rdfs:label": "Radiography",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasCredential",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A credential awarded to the Person or Organization.",
+ "rdfs:label": "hasCredential",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:study",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical study or trial related to this entity.",
+ "rdfs:label": "study",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalStudy"
+ }
+ },
+ {
+ "@id": "schema:Enumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Lists or enumerations—for example, a list of cuisines or music genres, etc.",
+ "rdfs:label": "Enumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:CoOp",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: CoOp. Co-operative games, where you play on the same team with friends.",
+ "rdfs:label": "CoOp"
+ },
+ {
+ "@id": "schema:screenCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of screens in the movie theater.",
+ "rdfs:label": "screenCount",
+ "schema:domainIncludes": {
+ "@id": "schema:MovieTheater"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:gtin8",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin8",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:embeddedTextCaption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents textual captioning from a [[MediaObject]], e.g. text of a 'meme'.",
+ "rdfs:label": "embeddedTextCaption",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:caption"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:AudioObject"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:offerCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of offers for the product.",
+ "rdfs:label": "offerCount",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateOffer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:3DModel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A 3D model represents some kind of 3D content, which may have [[encoding]]s in one or more [[MediaObject]]s. Many 3D formats are available (e.g. see [Wikipedia](https://en.wikipedia.org/wiki/Category:3D_graphics_file_formats)); specific encoding formats can be represented using the [[encodingFormat]] property applied to the relevant [[MediaObject]]. For the\ncase of a single file published after Zip compression, the convention of appending '+zip' to the [[encodingFormat]] can be used. Geospatial, AR/VR, artistic/animation, gaming, engineering and scientific content can all be represented using [[3DModel]].",
+ "rdfs:label": "3DModel",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2140"
+ }
+ },
+ {
+ "@id": "schema:spatialCoverage",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:spatial"
+ },
+ "rdfs:comment": "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.",
+ "rdfs:label": "spatialCoverage",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:contentLocation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:address",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Physical address of the item.",
+ "rdfs:label": "address",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BackgroundNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[NewsArticle]] providing historical context, definition and detail on a specific topic (aka \"explainer\" or \"backgrounder\"). For example, an in-depth article or frequently-asked-questions ([FAQ](https://en.wikipedia.org/wiki/FAQ)) document on topics such as Climate Change or the European Union. Other kinds of background material from a non-news setting are often described using [[Book]] or [[Article]], in particular [[ScholarlyArticle]]. See also [[NewsArticle]] for related vocabulary from a learning/education perspective.",
+ "rdfs:label": "BackgroundNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:shippingOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the origin of a shipment, i.e. where it should be coming from.",
+ "rdfs:label": "shippingOrigin",
+ "schema:domainIncludes": {
+ "@id": "schema:OfferShippingDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3122"
+ }
+ },
+ {
+ "@id": "schema:question",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. A question.",
+ "rdfs:label": "question",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:AskAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Question"
+ }
+ },
+ {
+ "@id": "schema:exercisePlan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The exercise plan used on this action.",
+ "rdfs:label": "exercisePlan",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ExercisePlan"
+ }
+ },
+ {
+ "@id": "schema:reservationFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The thing -- flight, event, restaurant, etc. being reserved.",
+ "rdfs:label": "reservationFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:Diet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.",
+ "rdfs:label": "Diet",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:LifestyleModification"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:sensoryUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The neurological pathway extension that inputs and sends information to the brain or spinal cord.",
+ "rdfs:label": "sensoryUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalStructure"
+ },
+ {
+ "@id": "schema:SuperficialAnatomy"
+ }
+ ]
+ },
+ {
+ "@id": "schema:House",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/House).",
+ "rdfs:label": "House",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:healthPlanMarketingUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL that goes directly to the plan brochure for the specific standard plan or plan variation.",
+ "rdfs:label": "healthPlanMarketingUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:Course",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A description of an educational course which may be offered as distinct instances which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.",
+ "rdfs:label": "Course",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:LearningResource"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoMidpoint",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the GeoCoordinates at the centre of a GeoShape, e.g. GeoCircle.",
+ "rdfs:label": "geoMidpoint",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoCircle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:GeoCoordinates"
+ }
+ },
+ {
+ "@id": "schema:DrugCostCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated categories of medical drug costs.",
+ "rdfs:label": "DrugCostCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:maxPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The highest price if the price is a range.",
+ "rdfs:label": "maxPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:GamePlayMode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player.",
+ "rdfs:label": "GamePlayMode",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:InStock",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is in stock.",
+ "rdfs:label": "InStock"
+ },
+ {
+ "@id": "schema:SolveMathAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.",
+ "rdfs:label": "SolveMathAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
+ }
+ },
+ {
+ "@id": "schema:speed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by [[maxValue]]) should be the maximum speed achievable under regular conditions.\\n\\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\\n\\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\\n* Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the [[valueReference]] property.",
+ "rdfs:label": "speed",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Volcano",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A volcano, like Fujisan.",
+ "rdfs:label": "Volcano",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:geo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geo coordinates of the place.",
+ "rdfs:label": "geo",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:GeoShape"
+ }
+ ]
+ },
+ {
+ "@id": "schema:paymentMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of the credit card or other method of payment for the order.",
+ "rdfs:label": "paymentMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PaymentMethod"
+ }
+ },
+ {
+ "@id": "schema:loanRepaymentForm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A form of paying back money previously borrowed from a lender. Repayment usually takes the form of periodic payments that normally include part principal plus interest in each payment.",
+ "rdfs:label": "loanRepaymentForm",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:usedToDiagnose",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A condition the test is used to diagnose.",
+ "rdfs:label": "usedToDiagnose",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
+ }
+ },
+ {
+ "@id": "schema:blogPost",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A posting that is part of this blog.",
+ "rdfs:label": "blogPost",
+ "schema:domainIncludes": {
+ "@id": "schema:Blog"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BlogPosting"
+ }
+ },
+ {
+ "@id": "schema:RentalVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the vehicle as a rental car.",
+ "rdfs:label": "RentalVehicleUsage",
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:ViewAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming static visual content.",
+ "rdfs:label": "ViewAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:NonprofitANBI",
+ "@type": "schema:NLNonprofitType",
+ "rdfs:comment": "NonprofitANBI: Non-profit type referring to a Public Benefit Organization (NL).",
+ "rdfs:label": "NonprofitANBI",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:unitText",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.",
+ "rdfs:label": "unitText",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c22",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds.",
+ "rdfs:label": "Nonprofit501c22",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:releaseDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The release date of a product or product model. This can be used to distinguish the exact variant of a product.",
+ "rdfs:label": "releaseDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:runtime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Runtime platform or script interpreter dependencies (example: Java v1, Python 2.3, .NET Framework 3.0).",
+ "rdfs:label": "runtime",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:runtimePlatform"
+ }
+ },
+ {
+ "@id": "schema:monthsOfExperience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the minimal number of months of experience required for a position.",
+ "rdfs:label": "monthsOfExperience",
+ "schema:domainIncludes": {
+ "@id": "schema:OccupationalExperienceRequirements"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
+ }
+ },
+ {
+ "@id": "schema:DefinedTerm",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.",
+ "rdfs:label": "DefinedTerm",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:Clinician",
+ "@type": "schema:MedicalAudienceType",
+ "rdfs:comment": "Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.",
+ "rdfs:label": "Clinician",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SoftwareApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A software application.",
+ "rdfs:label": "SoftwareApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:PawnShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shop that will buy, or lend money against the security of, personal possessions.",
+ "rdfs:label": "PawnShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:jurisdiction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.",
+ "rdfs:label": "jurisdiction",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Legislation"
+ },
+ {
+ "@id": "schema:GovernmentService"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AdministrativeArea"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:AchieveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.",
+ "rdfs:label": "AchieveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:brand",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
+ "rdfs:label": "brand",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DanceEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: A social dance.",
+ "rdfs:label": "DanceEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:rxcui",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The RxCUI drug identifier from RXNORM.",
+ "rdfs:label": "rxcui",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:CategoryCodeSet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of Category Code values.",
+ "rdfs:label": "CategoryCodeSet",
+ "rdfs:subClassOf": {
+ "@id": "schema:DefinedTermSet"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501k",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501k: Non-profit type referring to Child Care Organizations.",
+ "rdfs:label": "Nonprofit501k",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:saturatedFatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of saturated fat.",
+ "rdfs:label": "saturatedFatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:followup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Typical or recommended followup care after the procedure is performed.",
+ "rdfs:label": "followup",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PregnancyHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content discussing pregnancy-related aspects of a health topic.",
+ "rdfs:label": "PregnancyHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:endorsee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The person/organization being supported.",
+ "rdfs:label": "endorsee",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:EndorseAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MobileWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of 'mobile' browsers as a Web Platform.",
+ "rdfs:label": "MobileWebPlatform",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:ApprovedIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.",
+ "rdfs:label": "ApprovedIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:employmentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).",
+ "rdfs:label": "employmentType",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:LegalValueLevel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible levels for the legal validity of a legislation.",
+ "rdfs:label": "LegalValueLevel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue"
+ }
+ },
+ {
+ "@id": "schema:numberOfItems",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.",
+ "rdfs:label": "numberOfItems",
+ "schema:domainIncludes": {
+ "@id": "schema:ItemList"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:returnFees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return fees for purchased products (for any return reason).",
+ "rdfs:label": "returnFees",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnFeesEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:acquiredFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization or person from which the product was acquired.",
+ "rdfs:label": "acquiredFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:OwnershipInfo"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:openingHoursSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The opening hours of a certain place.",
+ "rdfs:label": "openingHoursSpecification",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:linkRelationship",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the relationship type of a Web link. ",
+ "rdfs:label": "linkRelationship",
+ "schema:domainIncludes": {
+ "@id": "schema:LinkRole"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1045"
+ }
+ },
+ {
+ "@id": "schema:MedicalGuidelineContraindication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.",
+ "rdfs:label": "MedicalGuidelineContraindication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:accessMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).",
+ "rdfs:label": "accessMode",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
+ }
+ },
+ {
+ "@id": "schema:GolfCourse",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A golf course.",
+ "rdfs:label": "GolfCourse",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:CarUsageType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.",
+ "rdfs:label": "CarUsageType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:mealService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of the meals that will be provided or available for purchase.",
+ "rdfs:label": "mealService",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:BefriendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.",
+ "rdfs:label": "BefriendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:Motel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motel.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Motel",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ }
+ },
+ {
+ "@id": "schema:EatAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of swallowing solid objects.",
+ "rdfs:label": "EatAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:subEvents",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.",
+ "rdfs:label": "subEvents",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:subEvent"
+ }
+ },
+ {
+ "@id": "schema:OrderProcessing",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order is being processed.",
+ "rdfs:label": "OrderProcessing"
+ },
+ {
+ "@id": "schema:FullRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that a refund can be done in the full amount the customer paid for the product.",
+ "rdfs:label": "FullRefund",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:PreventionIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An indication for preventing an underlying condition, symptom, etc.",
+ "rdfs:label": "PreventionIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:mileageFromOdometer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\\n\\nTypical unit code(s): KMT for kilometers, SMI for statute miles",
+ "rdfs:label": "mileageFromOdometer",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:MolecularEntity",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.",
+ "rdfs:label": "MolecularEntity",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:postalCodeEnd",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Last postal code in the range (included). Needs to be after [[postalCodeBegin]].",
+ "rdfs:label": "postalCodeEnd",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalCodeRangeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:recipe",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The recipe/instructions used to perform the action.",
+ "rdfs:label": "recipe",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CookAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Recipe"
+ }
+ },
+ {
+ "@id": "schema:FAQPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).",
+ "rdfs:label": "FAQPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1723"
+ }
+ },
+ {
+ "@id": "schema:surface",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.",
+ "rdfs:label": "surface",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:material"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:artworkSurface"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementInsideLeg",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Inside leg (measured between crotch and soles of feet). Used, for example, to fit pants.",
+ "rdfs:label": "BodyMeasurementInsideLeg",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ReportageNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing\n news articles which are the result of journalistic news reporting conventions.\n\nIn practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements.\n\nThe [[ReportageNewsArticle]] type is based on a stricter ideal for \"news\" as a work of journalism, with articles based on factual information either observed or verified by the author, or reported and verified from knowledgeable sources. This often includes perspectives from multiple viewpoints on a particular issue (distinguishing news reports from public relations or propaganda). News reports in the [[ReportageNewsArticle]] sense de-emphasize the opinion of the author, with commentary and value judgements typically expressed elsewhere.\n\nA [[ReportageNewsArticle]] which goes deeper into analysis can also be marked with an additional type of [[AnalysisNewsArticle]].\n",
+ "rdfs:label": "ReportageNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MerchantReturnEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several kinds of product return policies.",
+ "rdfs:label": "MerchantReturnEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:urlTemplate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An url template (RFC6570) that will be used to construct the target of the execution of the action.",
+ "rdfs:label": "urlTemplate",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryF",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryF",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:TobaccoNicotineConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item contains tobacco and/or nicotine, for example cigars, cigarettes, chewing tobacco, e-cigarettes, or hookahs.",
+ "rdfs:label": "TobaccoNicotineConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:MinimumAdvertisedPrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the minimum advertised price (\"MAP\") (as dictated by the manufacturer) of an offered product.",
+ "rdfs:label": "MinimumAdvertisedPrice",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:nonprofitStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business.",
+ "rdfs:label": "nonprofitStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:NonprofitType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:broadcastServiceTier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of service required to have access to the channel (e.g. Standard or Premium).",
+ "rdfs:label": "broadcastServiceTier",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:CardiovascularExam",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Cardiovascular system assessment with clinical examination.",
+ "rdfs:label": "CardiovascularExam",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:QuantitativeValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": " A point value or interval for product characteristics and other purposes.",
+ "rdfs:label": "QuantitativeValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:issn",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/issn"
+ },
+ "rdfs:comment": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
+ "rdfs:label": "issn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:WebSite"
+ },
+ {
+ "@id": "schema:Blog"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:PerformingGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A performance group, such as a band, an orchestra, or a circus.",
+ "rdfs:label": "PerformingGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemEurope",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "European size system for wearables.",
+ "rdfs:label": "WearableSizeSystemEurope",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:hasOccupation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Person's occupation. For past professions, use Role for expressing dates.",
+ "rdfs:label": "hasOccupation",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Occupation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:inChI",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "Non-proprietary identifier for molecular entity that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations.",
+ "rdfs:label": "inChI",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Blog",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [blog](https://en.wikipedia.org/wiki/Blog), sometimes known as a \"weblog\". Note that the individual posts ([[BlogPosting]]s) in a [[Blog]] are often colloquially referred to by the same term.",
+ "rdfs:label": "Blog",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:originalMediaContextDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Describes, in a [[MediaReview]] when dealing with [[DecontextualizedContent]], background information that can contribute to better interpretation of the [[MediaObject]].",
+ "rdfs:label": "originalMediaContextDescription",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReview"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:exerciseType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.",
+ "rdfs:label": "exerciseType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ExerciseAction"
+ },
+ {
+ "@id": "schema:ExercisePlan"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DeleteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of editing a recipient by removing one of its objects.",
+ "rdfs:label": "DeleteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UpdateAction"
+ }
+ },
+ {
+ "@id": "schema:GroupBoardingPolicy",
+ "@type": "schema:BoardingPolicyType",
+ "rdfs:comment": "The airline boards by groups based on check-in time, priority, etc.",
+ "rdfs:label": "GroupBoardingPolicy"
+ },
+ {
+ "@id": "schema:arrivalBoatTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The terminal or port from which the boat arrives.",
+ "rdfs:label": "arrivalBoatTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:BoatTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BoatTerminal"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:BikeStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bike store.",
+ "rdfs:label": "BikeStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:OnSitePickup",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.",
+ "rdfs:label": "OnSitePickup"
+ },
+ {
+ "@id": "schema:editEIDR",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" whose [[titleEIDR]] is \"10.5240/7EC7-228A-510A-053E-CBB8-J\" has several edits, e.g. \"10.5240/1F2A-E1C5-680A-14C6-E76B-I\" and \"10.5240/8A35-3BEE-6497-5D12-9E4F-3\".\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
+ "rdfs:label": "editEIDR",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2469"
+ }
+ },
+ {
+ "@id": "schema:uploadDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date when this media object was uploaded to this site.",
+ "rdfs:label": "uploadDate",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:HighSchool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A high school.",
+ "rdfs:label": "HighSchool",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:originAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Shipper's address.",
+ "rdfs:label": "originAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:Synagogue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A synagogue.",
+ "rdfs:label": "Synagogue",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:PalliativeProcedure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.",
+ "rdfs:label": "PalliativeProcedure",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:MedicalTherapy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Optician",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A store that sells reading glasses and similar devices for improving vision.",
+ "rdfs:label": "Optician",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:executableLibraryName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Library file name, e.g., mscorlib.dll, system.web.dll.",
+ "rdfs:label": "executableLibraryName",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:printSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.",
+ "rdfs:label": "printSection",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:productionDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date of production of the item, e.g. vehicle.",
+ "rdfs:label": "productionDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Vehicle"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:numAdults",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of adults staying in the unit.",
+ "rdfs:label": "numAdults",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberOfBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.",
+ "rdfs:label": "numberOfBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:BedDetails"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:TelevisionChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.",
+ "rdfs:label": "TelevisionChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:BroadcastChannel"
+ }
+ },
+ {
+ "@id": "schema:MedicalStudy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.",
+ "rdfs:label": "MedicalStudy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:readBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person who reads (performs) the audiobook.",
+ "rdfs:label": "readBy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:actor"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Audiobook"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:GenericWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the generic notion of the Web Platform. More specific codes include [[MobileWebPlatform]] and [[DesktopWebPlatform]], as an incomplete list. ",
+ "rdfs:label": "GenericWebPlatform",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:hasMolecularFunction",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Molecular function performed by this BioChemEntity; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "hasMolecularFunction",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PublicationVolume",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "PublicationVolume",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:geoDisjoint",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: \"they have no point in common. They form a set of disconnected geometries.\" (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)",
+ "rdfs:label": "geoDisjoint",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ShippingDeliveryTime",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "ShippingDeliveryTime provides various pieces of information about delivery times for shipping.",
+ "rdfs:label": "ShippingDeliveryTime",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:UnitPriceSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The price asked for a given offer by the respective organization or person.",
+ "rdfs:label": "UnitPriceSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:netWorth",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total financial value of the person as calculated by subtracting assets from liabilities.",
+ "rdfs:label": "netWorth",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ]
+ },
+ {
+ "@id": "schema:guideline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical guideline related to this entity.",
+ "rdfs:label": "guideline",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalGuideline"
+ }
+ },
+ {
+ "@id": "schema:byDay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the day(s) of the week on which a recurring [[Event]] takes place. May be specified using either [[DayOfWeek]], or alternatively [[Text]] conforming to iCal's syntax for byDay recurrence rules.",
+ "rdfs:label": "byDay",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DayOfWeek"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:totalJobOpenings",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known.",
+ "rdfs:label": "totalJobOpenings",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2329"
+ }
+ },
+ {
+ "@id": "schema:broadcastDisplayName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name displayed in the channel guide. For many US affiliates, it is the network name.",
+ "rdfs:label": "broadcastDisplayName",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:accessCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Password, PIN, or access code needed for delivery (e.g. from a locker).",
+ "rdfs:label": "accessCode",
+ "schema:domainIncludes": {
+ "@id": "schema:DeliveryEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:estimatesRiskOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The condition, complication, or symptom whose risk is being estimated.",
+ "rdfs:label": "estimatesRiskOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:usageInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information, e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.\n\nThis property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.",
+ "rdfs:label": "usageInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2454"
+ }
+ },
+ {
+ "@id": "schema:installUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "URL at which the app may be installed, if different from the URL of the item.",
+ "rdfs:label": "installUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:knownVehicleDamages",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A textual description of known damages, both repaired and unrepaired.",
+ "rdfs:label": "knownVehicleDamages",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:RadioClip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short radio program or a segment/part of a radio program.",
+ "rdfs:label": "RadioClip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Clip"
+ }
+ },
+ {
+ "@id": "schema:MedicalImagingTechnique",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes. Enumerated type.",
+ "rdfs:label": "MedicalImagingTechnique",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size systems specific for wearable products",
+ "rdfs:label": "WearableSizeSystemEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:SizeSystemEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501d",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations.",
+ "rdfs:label": "Nonprofit501d",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:HowOrWhereHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about how or where to find a topic. Also may contain location data that can be used for where to look for help if the topic is observed.",
+ "rdfs:label": "HowOrWhereHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:TechArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.",
+ "rdfs:label": "TechArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:Otolaryngologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.",
+ "rdfs:label": "Otolaryngologic",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:PreSale",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available for ordering and delivery before general availability.",
+ "rdfs:label": "PreSale"
+ },
+ {
+ "@id": "schema:Hostel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hostel - cheap accommodation, often in shared dormitories.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Hostel",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ }
+ },
+ {
+ "@id": "schema:PsychologicalTreatment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs.",
+ "rdfs:label": "PsychologicalTreatment",
+ "rdfs:subClassOf": {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:salaryCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217)) used for the main salary information in this job posting or for this employee.",
+ "rdfs:label": "salaryCurrency",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:EmployeeRole"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:homeTeam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The home team in a sports event.",
+ "rdfs:label": "homeTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:competitor"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SportsEvent"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PerformAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of participating in performance arts.",
+ "rdfs:label": "PerformAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlayAction"
+ }
+ },
+ {
+ "@id": "schema:PreOrder",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available for pre-order.",
+ "rdfs:label": "PreOrder"
+ },
+ {
+ "@id": "schema:byMonthDay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31.",
+ "rdfs:label": "byMonthDay",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:isLiveBroadcast",
+ "@type": "rdf:Property",
+ "rdfs:comment": "True if the broadcast is of a live event.",
+ "rdfs:label": "isLiveBroadcast",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:SizeSystemEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size systems for different categories of products, for example \"EN-13402\" or \"UK\" for wearables or \"Imperial\" for screws.",
+ "rdfs:label": "SizeSystemEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:repeatCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the number of times a recurring [[Event]] will take place.",
+ "rdfs:label": "repeatCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:ChildrensEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Children's event.",
+ "rdfs:label": "ChildrensEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:servingSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The serving size, in terms of the number of volume or mass.",
+ "rdfs:label": "servingSize",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:foodEstablishment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The specific food establishment where the action occurred.",
+ "rdfs:label": "foodEstablishment",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CookAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:FoodEstablishment"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:candidate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The candidate subject of this action.",
+ "rdfs:label": "candidate",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:VoteAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:VideoObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A video file.",
+ "rdfs:label": "VideoObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:AuthoritativeLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates that the publisher gives some special status to the publication of the document. (\"The Queens Printer\" version of a UK Act of Parliament, or the PDF version of a Directive published by the EU Office of Publications.) Something \"Authoritative\" is considered to be also [[OfficialLegalValue]].",
+ "rdfs:label": "AuthoritativeLegalValue",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-authoritative"
+ }
+ },
+ {
+ "@id": "schema:language",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The language used on this action.",
+ "rdfs:label": "language",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CommunicateAction"
+ },
+ {
+ "@id": "schema:WriteAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Language"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:inLanguage"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemFR",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "French size system for wearables.",
+ "rdfs:label": "WearableSizeSystemFR",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:BroadcastRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "BroadcastRelease.",
+ "rdfs:label": "BroadcastRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:TaxiService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.",
+ "rdfs:label": "TaxiService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:TattooParlor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tattoo parlor.",
+ "rdfs:label": "TattooParlor",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:includesHealthPlanFormulary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Formularies covered by this plan.",
+ "rdfs:label": "includesHealthPlanFormulary",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthPlanFormulary"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:petsAllowed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.",
+ "rdfs:label": "petsAllowed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:appliesToDeliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The delivery method(s) to which the delivery charge or payment charge specification applies.",
+ "rdfs:label": "appliesToDeliveryMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:PaymentChargeSpecification"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:contactPoint",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contact point for a person or organization.",
+ "rdfs:label": "contactPoint",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:HealthInsurancePlan"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ }
+ },
+ {
+ "@id": "schema:EnergyStarCertified",
+ "@type": "schema:EnergyStarEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EnergyStar certification.",
+ "rdfs:label": "EnergyStarCertified",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:SendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of physically/electronically dispatching an object for transfer from an origin to a destination. Related actions:\\n\\n* [[ReceiveAction]]: The reciprocal of SendAction.\\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).",
+ "rdfs:label": "SendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:alcoholWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.",
+ "rdfs:label": "alcoholWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Demand",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.",
+ "rdfs:label": "Demand",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:relatedTherapy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical therapy related to this anatomy.",
+ "rdfs:label": "relatedTherapy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:AnatomicalStructure"
+ },
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:PaymentMethod",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n* http://purl.org/goodrelations/v1#ByInvoice\\n* http://purl.org/goodrelations/v1#Cash\\n* http://purl.org/goodrelations/v1#CheckInAdvance\\n* http://purl.org/goodrelations/v1#COD\\n* http://purl.org/goodrelations/v1#DirectDebit\\n* http://purl.org/goodrelations/v1#GoogleCheckout\\n* http://purl.org/goodrelations/v1#PayPal\\n* http://purl.org/goodrelations/v1#PaySwarm\n ",
+ "rdfs:label": "PaymentMethod",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:hasHealthAspect",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the aspect or aspects specifically addressed in some [[HealthTopicContent]]. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects.",
+ "rdfs:label": "hasHealthAspect",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthTopicContent"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthAspectEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:DrugPregnancyCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.",
+ "rdfs:label": "DrugPregnancyCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:educationalProgramMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Similar to courseMode, the medium or means of delivery of the program as a whole. The value may either be a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).",
+ "rdfs:label": "educationalProgramMode",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:ineligibleRegion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.\\n\\nSee also [[eligibleRegion]].\n ",
+ "rdfs:label": "ineligibleRegion",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2242"
+ }
+ },
+ {
+ "@id": "schema:BankAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.",
+ "rdfs:label": "BankAccount",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:subStructure",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Component (sub-)structure(s) that comprise this anatomical structure.",
+ "rdfs:label": "subStructure",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:SubscribeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.",
+ "rdfs:label": "SubscribeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:position",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The position of an item in a series or sequence of items.",
+ "rdfs:label": "position",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:encodingFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)), e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.\n\nIn cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.",
+ "rdfs:label": "encodingFormat",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Number",
+ "@type": [
+ "rdfs:Class",
+ "schema:DataType"
+ ],
+ "rdfs:comment": "Data type: Number.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "Number"
+ },
+ {
+ "@id": "schema:Waterfall",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A waterfall, like Niagara.",
+ "rdfs:label": "Waterfall",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:TakeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\\n\\nRelated actions:\\n\\n* [[GiveAction]]: The reciprocal of TakeAction.\\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transferred.",
+ "rdfs:label": "TakeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:dateVehicleFirstRegistered",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date of the first registration of the vehicle with the respective public authorities.",
+ "rdfs:label": "dateVehicleFirstRegistered",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:State",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A state or province of a country.",
+ "rdfs:label": "State",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:ReturnFeesCustomerResponsibility",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that product returns must be paid for, and are the responsibility of, the customer.",
+ "rdfs:label": "ReturnFeesCustomerResponsibility",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:audienceType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).",
+ "rdfs:label": "audienceType",
+ "schema:domainIncludes": {
+ "@id": "schema:Audience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:drugClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The class of drug this belongs to (e.g., statins).",
+ "rdfs:label": "drugClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugClass"
+ }
+ },
+ {
+ "@id": "schema:code",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.",
+ "rdfs:label": "code",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCode"
+ }
+ },
+ {
+ "@id": "schema:NewCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is new.",
+ "rdfs:label": "NewCondition"
+ },
+ {
+ "@id": "schema:LeaveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent leaves an event / group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: The antonym of LeaveAction.\\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.",
+ "rdfs:label": "LeaveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:priceSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
+ "rdfs:label": "priceSpecification",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:TradeAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:mainContentOfPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates if this web page element is the main subject of the page.",
+ "rdfs:label": "mainContentOfPage",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:copyrightYear",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The year during which the claimed copyright for the CreativeWork was first asserted.",
+ "rdfs:label": "copyrightYear",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:epidemiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The characteristics of associated patients, such as age, gender, race etc.",
+ "rdfs:label": "epidemiology",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PhysicalActivity"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AllocateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of organizing tasks/objects/events by associating resources to it.",
+ "rdfs:label": "AllocateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementChestOrBust",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the chest/bust section, for example of a suit",
+ "rdfs:label": "WearableMeasurementChestOrBust",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:geoIntersects",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoIntersects",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:flightDistance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The distance of the flight.",
+ "rdfs:label": "flightDistance",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ]
+ },
+ {
+ "@id": "schema:serviceLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location (e.g. civic structure, local business, etc.) where a person can go to access the service.",
+ "rdfs:label": "serviceLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:Property",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "rdf:Property"
+ },
+ "rdfs:comment": "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.",
+ "rdfs:label": "Property",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://meta.schema.org"
+ }
+ },
+ {
+ "@id": "schema:TVSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Season dedicated to TV broadcast and associated online delivery.",
+ "rdfs:label": "TVSeason",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WPHeader",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The header section of the page.",
+ "rdfs:label": "WPHeader",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:recipeInstructions",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.",
+ "rdfs:label": "recipeInstructions",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:step"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:coverageEndTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.",
+ "rdfs:label": "coverageEndTime",
+ "schema:domainIncludes": {
+ "@id": "schema:LiveBlogPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c26",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals.",
+ "rdfs:label": "Nonprofit501c26",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:CreativeWorkSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media season, e.g. TV, radio, video game etc.",
+ "rdfs:label": "CreativeWorkSeason",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:ShoppingCenter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shopping center or mall.",
+ "rdfs:label": "ShoppingCenter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:partOfSeries",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The series to which this episode or season belongs.",
+ "rdfs:label": "partOfSeries",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:inProductGroupWithID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. ",
+ "rdfs:label": "inProductGroupWithID",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:MedicalCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A code for a medical entity.",
+ "rdfs:label": "MedicalCode",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalIntangible"
+ },
+ {
+ "@id": "schema:CategoryCode"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:valueMaxLength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the allowed range for number of characters in a literal value.",
+ "rdfs:label": "valueMaxLength",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:PronounceableText",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: PronounceableText.",
+ "rdfs:label": "PronounceableText",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:serviceOutput",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.",
+ "rdfs:label": "serviceOutput",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:TransformedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'transformed content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'transformed content': or all of the video has been manipulated to transform the footage itself. This category includes using tools like the Adobe Suite to change the speed of the video, add or remove visual elements or dub audio. Deepfakes are also a subset of transformation.\n\nFor an [[ImageObject]] to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[ImageObject]] with embedded text to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[AudioObject]] to be 'transformed content': Part or all of the audio has been manipulated to alter the words or sounds, or the audio has been synthetically generated, such as to create a sound-alike voice.\n",
+ "rdfs:label": "TransformedContent",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:distance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The distance travelled, e.g. exercising or travelling.",
+ "rdfs:label": "distance",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ExerciseAction"
+ },
+ {
+ "@id": "schema:TravelAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Distance"
+ }
+ },
+ {
+ "@id": "schema:inBroadcastLineup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CableOrSatelliteService offering the channel.",
+ "rdfs:label": "inBroadcastLineup",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CableOrSatelliteService"
+ }
+ },
+ {
+ "@id": "schema:scheduledPaymentDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date the invoice is scheduled to be paid.",
+ "rdfs:label": "scheduledPaymentDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:dateRead",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date/time at which the message has been read by the recipient if a single recipient exists.",
+ "rdfs:label": "dateRead",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MotorcycleRepair",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorcycle repair shop.",
+ "rdfs:label": "MotorcycleRepair",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:ActiveActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An in-progress action (e.g., while watching the movie, or driving to a location).",
+ "rdfs:label": "ActiveActionStatus"
+ },
+ {
+ "@id": "schema:WorkBasedProgram",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs.",
+ "rdfs:label": "WorkBasedProgram",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:MedicalCondition",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.",
+ "rdfs:label": "MedicalCondition",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:entertainmentBusiness",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The entertainment business where the action occurred.",
+ "rdfs:label": "entertainmentBusiness",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:PerformAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:inCodeSet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[CategoryCodeSet]] that contains this category code.",
+ "rdfs:label": "inCodeSet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:inDefinedTermSet"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CategoryCode"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CategoryCodeSet"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:homeLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contact location for a person's residence.",
+ "rdfs:label": "homeLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DefinedRegion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A DefinedRegion is a geographic area defined by potentially arbitrary (rather than political, administrative or natural geographical) criteria. Properties are provided for defining a region by reference to sets of postal codes.\n\nExamples: a delivery destination when shopping. Region where regional pricing is configured.\n\nRequirement 1:\nCountry: US\nStates: \"NY\", \"CA\"\n\nRequirement 2:\nCountry: US\nPostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]}\n{ [12345, 12345], [78945, 78945], }\nRegion = state, canton, prefecture, autonomous community...\n",
+ "rdfs:label": "DefinedRegion",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:Distillery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A distillery.",
+ "rdfs:label": "Distillery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/743"
+ }
+ },
+ {
+ "@id": "schema:downvoteCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of downvotes this question, answer or comment has received from the community.",
+ "rdfs:label": "downvoteCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Comment"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:weightTotal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "weightTotal",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:BusOrCoach",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel.",
+ "rdfs:label": "BusOrCoach",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:includedRiskFactor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.",
+ "rdfs:label": "includedRiskFactor",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalRiskFactor"
+ }
+ },
+ {
+ "@id": "schema:recourseLoan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The only way you get the money back in the event of default is the security. Recourse is where you still have the opportunity to go back to the borrower for the rest of the money.",
+ "rdfs:label": "recourseLoan",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TransferAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.",
+ "rdfs:label": "TransferAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:applicationContact",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Contact details for further information relevant to this job posting.",
+ "rdfs:label": "applicationContact",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2396"
+ }
+ },
+ {
+ "@id": "schema:isPlanForApartment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates some accommodation that this floor plan describes.",
+ "rdfs:label": "isPlanForApartment",
+ "schema:domainIncludes": {
+ "@id": "schema:FloorPlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:experienceInPlaceOfEducation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether a [[JobPosting]] will accept experience (as indicated by [[OccupationalExperienceRequirements]]) in place of its formal educational qualifications (as indicated by [[educationRequirements]]). If true, indicates that satisfying one of these requirements is sufficient.",
+ "rdfs:label": "experienceInPlaceOfEducation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
+ }
+ },
+ {
+ "@id": "schema:customerRemorseReturnLabelSource",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned due to customer remorse.",
+ "rdfs:label": "customerRemorseReturnLabelSource",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnLabelSourceEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:performTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "performTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowTo"
+ },
+ {
+ "@id": "schema:HowToDirection"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementHips",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of hips (measured around the buttocks). Used, for example, to fit skirts.",
+ "rdfs:label": "BodyMeasurementHips",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:performers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The main performer or performers of the event—for example, a presenter, musician, or actor.",
+ "rdfs:label": "performers",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:performer"
+ }
+ },
+ {
+ "@id": "schema:Researcher",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Researchers.",
+ "rdfs:label": "Researcher",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:costCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category of cost, such as wholesale, retail, reimbursement cap, etc.",
+ "rdfs:label": "costCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugCostCategory"
+ }
+ },
+ {
+ "@id": "schema:IOSPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of iOS-based operating systems.",
+ "rdfs:label": "IOSPlatform",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:transitTimeLabel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).",
+ "rdfs:label": "transitTimeLabel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:referencesOrder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice.",
+ "rdfs:label": "referencesOrder",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Order"
+ }
+ },
+ {
+ "@id": "schema:validFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date when the item becomes valid.",
+ "rdfs:label": "validFrom",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ {
+ "@id": "schema:Permit"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Quiz",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Quiz: A test of knowledge, skills and abilities.",
+ "rdfs:label": "Quiz",
+ "rdfs:subClassOf": {
+ "@id": "schema:LearningResource"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2611"
+ }
+ },
+ {
+ "@id": "schema:latitude",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).",
+ "rdfs:label": "latitude",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:valueRequired",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the property must be filled in to complete the action. Default is false.",
+ "rdfs:label": "valueRequired",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:LowFatDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced fat and cholesterol intake.",
+ "rdfs:label": "LowFatDiet"
+ },
+ {
+ "@id": "schema:Airline",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An organization that provides flights for passengers.",
+ "rdfs:label": "Airline",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:eligibleTransactionVolume",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.",
+ "rdfs:label": "eligibleTransactionVolume",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Chiropractic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.",
+ "rdfs:label": "Chiropractic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasDigitalDocumentPermission",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".",
+ "rdfs:label": "hasDigitalDocumentPermission",
+ "schema:domainIncludes": {
+ "@id": "schema:DigitalDocument"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DigitalDocumentPermission"
+ }
+ },
+ {
+ "@id": "schema:WesternConventional",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.",
+ "rdfs:label": "WesternConventional",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ConsumeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of ingesting information/resources/food.",
+ "rdfs:label": "ConsumeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnUnspecified",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that a product return policy is not provided.",
+ "rdfs:label": "MerchantReturnUnspecified",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:mainEntity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the primary entity described in some page or other CreativeWork.",
+ "rdfs:label": "mainEntity",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:about"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:mainEntityOfPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:referenceQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The reference quantity for which a certain price applies, e.g. 1 EUR per 4 kWh of electricity. This property is a replacement for unitOfMeasurement for the advanced cases where the price does not relate to a standard unit.",
+ "rdfs:label": "referenceQuantity",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ReceiveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\\n\\nRelated actions:\\n\\n* [[SendAction]]: The reciprocal of ReceiveAction.\\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transferred (e.g. I can receive a package, but it does not mean the package is now mine).",
+ "rdfs:label": "ReceiveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:memoryRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Minimum memory requirements.",
+ "rdfs:label": "memoryRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:InfectiousAgentClass",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Classes of agents or pathogens that transmit infectious diseases. Enumerated type.",
+ "rdfs:label": "InfectiousAgentClass",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ReplyAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of responding to a question/message asked/sent by the object. Related to [[AskAction]].\\n\\nRelated actions:\\n\\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.",
+ "rdfs:label": "ReplyAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:RightHandDriving",
+ "@type": "schema:SteeringPositionValue",
+ "rdfs:comment": "The steering position is on the right side of the vehicle (viewed from the main direction of driving).",
+ "rdfs:label": "RightHandDriving",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:SearchAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of searching for an object.\\n\\nRelated actions:\\n\\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.",
+ "rdfs:label": "SearchAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:InternationalTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "An international trial.",
+ "rdfs:label": "InternationalTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:maximumAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total number of individuals that may attend an event or venue.",
+ "rdfs:label": "maximumAttendeeCapacity",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskCalculator",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.",
+ "rdfs:label": "MedicalRiskCalculator",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MovieTheater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A movie theater.",
+ "rdfs:label": "MovieTheater",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CivicStructure"
+ },
+ {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:dateSent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date/time at which the message was sent.",
+ "rdfs:label": "dateSent",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:creator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.",
+ "rdfs:label": "creator",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:UserComments"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:speakable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use the [[cssSelector]] property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.\n\n\nFor more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this\nwe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.\n ",
+ "rdfs:label": "speakable",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Article"
+ },
+ {
+ "@id": "schema:WebPage"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ }
+ },
+ {
+ "@id": "schema:ShippingRateSettings",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A ShippingRateSettings represents re-usable pieces of shipping information. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished and matched (i.e. identified/referenced) by their different values for [[shippingLabel]].",
+ "rdfs:label": "ShippingRateSettings",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:RsvpResponseMaybe",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee may or may not attend.",
+ "rdfs:label": "RsvpResponseMaybe"
+ },
+ {
+ "@id": "schema:discountCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Code used to redeem a discount.",
+ "rdfs:label": "discountCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:description",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:description"
+ },
+ "rdfs:comment": "A description of the item.",
+ "rdfs:label": "description",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Ear",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Ear function assessment with clinical examination.",
+ "rdfs:label": "Ear",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of dressing oneself in clothing.",
+ "rdfs:label": "WearAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UseAction"
+ }
+ },
+ {
+ "@id": "schema:endOffset",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The end time of the clip expressed as the number of seconds from the beginning of the work.",
+ "rdfs:label": "endOffset",
+ "schema:domainIncludes": {
+ "@id": "schema:Clip"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:HyperTocEntry"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2021"
+ }
+ },
+ {
+ "@id": "schema:BusReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for bus travel. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "BusReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:cvdNumVent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numvent - MECHANICAL VENTILATORS: Total number of ventilators available.",
+ "rdfs:label": "cvdNumVent",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:underName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person or organization the reservation or ticket is for.",
+ "rdfs:label": "underName",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Ticket"
+ },
+ {
+ "@id": "schema:Reservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ArchiveComponent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "ArchiveComponent"
+ },
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:loanMortgageMandateAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.",
+ "rdfs:label": "loanMortgageMandateAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MortgageLoan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:durationOfWarranty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.",
+ "rdfs:label": "durationOfWarranty",
+ "schema:domainIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Library",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A library.",
+ "rdfs:label": "Library",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnFiniteReturnWindow",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that there is a finite window for product returns.",
+ "rdfs:label": "MerchantReturnFiniteReturnWindow",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:ItemListOrderType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.",
+ "rdfs:label": "ItemListOrderType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:ratingCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The count of total number of ratings.",
+ "rdfs:label": "ratingCount",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateRating"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:SpecialAnnouncement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A SpecialAnnouncement combines a simple date-stamped textual information update\n with contextualized Web links and other structured data. It represents an information update made by a\n locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police,\n local government.\n\nFor work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#).\n\nThe motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org\nexpect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our\nusual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#).\n\n\nWhile this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover\nthe kinds of everyday practical information being posted to existing websites during an emergency situation.\n\nSeveral kinds of information can be provided:\n\nWe encourage the provision of \"name\", \"text\", \"datePosted\", \"expires\" (if appropriate), \"category\" and\n\"url\" as a simple baseline. It is important to provide a value for \"category\" where possible, most ideally as a well known\nURL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be \"https://en.wikipedia.org/w/index.php?title=2019-20\\_coronavirus\\_pandemic\" or \"https://www.wikidata.org/wiki/Q81068910\".\n\nFor many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple \"[[text]]\" summary of the page. It is\nunlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously.\n\nWe expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]].\n\nMany [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructure]]s. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]].\n\nThe [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only\nfor representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of [[about]] for locations too.\n\nThe basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting\n[[SpecialAnnouncement]] updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feed\nwith the [[webFeed]] property. This can be a simple URL, or an inline [[DataFeed]] object, with [[encodingFormat]] providing\nmedia type information, e.g. \"application/rss+xml\" or \"application/atom+xml\".\n",
+ "rdfs:label": "SpecialAnnouncement",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:EmployerReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[EmployerReview]] is a review of an [[Organization]] regarding its role as an employer, written by a current or former employee of that organization.",
+ "rdfs:label": "EmployerReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ }
+ },
+ {
+ "@id": "schema:datePosted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Publication date of an online listing.",
+ "rdfs:label": "datePosted",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:CDCPMDRecord"
+ },
+ {
+ "@id": "schema:RealEstateListing"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ ]
+ },
+ {
+ "@id": "schema:strengthUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The units of an active ingredient's strength, e.g. mg.",
+ "rdfs:label": "strengthUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugStrength"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:gender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While http://schema.org/Male and http://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of \"Mixed\".",
+ "rdfs:label": "gender",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GenderType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2341"
+ }
+ },
+ {
+ "@id": "schema:produces",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.",
+ "rdfs:label": "produces",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:serviceOutput"
+ }
+ },
+ {
+ "@id": "schema:drainsTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The vasculature that the vein drains into.",
+ "rdfs:label": "drainsTo",
+ "schema:domainIncludes": {
+ "@id": "schema:Vein"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:hasOfferCatalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
+ "rdfs:label": "hasOfferCatalog",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:OfferCatalog"
+ }
+ },
+ {
+ "@id": "schema:WebContent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "WebContent is a type representing all [[WebPage]], [[WebSite]] and [[WebPageElement]] content. It is sometimes the case that detailed distinctions between Web pages, sites and their parts are not always important or obvious. The [[WebContent]] type makes it easier to describe Web-addressable content without requiring such distinctions to always be stated. (The intent is that the existing types [[WebPage]], [[WebSite]] and [[WebPageElement]] will eventually be declared as subtypes of [[WebContent]].)",
+ "rdfs:label": "WebContent",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2358"
+ }
+ },
+ {
+ "@id": "schema:RsvpResponseNo",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee will not attend.",
+ "rdfs:label": "RsvpResponseNo"
+ },
+ {
+ "@id": "schema:programmingLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The computer programming language.",
+ "rdfs:label": "programmingLanguage",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ComputerLanguage"
+ }
+ ]
+ },
+ {
+ "@id": "schema:follows",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most generic uni-directional social relation.",
+ "rdfs:label": "follows",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:shippingRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the [[MonetaryAmount]]) are most appropriate.",
+ "rdfs:label": "shippingRate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ShippingRateSettings"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:healthPlanDrugTier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tier(s) of drugs offered by this formulary or insurance plan.",
+ "rdfs:label": "healthPlanDrugTier",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ {
+ "@id": "schema:HealthPlanFormulary"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:Reservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]].",
+ "rdfs:label": "Reservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:HyperTocEntry",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]].",
+ "rdfs:label": "HyperTocEntry",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:MedicalTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical test, typically performed for diagnostic purposes.",
+ "rdfs:label": "MedicalTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:backstory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Article]], typically a [[NewsArticle]], the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.",
+ "rdfs:label": "backstory",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:supply",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
+ "rdfs:label": "supply",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowTo"
+ },
+ {
+ "@id": "schema:HowToDirection"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:HowToSupply"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ratingValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The rating for the content.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "ratingValue",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:teaches",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.",
+ "rdfs:label": "teaches",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:EducationEvent"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2427"
+ }
+ },
+ {
+ "@id": "schema:SurgicalProcedure",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/387713003"
+ },
+ "rdfs:comment": "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.",
+ "rdfs:label": "SurgicalProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:GettingAccessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content that discusses practical and policy aspects for getting access to specific kinds of healthcare (e.g. distribution mechanisms for vaccines).",
+ "rdfs:label": "GettingAccessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:DataType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The basic data types such as Integers, Strings, etc.",
+ "rdfs:label": "DataType",
+ "rdfs:subClassOf": {
+ "@id": "rdfs:Class"
+ }
+ },
+ {
+ "@id": "schema:commentTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time at which the UserComment was made.",
+ "rdfs:label": "commentTime",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:VideoGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Video gallery page.",
+ "rdfs:label": "VideoGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaGallery"
+ }
+ },
+ {
+ "@id": "schema:departureGate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's departure gate.",
+ "rdfs:label": "departureGate",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Quantity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 kg' or '4 milligrams'.",
+ "rdfs:label": "Quantity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Series",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].",
+ "rdfs:label": "Series",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:orderDelivery",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The delivery of the parcel related to this order or order item.",
+ "rdfs:label": "orderDelivery",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Order"
+ },
+ {
+ "@id": "schema:OrderItem"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ParcelDelivery"
+ }
+ },
+ {
+ "@id": "schema:ScreeningEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A screening of a movie or other video.",
+ "rdfs:label": "ScreeningEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:geographicArea",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area associated with the audience.",
+ "rdfs:label": "geographicArea",
+ "schema:domainIncludes": {
+ "@id": "schema:Audience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:representativeOfPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether this image is representative of the content of the page.",
+ "rdfs:label": "representativeOfPage",
+ "schema:domainIncludes": {
+ "@id": "schema:ImageObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:AndroidPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of Android-based operating systems.",
+ "rdfs:label": "AndroidPlatform",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:Claim",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.\n\n Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholarlyArticle]] or [[Question]] might be [[about]] some [[Claim]].\n\n At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.\n ",
+ "rdfs:label": "Claim",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ }
+ },
+ {
+ "@id": "schema:firstPerformance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and place the work was first performed.",
+ "rdfs:label": "firstPerformance",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:healthPlanPharmacyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category or type of pharmacy associated with this cost sharing.",
+ "rdfs:label": "healthPlanPharmacyCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:numberOfAirbags",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number or type of airbags in the vehicle.",
+ "rdfs:label": "numberOfAirbags",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:deliveryStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).",
+ "rdfs:label": "deliveryStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryEvent"
+ }
+ },
+ {
+ "@id": "schema:DigitalDocumentPermissionType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of permission which can be granted for accessing a digital document.",
+ "rdfs:label": "DigitalDocumentPermissionType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:Mosque",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A mosque.",
+ "rdfs:label": "Mosque",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:percentile10",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 10th percentile value.",
+ "rdfs:label": "percentile10",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:LibrarySystem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[LibrarySystem]] is a collaborative system amongst several libraries.",
+ "rdfs:label": "LibrarySystem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1495"
+ }
+ },
+ {
+ "@id": "schema:Nerve",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.",
+ "rdfs:label": "Nerve",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:temporal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The \"temporal\" property can be used in cases where more specific properties\n(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.",
+ "rdfs:label": "temporal",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:size",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A standardized size of a product or creative work, specified either through a simple textual string (for example 'XL', '32Wx34L'), a QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable. ",
+ "rdfs:label": "size",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:SizeSpecification"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:Notary",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A notary.",
+ "rdfs:label": "Notary",
+ "rdfs:subClassOf": {
+ "@id": "schema:LegalService"
+ }
+ },
+ {
+ "@id": "schema:mpn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
+ "rdfs:label": "mpn",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:WatchAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming dynamic/moving visual content.",
+ "rdfs:label": "WatchAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:AutoWash",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A car wash business.",
+ "rdfs:label": "AutoWash",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:UsageOrScheduleHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about how, when, frequency and dosage of a topic.",
+ "rdfs:label": "UsageOrScheduleHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:menu",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
+ "rdfs:label": "menu",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Menu"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:hasMenu"
+ }
+ },
+ {
+ "@id": "schema:CommentAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of generating a comment about a subject.",
+ "rdfs:label": "CommentAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:ReturnMethodEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several types of product return methods.",
+ "rdfs:label": "ReturnMethodEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:cssSelector",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".",
+ "rdfs:label": "cssSelector",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:WebPageElement"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CssSelectorType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ }
+ },
+ {
+ "@id": "schema:JewelryStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A jewelry store.",
+ "rdfs:label": "JewelryStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Skin",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Skin assessment with clinical examination.",
+ "rdfs:label": "Skin",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:antagonist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The muscle whose action counteracts the specified muscle.",
+ "rdfs:label": "antagonist",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Muscle"
+ }
+ },
+ {
+ "@id": "schema:members",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A member of this organization.",
+ "rdfs:label": "members",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ProgramMembership"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:member"
+ }
+ },
+ {
+ "@id": "schema:ReviewAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.",
+ "rdfs:label": "ReviewAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:exchangeRateSpread",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The difference between the price at which a broker or other intermediary buys and sells foreign currency.",
+ "rdfs:label": "exchangeRateSpread",
+ "schema:domainIncludes": {
+ "@id": "schema:ExchangeRateSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369.",
+ "rdfs:label": "EUEnergyEfficiencyEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:EnergyEfficiencyEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupMisses",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Misses\" (also known as \"Missy\") for wearables.",
+ "rdfs:label": "WearableSizeGroupMisses",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:bookingTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time the reservation was booked.",
+ "rdfs:label": "bookingTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:MusculoskeletalExam",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Musculoskeletal system clinical examination.",
+ "rdfs:label": "MusculoskeletalExam",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:lowPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The lowest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "lowPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateOffer"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AnimalShelter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Animal shelter.",
+ "rdfs:label": "AnimalShelter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:totalTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "totalTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToDirection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:Emergency",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.",
+ "rdfs:label": "Emergency",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:typeOfGood",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The product that this structured value is referring to.",
+ "rdfs:label": "typeOfGood",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ {
+ "@id": "schema:OwnershipInfo"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:ImageGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Image gallery page.",
+ "rdfs:label": "ImageGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaGallery"
+ }
+ },
+ {
+ "@id": "schema:LiveBlogPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[LiveBlogPosting]] is a [[BlogPosting]] intended to provide a rolling textual coverage of an ongoing event through continuous updates.",
+ "rdfs:label": "LiveBlogPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:BlogPosting"
+ }
+ },
+ {
+ "@id": "schema:cvdNumICUBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.",
+ "rdfs:label": "cvdNumICUBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:translator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
+ "rdfs:label": "translator",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WearableSizeGroupInfants",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Infants\" for wearables.",
+ "rdfs:label": "WearableSizeGroupInfants",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:category",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
+ "rdfs:label": "category",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Recommendation"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:PhysicalActivity"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CategoryCode"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:PhysicalActivityCategory"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PublicToilet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A public toilet is a room or small building containing one or more toilets (and possibly also urinals) which is available for use by the general public, or by customers or employees of certain businesses.",
+ "rdfs:label": "PublicToilet",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1624"
+ }
+ },
+ {
+ "@id": "schema:merchantReturnLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a Web page or service by URL, for product returns.",
+ "rdfs:label": "merchantReturnLink",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:broadcastFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges, e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\".",
+ "rdfs:label": "broadcastFrequency",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:BroadcastChannel"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:BroadcastFrequencySpecification"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:FDAcategoryA",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).",
+ "rdfs:label": "FDAcategoryA",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalContraindication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but these risks may be outweighed by other considerations or mitigated by other measures).",
+ "rdfs:label": "MedicalContraindication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ComedyEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Comedy event.",
+ "rdfs:label": "ComedyEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:SuspendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).",
+ "rdfs:label": "SuspendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:Pathology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.",
+ "rdfs:label": "Pathology",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ParentalSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "ParentalSupport: this is a benefit for parental support.",
+ "rdfs:label": "ParentalSupport",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:LendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\\n\\nRelated actions:\\n\\n* [[BorrowAction]]: Reciprocal of LendAction.",
+ "rdfs:label": "LendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:issuedThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The service through which the permit was granted.",
+ "rdfs:label": "issuedThrough",
+ "schema:domainIncludes": {
+ "@id": "schema:Permit"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:Hardcover",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Hardcover.",
+ "rdfs:label": "Hardcover"
+ },
+ {
+ "@id": "schema:FundingScheme",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A FundingScheme combines organizational, project and policy aspects of grant-based funding\n that sets guidelines, principles and mechanisms to support other kinds of projects and activities.\n Funding is typically organized via [[Grant]] funding. Examples of funding schemes: Swiss Priority Programmes (SPPs); EU Framework 7 (FP7); Horizon 2020; the NIH-R01 Grant Program; Wellcome institutional strategic support fund. For large scale public sector funding, the management and administration of grant awards is often handled by other, dedicated, organizations - [[FundingAgency]]s such as ERC, REA, ...",
+ "rdfs:label": "FundingScheme",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PatientExperienceHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the real life experience of patients or people that have lived a similar experience about the topic. May be forums, topics, Q-and-A and related material.",
+ "rdfs:label": "PatientExperienceHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:stepValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.",
+ "rdfs:label": "stepValue",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:TelevisionStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A television station.",
+ "rdfs:label": "TelevisionStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:MRI",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Magnetic resonance imaging.",
+ "rdfs:label": "MRI",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MotorizedBicycle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling.",
+ "rdfs:label": "MotorizedBicycle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:creditedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga.",
+ "rdfs:label": "creditedTo",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:permittedUsage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indications regarding the permitted usage of the accommodation.",
+ "rdfs:label": "permittedUsage",
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:aggregateRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The overall rating, based on a collection of reviews or ratings, of the item.",
+ "rdfs:label": "aggregateRating",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:AggregateRating"
+ }
+ },
+ {
+ "@id": "schema:Poster",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.",
+ "rdfs:label": "Poster",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:preparation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Typical preparation that a patient must undergo before having the procedure performed.",
+ "rdfs:label": "preparation",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DayOfWeek",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) were used (for [[Monday]], [[Tuesday]], [[Wednesday]], [[Thursday]], [[Friday]], [[Saturday]], [[Sunday]] plus a special entry for [[PublicHolidays]]); these have now been integrated directly into schema.org.\n ",
+ "rdfs:label": "DayOfWeek",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19OverflowPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed.",
+ "rdfs:label": "cvdNumC19OverflowPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:Intangible",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
+ "rdfs:label": "Intangible",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:successorOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.",
+ "rdfs:label": "successorOf",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductModel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ProductModel"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19HOPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19hopats - HOSPITAL ONSET: Patients hospitalized in an NHSN inpatient care location with onset of suspected or confirmed COVID-19 14 or more days after hospitalization.",
+ "rdfs:label": "cvdNumC19HOPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:RsvpResponseYes",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee will attend.",
+ "rdfs:label": "RsvpResponseYes"
+ },
+ {
+ "@id": "schema:orderedItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The item ordered.",
+ "rdfs:label": "orderedItem",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OrderItem"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:OrderItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:userInteractionCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.",
+ "rdfs:label": "userInteractionCount",
+ "schema:domainIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:birthPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the person was born.",
+ "rdfs:label": "birthPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:EventRescheduled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated.)",
+ "rdfs:label": "EventRescheduled"
+ },
+ {
+ "@id": "schema:trackingUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Tracking url for the parcel delivery.",
+ "rdfs:label": "trackingUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:LifestyleModification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.",
+ "rdfs:label": "LifestyleModification",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementHead",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of head above the ears. Used, for example, to fit hats.",
+ "rdfs:label": "BodyMeasurementHead",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:UserPlays",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPlays",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:MiddleSchool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A middle school (typically for children aged around 11-14, although this varies somewhat).",
+ "rdfs:label": "MiddleSchool",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:ComicStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The term \"story\" is any indivisible, re-printable\n \tunit of a comic, including the interior stories, covers, and backmatter. Most\n \tcomics have at least two stories: a cover (ComicCoverArt) and an interior story.",
+ "rdfs:label": "ComicStory",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LakeBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A lake (for example, Lake Pontrachain).",
+ "rdfs:label": "LakeBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:disambiguatingDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
+ "rdfs:label": "disambiguatingDescription",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:nonEqual",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is not equal to the object.",
+ "rdfs:label": "nonEqual",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Monday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Sunday and Tuesday.",
+ "rdfs:label": "Monday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q105"
+ }
+ },
+ {
+ "@id": "schema:offeredBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to the organization or person making the offer.",
+ "rdfs:label": "offeredBy",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:makesOffer"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:termCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]",
+ "rdfs:label": "termCode",
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedTerm"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:AboutPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: About page.",
+ "rdfs:label": "AboutPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:billingAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The billing address for the order.",
+ "rdfs:label": "billingAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:seatingType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type/class of the seat.",
+ "rdfs:label": "seatingType",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:fuelEfficiency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\\n\\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel economy to another value.",
+ "rdfs:label": "fuelEfficiency",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:encodesBioChemEntity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Another BioChemEntity encoded by this one. ",
+ "rdfs:label": "encodesBioChemEntity",
+ "schema:domainIncludes": {
+ "@id": "schema:Gene"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isEncodedByBioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:line",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.",
+ "rdfs:label": "line",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoShape"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:QualitativeValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.",
+ "rdfs:label": "QualitativeValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:departureTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's departure terminal.",
+ "rdfs:label": "departureTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:dayOfWeek",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The day of the week for which these opening hours are valid.",
+ "rdfs:label": "dayOfWeek",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DayOfWeek"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:GameServer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Server that provides game interaction in a multiplayer game.",
+ "rdfs:label": "GameServer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:StructuredValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.",
+ "rdfs:label": "StructuredValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:PreOrderAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent orders a (not yet released) object/product/service to be delivered/sent.",
+ "rdfs:label": "PreOrderAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1125"
+ }
+ },
+ {
+ "@id": "schema:Duration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "Duration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:BroadcastEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An over the air or online broadcast event.",
+ "rdfs:label": "BroadcastEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskFactor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.",
+ "rdfs:label": "MedicalRiskFactor",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:upvoteCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of upvotes this question, answer or comment has received from the community.",
+ "rdfs:label": "upvoteCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Comment"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:map",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "map",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:hasMap"
+ }
+ },
+ {
+ "@id": "schema:byMonth",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1.",
+ "rdfs:label": "byMonth",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:Comment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.",
+ "rdfs:label": "Comment",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:ConvenienceStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A convenience store.",
+ "rdfs:label": "ConvenienceStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:geoRadius",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
+ "rdfs:label": "geoRadius",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoCircle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ]
+ },
+ {
+ "@id": "schema:announcementLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a specific [[CivicStructure]] or [[LocalBusiness]] associated with the SpecialAnnouncement. For example, a specific testing facility or business with special opening hours. For a larger geographic region like a quarantine of an entire region, use [[spatialCoverage]].",
+ "rdfs:label": "announcementLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:spatialCoverage"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CivicStructure"
+ },
+ {
+ "@id": "schema:LocalBusiness"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2514"
+ }
+ },
+ {
+ "@id": "schema:accountablePerson",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the Person that is legally accountable for the CreativeWork.",
+ "rdfs:label": "accountablePerson",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:AlbumRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "AlbumRelease.",
+ "rdfs:label": "AlbumRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:downPayment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "a type of payment made in cash during the onset of the purchase of an expensive good/service. The payment typically represents only a percentage of the full purchase price.",
+ "rdfs:label": "downPayment",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:worstRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.",
+ "rdfs:label": "worstRating",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SingleFamilyResidence",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Residence type: Single-family home.",
+ "rdfs:label": "SingleFamilyResidence",
+ "rdfs:subClassOf": {
+ "@id": "schema:House"
+ }
+ },
+ {
+ "@id": "schema:discusses",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the CreativeWork associated with the UserComment.",
+ "rdfs:label": "discusses",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:vehicleModelDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
+ "rdfs:label": "vehicleModelDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:MusicRelease",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A MusicRelease is a specific release of a music album.",
+ "rdfs:label": "MusicRelease",
+ "rdfs:subClassOf": {
+ "@id": "schema:MusicPlaylist"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:EmployerAggregateRating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An aggregate rating of an Organization related to its role as an employer.",
+ "rdfs:label": "EmployerAggregateRating",
+ "rdfs:subClassOf": {
+ "@id": "schema:AggregateRating"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1689"
+ }
+ },
+ {
+ "@id": "schema:associatedAnatomy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomy of the underlying organ system or structures associated with this entity.",
+ "rdfs:label": "associatedAnatomy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PhysicalActivity"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:accessibilityHazard",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).",
+ "rdfs:label": "accessibilityHazard",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Female",
+ "@type": "schema:GenderType",
+ "rdfs:comment": "The female gender.",
+ "rdfs:label": "Female"
+ },
+ {
+ "@id": "schema:Episode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media episode (e.g. TV, radio, video game) which can be part of a series or season.",
+ "rdfs:label": "Episode",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:ReviewNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[NewsArticle]] and [[CriticReview]] providing a professional critic's assessment of a service, product, performance, or artistic or literary work.",
+ "rdfs:label": "ReviewNewsArticle",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:NewsArticle"
+ },
+ {
+ "@id": "schema:CriticReview"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SeatingMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A seating map.",
+ "rdfs:label": "SeatingMap"
+ },
+ {
+ "@id": "schema:legislationDateVersion",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#version_date"
+ },
+ "rdfs:comment": "The point-in-time at which the provided description of the legislation is valid (e.g.: when looking at the law on the 2016-04-07 (= dateVersion), I get the consolidation of 2015-04-12 of the \"National Insurance Contributions Act 2015\")",
+ "rdfs:label": "legislationDateVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#version_date"
+ }
+ },
+ {
+ "@id": "schema:color",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The color of the product.",
+ "rdfs:label": "color",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:checkinTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The earliest someone may check into a lodging establishment.",
+ "rdfs:label": "checkinTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:LodgingReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PriceSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup. It is recommended to use [[MonetaryAmount]] to describe independent amounts of money such as a salary, credit card limits, etc.",
+ "rdfs:label": "PriceSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:EvidenceLevelB",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Data derived from a single randomized trial, or nonrandomized studies.",
+ "rdfs:label": "EvidenceLevelB",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementBust",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of bust. Used, for example, to fit women's suits.",
+ "rdfs:label": "BodyMeasurementBust",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Person",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "foaf:Person"
+ },
+ "rdfs:comment": "A person (alive, dead, undead, or fictional).",
+ "rdfs:label": "Person",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:HomeGoodsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A home goods store.",
+ "rdfs:label": "HomeGoodsStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:comprisedOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system.",
+ "rdfs:label": "comprisedOf",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalSystem"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalStructure"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:doseUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unit of the dose, e.g. 'mg'.",
+ "rdfs:label": "doseUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:artform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.",
+ "rdfs:label": "artform",
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:warrantyPromise",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The warranty promise(s) included in the offer.",
+ "rdfs:label": "warrantyPromise",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SellAction"
+ },
+ {
+ "@id": "schema:BuyAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:warranty"
+ }
+ },
+ {
+ "@id": "schema:lodgingUnitDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A full description of the lodging unit.",
+ "rdfs:label": "lodgingUnitDescription",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:costCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency (in 3-letter) of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217. ",
+ "rdfs:label": "costCurrency",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:episode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An episode of a TV, radio or game media within a series or season.",
+ "rdfs:label": "episode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Episode"
+ }
+ },
+ {
+ "@id": "schema:ClaimReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).",
+ "rdfs:label": "ClaimReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1061"
+ }
+ },
+ {
+ "@id": "schema:NutritionInformation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Nutritional information about the recipe.",
+ "rdfs:label": "NutritionInformation",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ }
+ },
+ {
+ "@id": "schema:CT",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "X-ray computed tomography imaging.",
+ "rdfs:label": "CT",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:feesAndCommissionsSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.",
+ "rdfs:label": "feesAndCommissionsSpecification",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FinancialService"
+ },
+ {
+ "@id": "schema:FinancialProduct"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:seatRow",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The row location of the reserved seat (e.g., B).",
+ "rdfs:label": "seatRow",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:contentRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Official rating of a piece of content—for example, 'MPAA PG-13'.",
+ "rdfs:label": "contentRating",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Rating"
+ }
+ ]
+ },
+ {
+ "@id": "schema:possibleComplication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.",
+ "rdfs:label": "possibleComplication",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MediaManipulationRatingEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": " Codes for use with the [[mediaAuthenticityCategory]] property, indicating the authenticity of a media object (in the context of how it was published or shared). In general these codes are not mutually exclusive, although some combinations (such as 'original' versus 'transformed', 'edited' and 'staged') would be contradictory if applied in the same [[MediaReview]]. Note that the application of these codes is with regard to a piece of media shared or published in a particular context.",
+ "rdfs:label": "MediaManipulationRatingEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit527",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit527: Non-profit type referring to political organizations.",
+ "rdfs:label": "Nonprofit527",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:isrcCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The International Standard Recording Code for the recording.",
+ "rdfs:label": "isrcCode",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A program offered by an institution which determines the learning progress to achieve an outcome, usually a credential like a degree or certificate. This would define a discrete set of opportunities (e.g., job, courses) that together constitute a program with a clear start, end, set of requirements, and transition to a new occupational opportunity (e.g., a job), or sometimes a higher educational opportunity (e.g., an advanced degree).",
+ "rdfs:label": "EducationalOccupationalProgram",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:MenuItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food or drink item listed in a menu or menu section.",
+ "rdfs:label": "MenuItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:childMaxAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Maximal age of the child.",
+ "rdfs:label": "childMaxAge",
+ "schema:domainIncludes": {
+ "@id": "schema:ParentAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:healthPlanCopay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The copay amount.",
+ "rdfs:label": "healthPlanCopay",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:jobBenefits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of benefits associated with the job.",
+ "rdfs:label": "jobBenefits",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:branchCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\\n\\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.\n ",
+ "rdfs:label": "branchCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:OnlineEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "OnlineEventAttendanceMode - an event that is primarily conducted online. ",
+ "rdfs:label": "OnlineEventAttendanceMode",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:sampleType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
+ "rdfs:label": "sampleType",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:codeSampleType"
+ }
+ },
+ {
+ "@id": "schema:SizeSystemImperial",
+ "@type": "schema:SizeSystemEnumeration",
+ "rdfs:comment": "Imperial size system.",
+ "rdfs:label": "SizeSystemImperial",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:tocContinuation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.",
+ "rdfs:label": "tocContinuation",
+ "schema:domainIncludes": {
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:Recruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Recruiting participants.",
+ "rdfs:label": "Recruiting",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:paymentUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL for sending a payment.",
+ "rdfs:label": "paymentUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c23",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c23: Non-profit type referring to Veterans Organizations.",
+ "rdfs:label": "Nonprofit501c23",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:applicantLocationRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location(s) applicants can apply from. This is usually used for telecommuting jobs where the applicant does not need to be in a physical office. Note: This should not be used for citizenship or work visa requirements.",
+ "rdfs:label": "applicantLocationRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2083"
+ }
+ },
+ {
+ "@id": "schema:PotentialActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "A description of an action that is supported.",
+ "rdfs:label": "PotentialActionStatus"
+ },
+ {
+ "@id": "schema:recordedAt",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.",
+ "rdfs:label": "recordedAt",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordedIn"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:processorRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Processor architecture required to run the application (e.g. IA64).",
+ "rdfs:label": "processorRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:itemDefectReturnFees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return fees for returns of defect products.",
+ "rdfs:label": "itemDefectReturnFees",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnFeesEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:publication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A publication event associated with the item.",
+ "rdfs:label": "publication",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:physiologicalBenefits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specific physiologic benefits associated to the plan.",
+ "rdfs:label": "physiologicalBenefits",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:OneTimePayments",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "OneTimePayments: this is a benefit for one-time payments for individuals.",
+ "rdfs:label": "OneTimePayments",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:TravelAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of traveling from a fromLocation to a destination by a specified mode of transport, optionally with participants.",
+ "rdfs:label": "TravelAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:MoveAction"
+ }
+ },
+ {
+ "@id": "schema:sdLicense",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A license document that applies to this structured data, typically indicated by URL.",
+ "rdfs:label": "sdLicense",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
+ }
+ },
+ {
+ "@id": "schema:Project",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim.\nUse properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. \n ",
+ "rdfs:label": "Project",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryD",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryD",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:MaximumDoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
+ "rdfs:label": "MaximumDoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:printPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).",
+ "rdfs:label": "printPage",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Brand",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.",
+ "rdfs:label": "Brand",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:maximumPhysicalAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). ",
+ "rdfs:label": "maximumPhysicalAttendeeCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:numberOfPartialBathrooms",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsPartial field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). ",
+ "rdfs:label": "numberOfPartialBathrooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:HowToSupply",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A supply consumed when performing the instructions for how to achieve a result.",
+ "rdfs:label": "HowToSupply",
+ "rdfs:subClassOf": {
+ "@id": "schema:HowToItem"
+ }
+ },
+ {
+ "@id": "schema:ZoneBoardingPolicy",
+ "@type": "schema:BoardingPolicyType",
+ "rdfs:comment": "The airline boards by zones of the plane.",
+ "rdfs:label": "ZoneBoardingPolicy"
+ },
+ {
+ "@id": "schema:Nonprofit501f",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501f: Non-profit type referring to Cooperative Service Organizations.",
+ "rdfs:label": "Nonprofit501f",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:reservationStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current status of the reservation.",
+ "rdfs:label": "reservationStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReservationStatusType"
+ }
+ },
+ {
+ "@id": "schema:Audience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Intended audience for an item, i.e. the group for whom the item was created.",
+ "rdfs:label": "Audience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:ParcelDelivery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The delivery of a parcel either via the postal service or a commercial service.",
+ "rdfs:label": "ParcelDelivery",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:runsTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The vasculature the lymphatic structure runs, or efferents, to.",
+ "rdfs:label": "runsTo",
+ "schema:domainIncludes": {
+ "@id": "schema:LymphaticVessel"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:SeekToAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure.",
+ "rdfs:label": "SeekToAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2722"
+ }
+ },
+ {
+ "@id": "schema:Balance",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged to help maintain posture and balance.",
+ "rdfs:label": "Balance",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:subTrip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip.",
+ "rdfs:label": "subTrip",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:partOfTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:headline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Headline of the article.",
+ "rdfs:label": "headline",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:faxNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The fax number.",
+ "rdfs:label": "faxNumber",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:InForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that a legislation is in force.",
+ "rdfs:label": "InForce",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-inForce"
+ }
+ },
+ {
+ "@id": "schema:AuthorizeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of granting permission to an object.",
+ "rdfs:label": "AuthorizeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:InvoicePrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the invoice price of an offered product.",
+ "rdfs:label": "InvoicePrice",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:carrierRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).",
+ "rdfs:label": "carrierRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:MobileApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Neurologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that studies the nerves and nervous system and its respective disease states.",
+ "rdfs:label": "Neurologic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:CassetteFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "CassetteFormat.",
+ "rdfs:label": "CassetteFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:TraditionalChinese",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.",
+ "rdfs:label": "TraditionalChinese",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Homeopathic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.",
+ "rdfs:label": "Homeopathic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:trainNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for the train.",
+ "rdfs:label": "trainNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:membershipPointsEarned",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of membership points earned by the member. If necessary, the unitText can be used to express the units the points are issued in. (E.g. stars, miles, etc.)",
+ "rdfs:label": "membershipPointsEarned",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2085"
+ }
+ },
+ {
+ "@id": "schema:query",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The query used on this action.",
+ "rdfs:label": "query",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SearchAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:merchantReturnDays",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies either a fixed return date or the number of days (from the delivery date) that a product can be returned. Used when the [[returnPolicyCategory]] property is specified as [[MerchantReturnFiniteReturnWindow]].",
+ "rdfs:label": "merchantReturnDays",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:TouristAttraction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist attraction. In principle any Thing can be a [[TouristAttraction]], from a [[Mountain]] and [[LandmarksOrHistoricalBuildings]] to a [[LocalBusiness]]. This Type can be used on its own to describe a general [[TouristAttraction]], or be used as an [[additionalType]] to add tourist attraction properties to any other type. (See examples below)",
+ "rdfs:label": "TouristAttraction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Energy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.",
+ "rdfs:label": "Energy",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c19",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces.",
+ "rdfs:label": "Nonprofit501c19",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:director",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "director",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoObject"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:GovernmentBuilding",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A government building.",
+ "rdfs:label": "GovernmentBuilding",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:OfferForPurchase",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose\n [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
+ "rdfs:label": "OfferForPurchase",
+ "rdfs:subClassOf": {
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ }
+ },
+ {
+ "@id": "schema:EntryPoint",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An entry point, within some Web-based protocol.",
+ "rdfs:label": "EntryPoint",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ }
+ },
+ {
+ "@id": "schema:OfficialLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "All the documents published by an official publisher should have at least the legal value level \"OfficialLegalValue\". This indicates that the document was published by an organisation with the public task of making it available (e.g. a consolidated version of an EU directive published by the EU Office of Publications).",
+ "rdfs:label": "OfficialLegalValue",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-official"
+ }
+ },
+ {
+ "@id": "schema:HowItWorksHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content that discusses and explains how a particular health-related topic works, e.g. in terms of mechanisms and underlying science.",
+ "rdfs:label": "HowItWorksHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:Table",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A table on a Web page.",
+ "rdfs:label": "Table",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:isAcceptingNewPatients",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the provider is accepting new patients.",
+ "rdfs:label": "isAcceptingNewPatients",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:EnrollingByInvitation",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Enrolling participants by invitation only.",
+ "rdfs:label": "EnrollingByInvitation",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MayTreatHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Related topics may be treated by a Topic.",
+ "rdfs:label": "MayTreatHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:occupationalCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.",
+ "rdfs:label": "occupationalCategory",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:WorkBasedProgram"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Occupation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CategoryCode"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
+ }
+ ]
+ },
+ {
+ "@id": "schema:addOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).",
+ "rdfs:label": "addOn",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:identifier",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:identifier"
+ },
+ "rdfs:comment": "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n ",
+ "rdfs:label": "identifier",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OrderReturned",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order has been returned.",
+ "rdfs:label": "OrderReturned"
+ },
+ {
+ "@id": "schema:DefinedTermSet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of defined terms, for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.",
+ "rdfs:label": "DefinedTermSet",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:usesDevice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Device used to perform the test.",
+ "rdfs:label": "usesDevice",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalDevice"
+ }
+ },
+ {
+ "@id": "schema:FoodEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Food event.",
+ "rdfs:label": "FoodEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:CrossSectional",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.",
+ "rdfs:label": "CrossSectional",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:OrganizeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of manipulating/administering/supervising/controlling one or more objects.",
+ "rdfs:label": "OrganizeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:inAlbum",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The album to which this recording belongs.",
+ "rdfs:label": "inAlbum",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ }
+ },
+ {
+ "@id": "schema:targetDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The description of a node in an established educational framework.",
+ "rdfs:label": "targetDescription",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AutoDealer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An car dealership.",
+ "rdfs:label": "AutoDealer",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:InsuranceAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An Insurance agency.",
+ "rdfs:label": "InsuranceAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:MusicRecording",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music recording (track), usually a single song.",
+ "rdfs:label": "MusicRecording",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:HalalDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Islamic dietary practices.",
+ "rdfs:label": "HalalDiet"
+ },
+ {
+ "@id": "schema:permissionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of permission granted the person, organization, or audience.",
+ "rdfs:label": "permissionType",
+ "schema:domainIncludes": {
+ "@id": "schema:DigitalDocumentPermission"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DigitalDocumentPermissionType"
+ }
+ },
+ {
+ "@id": "schema:pagination",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pages"
+ },
+ "rdfs:comment": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".",
+ "rdfs:label": "pagination",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PublicationVolume"
+ },
+ {
+ "@id": "schema:PublicationIssue"
+ },
+ {
+ "@id": "schema:Chapter"
+ },
+ {
+ "@id": "schema:Article"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:Time",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)).",
+ "rdfs:label": "Time"
+ },
+ {
+ "@id": "schema:materialExtent",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "The quantity of the materials being described or an expression of the physical space they occupy."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "materialExtent"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1759"
+ }
+ },
+ {
+ "@id": "schema:mathExpression",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.",
+ "rdfs:label": "mathExpression",
+ "schema:domainIncludes": {
+ "@id": "schema:MathSolver"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SolveMathAction"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupBig",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Big\" for wearables.",
+ "rdfs:label": "WearableSizeGroupBig",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:GatedResidenceCommunity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Residence type: Gated community.",
+ "rdfs:label": "GatedResidenceCommunity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Residence"
+ }
+ },
+ {
+ "@id": "schema:Diagnostic",
+ "@type": "schema:MedicalDevicePurpose",
+ "rdfs:comment": "A medical device used for diagnostic purposes.",
+ "rdfs:label": "Diagnostic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Courthouse",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A courthouse.",
+ "rdfs:label": "Courthouse",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:ComedyClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A comedy club.",
+ "rdfs:label": "ComedyClub",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:AerobicActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.",
+ "rdfs:label": "AerobicActivity",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SpreadsheetDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A spreadsheet file.",
+ "rdfs:label": "SpreadsheetDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:Locksmith",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A locksmith.",
+ "rdfs:label": "Locksmith",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:MediaObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset, i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 [[AudioObject]]s).",
+ "rdfs:label": "MediaObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:True",
+ "@type": "schema:Boolean",
+ "rdfs:comment": "The boolean value true.",
+ "rdfs:label": "True"
+ },
+ {
+ "@id": "schema:albumProductionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Classification of the album by its type of content: soundtrack, live album, studio album, etc.",
+ "rdfs:label": "albumProductionType",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbumProductionType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:schoolClosuresInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about school closures.",
+ "rdfs:label": "schoolClosuresInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:numberOfForwardGears",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total number of forward gears available for the transmission system of the vehicle.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfForwardGears",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DietarySupplement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.",
+ "rdfs:label": "DietarySupplement",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Substance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:departureStation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The station from which the train departs.",
+ "rdfs:label": "departureStation",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:TrainStation"
+ }
+ },
+ {
+ "@id": "schema:ticketedSeat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The seat associated with the ticket.",
+ "rdfs:label": "ticketedSeat",
+ "schema:domainIncludes": {
+ "@id": "schema:Ticket"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Seat"
+ }
+ },
+ {
+ "@id": "schema:WeaponConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is intended to induce bodily harm, for example guns, mace, combat knives, brass knuckles, nail or other bombs, and spears.",
+ "rdfs:label": "WeaponConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:menuAddOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.",
+ "rdfs:label": "menuAddOn",
+ "schema:domainIncludes": {
+ "@id": "schema:MenuItem"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:MenuSection"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1541"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemUS",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "United States size system for wearables.",
+ "rdfs:label": "WearableSizeSystemUS",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Withdrawn",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Withdrawn.",
+ "rdfs:label": "Withdrawn",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:recipeIngredient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
+ "rdfs:label": "recipeIngredient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:supply"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:OwnershipInfo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value providing information about when a certain organization or person owned a certain product.",
+ "rdfs:label": "OwnershipInfo",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:fiberContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of fiber.",
+ "rdfs:label": "fiberContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:Completed",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Completed.",
+ "rdfs:label": "Completed",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:healthPlanDrugOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "TODO.",
+ "rdfs:label": "healthPlanDrugOption",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:BioChemEntity",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Any biological, chemical, or biochemical thing. For example: a protein; a gene; a chemical; a synthetic chemical.",
+ "rdfs:label": "BioChemEntity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:NoteDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A file containing a note, primarily for the author.",
+ "rdfs:label": "NoteDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:Float",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: Floating number.",
+ "rdfs:label": "Float",
+ "rdfs:subClassOf": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:industry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The industry associated with the job position.",
+ "rdfs:label": "industry",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:inLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].",
+ "rdfs:label": "inLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PronounceableText"
+ },
+ {
+ "@id": "schema:LinkRole"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:WriteAction"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:CommunicateAction"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Language"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2382"
+ }
+ },
+ {
+ "@id": "schema:Consortium",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Consortium is a membership [[Organization]] whose members are typically Organizations.",
+ "rdfs:label": "Consortium",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1559"
+ }
+ },
+ {
+ "@id": "schema:PrescriptionOnly",
+ "@type": "schema:DrugPrescriptionStatus",
+ "rdfs:comment": "Available by prescription only.",
+ "rdfs:label": "PrescriptionOnly",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:GovernmentOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A governmental organization or agency.",
+ "rdfs:label": "GovernmentOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:employmentUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.",
+ "rdfs:label": "employmentUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2296"
+ }
+ },
+ {
+ "@id": "schema:interactingDrug",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.",
+ "rdfs:label": "interactingDrug",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:BroadcastService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A delivery service through which content is provided via broadcast over the air or online.",
+ "rdfs:label": "BroadcastService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:CurrencyConversionService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service to convert funds from one currency to another currency.",
+ "rdfs:label": "CurrencyConversionService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:startDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "startDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ },
+ {
+ "@id": "schema:DatedMoneySpecification"
+ },
+ {
+ "@id": "schema:Role"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2486"
+ }
+ },
+ {
+ "@id": "schema:UnincorporatedAssociationCharity",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated (UK).",
+ "rdfs:label": "UnincorporatedAssociationCharity",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupGirls",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Girls\" for wearables.",
+ "rdfs:label": "WearableSizeGroupGirls",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:AssignAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of allocating an action/event/task to some destination (someone or something).",
+ "rdfs:label": "AssignAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:Boolean",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "Boolean: True or False.",
+ "rdfs:label": "Boolean"
+ },
+ {
+ "@id": "schema:DigitalDocumentPermission",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permission for a particular person or group to access a particular file.",
+ "rdfs:label": "DigitalDocumentPermission",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:hasMenu",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
+ "rdfs:label": "hasMenu",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Menu"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BookmarkAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent bookmarks/flags/labels/tags/marks an object.",
+ "rdfs:label": "BookmarkAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:dropoffTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "When a rental car can be dropped off.",
+ "rdfs:label": "dropoffTime",
+ "schema:domainIncludes": {
+ "@id": "schema:RentalCarReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:BedDetails",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also [[BedType]] (under development).",
+ "rdfs:label": "BedDetails",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelCustomerResponsibility",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Indicated that creating a return label is the responsibility of the customer.",
+ "rdfs:label": "ReturnLabelCustomerResponsibility",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:artEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").",
+ "rdfs:label": "artEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EventPostponed",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been postponed and no new date has been set. The event's previousStartDate should be set.",
+ "rdfs:label": "EventPostponed"
+ },
+ {
+ "@id": "schema:publicAccess",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value",
+ "rdfs:label": "publicAccess",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:Psychiatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.",
+ "rdfs:label": "Psychiatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:domiciledMortgage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether borrower is a resident of the jurisdiction where the property is located.",
+ "rdfs:label": "domiciledMortgage",
+ "schema:domainIncludes": {
+ "@id": "schema:MortgageLoan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoTouches",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) touch: \"they have at least one boundary point in common, but no interior points.\" (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)",
+ "rdfs:label": "geoTouches",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:box",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.",
+ "rdfs:label": "box",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoShape"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:lender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The person that lends the object being borrowed.",
+ "rdfs:label": "lender",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:BorrowAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Muscle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.",
+ "rdfs:label": "Muscle",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Ultrasound",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Ultrasound imaging.",
+ "rdfs:label": "Ultrasound",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Action",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](http://schema.org/docs/actions.html).",
+ "rdfs:label": "Action",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ }
+ },
+ {
+ "@id": "schema:BroadcastFrequencySpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The frequency in MHz and the modulation used for a particular BroadcastService.",
+ "rdfs:label": "BroadcastFrequencySpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:relatedStructure",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.",
+ "rdfs:label": "relatedStructure",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalSystem"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:TripleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.",
+ "rdfs:label": "TripleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:workload",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.",
+ "rdfs:label": "workload",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Energy"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:expertConsiderations",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Medical expert advice related to the plan.",
+ "rdfs:label": "expertConsiderations",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AllergiesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the allergy-related aspects of a health topic.",
+ "rdfs:label": "AllergiesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:OfflineTemporarily",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: OfflineTemporarily. Server is offline now but it can be online soon.",
+ "rdfs:label": "OfflineTemporarily"
+ },
+ {
+ "@id": "schema:availableAtOrFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place(s) from which the offer can be obtained (e.g. store locations).",
+ "rdfs:label": "availableAtOrFrom",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:areaServed"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Demand"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:sportsActivityLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The sports activity location where this action occurred.",
+ "rdfs:label": "sportsActivityLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:Nose",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Nose function assessment with clinical examination.",
+ "rdfs:label": "Nose",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:newsUpdatesAndGuidelines",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page with news updates and guidelines. This could often be (but is not required to be) the main page containing [[SpecialAnnouncement]] markup on a site.",
+ "rdfs:label": "newsUpdatesAndGuidelines",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:partySize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of people the reservation should accommodate.",
+ "rdfs:label": "partySize",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TaxiReservation"
+ },
+ {
+ "@id": "schema:FoodEstablishmentReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FundingAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages\n the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s).\n A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc.\n \nExamples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation, ...\n ",
+ "rdfs:label": "FundingAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:Project"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:frequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How often the dose is taken, e.g. 'daily'.",
+ "rdfs:label": "frequency",
+ "schema:domainIncludes": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:alternativeOf",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Another gene which is a variation of this one.",
+ "rdfs:label": "alternativeOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Gene"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Gene"
+ }
+ },
+ {
+ "@id": "schema:geoCoveredBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCoveredBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:CourseInstance",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.",
+ "rdfs:label": "CourseInstance",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:numberOfCredits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.",
+ "rdfs:label": "numberOfCredits",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Course"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:StructuredValue"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:material",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A material that something is made from, e.g. leather, wool, cotton, paper.",
+ "rdfs:label": "material",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HowToItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An item used as either a tool or supply when performing the instructions for how to achieve a result.",
+ "rdfs:label": "HowToItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:ListItem"
+ }
+ },
+ {
+ "@id": "schema:benefits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of benefits associated with the job.",
+ "rdfs:label": "benefits",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:jobBenefits"
+ }
+ },
+ {
+ "@id": "schema:propertyID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific ID of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.",
+ "rdfs:label": "propertyID",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValue"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PlasticSurgery",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.",
+ "rdfs:label": "PlasticSurgery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:telephone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The telephone number.",
+ "rdfs:label": "telephone",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:accommodationFloorPlan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A floorplan of some [[Accommodation]].",
+ "rdfs:label": "accommodationFloorPlan",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:Residence"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:FloorPlan"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:Dentistry",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A branch of medicine that is involved in the dental care.",
+ "rdfs:label": "Dentistry",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:taxID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
+ "rdfs:label": "taxID",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:hasCourseInstance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.",
+ "rdfs:label": "hasCourseInstance",
+ "schema:domainIncludes": {
+ "@id": "schema:Course"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CourseInstance"
+ }
+ },
+ {
+ "@id": "schema:ExchangeRateSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing exchange rate.",
+ "rdfs:label": "ExchangeRateSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SportsEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Sports event.",
+ "rdfs:label": "SportsEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c17",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts.",
+ "rdfs:label": "Nonprofit501c17",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:MedicalCause",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.",
+ "rdfs:label": "MedicalCause",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:priceCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "priceCurrency",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TradeAction"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Ticket"
+ },
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:restPeriods",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How often one should break from the activity.",
+ "rdfs:label": "restPeriods",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HealthPlanFormulary",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "For a given health insurance plan, the specification for costs and coverage of prescription drugs. ",
+ "rdfs:label": "HealthPlanFormulary",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:SpokenWordAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "SpokenWordAlbum.",
+ "rdfs:label": "SpokenWordAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:FilmAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of capturing sound and moving images on film, video, or digitally.",
+ "rdfs:label": "FilmAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:SelfStorage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A self-storage facility.",
+ "rdfs:label": "SelfStorage",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:billingIncrement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.",
+ "rdfs:label": "billingIncrement",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:arrivalTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's arrival terminal.",
+ "rdfs:label": "arrivalTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WPFooter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The footer section of the page.",
+ "rdfs:label": "WPFooter",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:DesktopWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of 'desktop' browsers as a Web Platform.",
+ "rdfs:label": "DesktopWebPlatform",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:MulticellularParasite",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Multicellular parasite that causes an infection.",
+ "rdfs:label": "MulticellularParasite",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ViolenceConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item shows or promotes violence.",
+ "rdfs:label": "ViolenceConsideration",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementChest",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of chest. Used, for example, to fit men's suits.",
+ "rdfs:label": "BodyMeasurementChest",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:energyEfficiencyScaleMax",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
+ "rdfs:label": "energyEfficiencyScaleMax",
+ "schema:domainIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EUEnergyEfficiencyEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:reviewCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The count of total number of reviews.",
+ "rdfs:label": "reviewCount",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateRating"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:DataFeedItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single item within a larger data feed.",
+ "rdfs:label": "DataFeedItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Oncologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.",
+ "rdfs:label": "Oncologic",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:area",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The area within which users can expect to reach the broadcast service.",
+ "rdfs:label": "area",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:serviceArea"
+ }
+ },
+ {
+ "@id": "schema:CompoundPriceSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A compound price specification is one that bundles multiple prices that all apply in combination for different dimensions of consumption. Use the name property of the attached unit price specification for indicating the dimension of a price component (e.g. \"electricity\" or \"final cleaning\").",
+ "rdfs:label": "CompoundPriceSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:QuantitativeValueDistribution",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statistical distribution of values.",
+ "rdfs:label": "QuantitativeValueDistribution",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:defaultValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.",
+ "rdfs:label": "defaultValue",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:browserRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.",
+ "rdfs:label": "browserRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:WebApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:predecessorOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer from a previous, often discontinued variant of the product to its newer variant.",
+ "rdfs:label": "predecessorOf",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductModel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ProductModel"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:callSign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.",
+ "rdfs:label": "callSign",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:Vehicle"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
+ }
+ },
+ {
+ "@id": "schema:AutoPartsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An auto parts store.",
+ "rdfs:label": "AutoPartsStore",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Store"
+ },
+ {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DatedMoneySpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]], use of that type is recommended.",
+ "rdfs:label": "DatedMoneySpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:MonetaryAmount"
+ }
+ },
+ {
+ "@id": "schema:Hospital",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hospital.",
+ "rdfs:label": "Hospital",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:EmergencyService"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:flightNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.",
+ "rdfs:label": "flightNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19OFMechVentPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19ofmechventpats - ED/OVERFLOW and VENTILATED: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed and on a mechanical ventilator.",
+ "rdfs:label": "cvdNumC19OFMechVentPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:EndorseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent approves/certifies/likes/supports/sanctions an object.",
+ "rdfs:label": "EndorseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:RandomizedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A randomized trial design.",
+ "rdfs:label": "RandomizedTrial",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:educationalFramework",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The framework to which the resource being described is aligned.",
+ "rdfs:label": "educationalFramework",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MedicalSpecialty",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.",
+ "rdfs:label": "MedicalSpecialty",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Specialty"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:InformAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of notifying someone of information pertinent to them, with no expectation of a response.",
+ "rdfs:label": "InformAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:legislationLegalForce",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#in_force"
+ },
+ "rdfs:comment": "Whether the legislation is currently in force, not in force, or partially in force.",
+ "rdfs:label": "legislationLegalForce",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:LegalForceStatus"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#in_force"
+ }
+ },
+ {
+ "@id": "schema:DriveWheelConfigurationValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A value indicating which roadwheels will receive torque.",
+ "rdfs:label": "DriveWheelConfigurationValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:partOfOrder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The overall order the items in this delivery were included in.",
+ "rdfs:label": "partOfOrder",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Order"
+ }
+ },
+ {
+ "@id": "schema:softwareAddOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Additional content for a software application.",
+ "rdfs:label": "softwareAddOn",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:aspect",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.",
+ "rdfs:label": "aspect",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalWebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:mainContentOfPage"
+ }
+ },
+ {
+ "@id": "schema:orderDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date order was placed.",
+ "rdfs:label": "orderDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:sender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The participant who is at the sending end of the action.",
+ "rdfs:label": "sender",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Message"
+ },
+ {
+ "@id": "schema:ReceiveAction"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Audience"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:healthPlanCoinsuranceOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?",
+ "rdfs:label": "healthPlanCoinsuranceOption",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:serviceType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of service being offered, e.g. veterans' benefits, emergency relief, etc.",
+ "rdfs:label": "serviceType",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:GovernmentBenefitsType"
+ }
+ ]
+ },
+ {
+ "@id": "schema:contraindication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contraindication for this therapy.",
+ "rdfs:label": "contraindication",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalDevice"
+ },
+ {
+ "@id": "schema:MedicalTherapy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalContraindication"
+ }
+ ]
+ },
+ {
+ "@id": "schema:legislationResponsible",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#responsibility_of"
+ },
+ "rdfs:comment": "An individual or organization that has some kind of responsibility for the legislation. Typically the ministry who is/was in charge of elaborating the legislation, or the adressee for potential questions about the legislation once it is published.",
+ "rdfs:label": "legislationResponsible",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#responsibility_of"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA2Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA2Plus",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:legislationJurisdiction",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#jurisdiction"
+ },
+ "rdfs:comment": "The jurisdiction from which the legislation originates.",
+ "rdfs:label": "legislationJurisdiction",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:jurisdiction"
+ },
+ {
+ "@id": "schema:spatialCoverage"
+ }
+ ],
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AdministrativeArea"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#jurisdiction"
+ }
+ },
+ {
+ "@id": "schema:Renal",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.",
+ "rdfs:label": "Renal",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:collectionSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "The number of items in the [[Collection]]."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "collectionSize"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Collection"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1759"
+ }
+ },
+ {
+ "@id": "schema:insertion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place of attachment of a muscle, or what the muscle moves.",
+ "rdfs:label": "insertion",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:MedicalEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice.",
+ "rdfs:label": "MedicalEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:datePublished",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date of first broadcast/publication.",
+ "rdfs:label": "datePublished",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:engineDisplacement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \\n\\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "engineDisplacement",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:MedicalEvidenceLevel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Level of evidence for a medical guideline. Enumerated type.",
+ "rdfs:label": "MedicalEvidenceLevel",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasDeliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Method used for delivery or shipping.",
+ "rdfs:label": "hasDeliveryMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryEvent"
+ },
+ {
+ "@id": "schema:ParcelDelivery"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ }
+ },
+ {
+ "@id": "schema:mediaItemAppearance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "In the context of a [[MediaReview]], indicates specific media item(s) that are grouped using a [[MediaReviewItem]].",
+ "rdfs:label": "mediaItemAppearance",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReviewItem"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:instructor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].",
+ "rdfs:label": "instructor",
+ "schema:domainIncludes": {
+ "@id": "schema:CourseInstance"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:programName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The program providing the membership.",
+ "rdfs:label": "programName",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:BoatReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for boat travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "BoatReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:SuperficialAnatomy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).",
+ "rdfs:label": "SuperficialAnatomy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:TheaterEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Theater performance.",
+ "rdfs:label": "TheaterEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:offers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.\n ",
+ "rdfs:label": "offers",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:AggregateOffer"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Trip"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:itemOffered"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:InStoreOnly",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available only at physical locations.",
+ "rdfs:label": "InStoreOnly"
+ },
+ {
+ "@id": "schema:trainingSalary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The estimated salary earned while in the program.",
+ "rdfs:label": "trainingSalary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:WorkBasedProgram"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmountDistribution"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ReadAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming written content.",
+ "rdfs:label": "ReadAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:primaryImageOfPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the main image on the page.",
+ "rdfs:label": "primaryImageOfPage",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ImageObject"
+ }
+ },
+ {
+ "@id": "schema:Answer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.",
+ "rdfs:label": "Answer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"
+ }
+ },
+ {
+ "@id": "schema:subTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A component test of the panel.",
+ "rdfs:label": "subTest",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTestPanel"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
+ }
+ },
+ {
+ "@id": "schema:BodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A body of water, such as a sea, ocean, or lake.",
+ "rdfs:label": "BodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:Registry",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "A registry-based study design.",
+ "rdfs:label": "Registry",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ActivationFee",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the activation fee part of the total price for an offered product, for example a cellphone contract.",
+ "rdfs:label": "ActivationFee",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:LaboratoryScience",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research.",
+ "rdfs:label": "LaboratoryScience",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:videoFrameSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The frame size of the video.",
+ "rdfs:label": "videoFrameSize",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:boardingGroup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The airline-specific indicator of boarding order / preference.",
+ "rdfs:label": "boardingGroup",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:returnPolicyCountry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The country where the product has to be sent to for returns, for example \"Ireland\" using the [[name]] property of [[Country]]. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). Note that this can be different from the country where the product was originally shipped from or sent to.",
+ "rdfs:label": "returnPolicyCountry",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Country"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:image",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].",
+ "rdfs:label": "image",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:ImageObject"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SafetyHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the safety-related aspects of a health topic.",
+ "rdfs:label": "SafetyHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:Map",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A map.",
+ "rdfs:label": "Map",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:PostalAddress",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The mailing address.",
+ "rdfs:label": "PostalAddress",
+ "rdfs:subClassOf": {
+ "@id": "schema:ContactPoint"
+ }
+ },
+ {
+ "@id": "schema:JobPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A listing that describes a job opening in a certain organization.",
+ "rdfs:label": "JobPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:dateline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [dateline](https://en.wikipedia.org/wiki/Dateline) is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.\n\nStructured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created, e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].\n\nDateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".\n ",
+ "rdfs:label": "dateline",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DonateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.",
+ "rdfs:label": "DonateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:GlutenFreeDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of gluten.",
+ "rdfs:label": "GlutenFreeDiet"
+ },
+ {
+ "@id": "schema:DrawAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.",
+ "rdfs:label": "DrawAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:pregnancyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Pregnancy category of this drug.",
+ "rdfs:label": "pregnancyCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugPregnancyCategory"
+ }
+ },
+ {
+ "@id": "schema:replacer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The object that replaces.",
+ "rdfs:label": "replacer",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ReplaceAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:numberOfEpisodes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of episodes in this season or series.",
+ "rdfs:label": "numberOfEpisodes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:directors",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A director of e.g. TV, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "directors",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:director"
+ }
+ },
+ {
+ "@id": "schema:arrivalGate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's arrival gate.",
+ "rdfs:label": "arrivalGate",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:naics",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
+ "rdfs:label": "naics",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:lyricist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person who wrote the words.",
+ "rdfs:label": "lyricist",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:endDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "endDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ },
+ {
+ "@id": "schema:DatedMoneySpecification"
+ },
+ {
+ "@id": "schema:Role"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2486"
+ }
+ },
+ {
+ "@id": "schema:location",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location of, for example, where an event is happening, where an organization is located, or where an action takes place.",
+ "rdfs:label": "location",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Action"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:InteractionCounter"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:VirtualLocation"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OrderDelivered",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing successful delivery of an order.",
+ "rdfs:label": "OrderDelivered"
+ },
+ {
+ "@id": "schema:ExerciseGym",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A gym.",
+ "rdfs:label": "ExerciseGym",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:ReturnInStore",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be made in a store.",
+ "rdfs:label": "ReturnInStore",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:applicationStartDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date at which the program begins collecting applications for the next enrollment cycle.",
+ "rdfs:label": "applicationStartDate",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:suggestedAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The age or age range for the intended audience or person, for example 3-12 months for infants, 1-5 years for toddlers.",
+ "rdfs:label": "suggestedAge",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:AddAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of editing by adding an object to a collection.",
+ "rdfs:label": "AddAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UpdateAction"
+ }
+ },
+ {
+ "@id": "schema:transcript",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.",
+ "rdfs:label": "transcript",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:AudioObject"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:addressRegion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country).",
+ "rdfs:label": "addressRegion",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:BenefitsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the benefits and advantages of usage or utilization of topic.",
+ "rdfs:label": "BenefitsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:firstAppearance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the first known occurrence of a [[Claim]] in some [[CreativeWork]].",
+ "rdfs:label": "firstAppearance",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workExample"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ }
+ },
+ {
+ "@id": "schema:jobLocationType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the job location (e.g. TELECOMMUTE for telecommute jobs).",
+ "rdfs:label": "jobLocationType",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1591"
+ }
+ },
+ {
+ "@id": "schema:Therapeutic",
+ "@type": "schema:MedicalDevicePurpose",
+ "rdfs:comment": "A medical device used for therapeutic purposes.",
+ "rdfs:label": "Therapeutic",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LegislativeBuilding",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A legislative building—for example, the state capitol.",
+ "rdfs:label": "LegislativeBuilding",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:icaoCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "ICAO identifier for an airport.",
+ "rdfs:label": "icaoCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Airport"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:vehicleConfiguration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.",
+ "rdfs:label": "vehicleConfiguration",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DefinitiveLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates a document for which the text is conclusively what the law says and is legally binding. (E.g. the digitally signed version of an Official Journal.)\n Something \"Definitive\" is considered to be also [[AuthoritativeLegalValue]].",
+ "rdfs:label": "DefinitiveLegalValue",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-definitive"
+ }
+ },
+ {
+ "@id": "schema:ShoeStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shoe store.",
+ "rdfs:label": "ShoeStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskEstimator",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any rule set or interactive tool for estimating the risk of developing a complication or condition.",
+ "rdfs:label": "MedicalRiskEstimator",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasMenuItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A food or drink item contained in a menu or menu section.",
+ "rdfs:label": "hasMenuItem",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MenuSection"
+ },
+ {
+ "@id": "schema:Menu"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:MenuItem"
+ }
+ },
+ {
+ "@id": "schema:FurnitureStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A furniture store.",
+ "rdfs:label": "FurnitureStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:name",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:title"
+ },
+ "rdfs:comment": "The name of the item.",
+ "rdfs:label": "name",
+ "rdfs:subPropertyOf": {
+ "@id": "rdfs:label"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MusicVideoObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music video file.",
+ "rdfs:label": "MusicVideoObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:participant",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Other co-agents that participated in the action indirectly. E.g. John wrote a book with *Steve*.",
+ "rdfs:label": "participant",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DrugLegalStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The legal availability status of a medical drug.",
+ "rdfs:label": "DrugLegalStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:multipleValues",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether multiple values are allowed for the property. Default is false.",
+ "rdfs:label": "multipleValues",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:maximumIntake",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
+ "rdfs:label": "maximumIntake",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Substance"
+ },
+ {
+ "@id": "schema:DrugStrength"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MaximumDoseSchedule"
+ }
+ },
+ {
+ "@id": "schema:musicArrangement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An arrangement derived from the composition.",
+ "rdfs:label": "musicArrangement",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:pageStart",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pageStart"
+ },
+ "rdfs:comment": "The page on which the work starts; for example \"135\" or \"xiii\".",
+ "rdfs:label": "pageStart",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Chapter"
+ },
+ {
+ "@id": "schema:Article"
+ },
+ {
+ "@id": "schema:PublicationVolume"
+ },
+ {
+ "@id": "schema:PublicationIssue"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:TireShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tire shop.",
+ "rdfs:label": "TireShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:risks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specific physiologic risks associated to the diet plan.",
+ "rdfs:label": "risks",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:tongueWeight",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR).\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "tongueWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:eligibleCustomerType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type(s) of customers for which the given offer is valid.",
+ "rdfs:label": "eligibleCustomerType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Demand"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:BusinessEntityType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:hasPart",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).",
+ "rdfs:label": "hasPart",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:numberOfEmployees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of employees in an organization, e.g. business.",
+ "rdfs:label": "numberOfEmployees",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BusinessAudience"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:productGroupID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a textual identifier for a ProductGroup.",
+ "rdfs:label": "productGroupID",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductGroup"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:recommendedIntake",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
+ "rdfs:label": "recommendedIntake",
+ "schema:domainIncludes": {
+ "@id": "schema:DietarySupplement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RecommendedDoseSchedule"
+ }
+ },
+ {
+ "@id": "schema:PublicationIssue",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.org/ontology/bibo/Issue"
+ },
+ "rdfs:comment": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "PublicationIssue",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:Service",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service provided by an organization, e.g. delivery service, print services, etc.",
+ "rdfs:label": "Service",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Obstetric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.",
+ "rdfs:label": "Obstetric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c13",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c13: Non-profit type referring to Cemetery Companies.",
+ "rdfs:label": "Nonprofit501c13",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Mountain",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A mountain, like Mount Whitney or Mount Everest.",
+ "rdfs:label": "Mountain",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:Pediatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that specializes in the care of infants, children and adolescents.",
+ "rdfs:label": "Pediatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c14",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds.",
+ "rdfs:label": "Nonprofit501c14",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:yearsInOperation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The age of the business.",
+ "rdfs:label": "yearsInOperation",
+ "schema:domainIncludes": {
+ "@id": "schema:BusinessAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:itemListElement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\\n\\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\\n\\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.",
+ "rdfs:label": "itemListElement",
+ "schema:domainIncludes": {
+ "@id": "schema:ItemList"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Corporation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Organization: A business corporation.",
+ "rdfs:label": "Corporation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:gtin13",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin13",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:RsvpAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of notifying an event organizer as to whether you expect to attend the event.",
+ "rdfs:label": "RsvpAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InformAction"
+ }
+ },
+ {
+ "@id": "schema:suggestedMaxAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Maximum recommended age in years for the audience or user.",
+ "rdfs:label": "suggestedMaxAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:UserReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]].",
+ "rdfs:label": "UserReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ }
+ },
+ {
+ "@id": "schema:DateTime",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).",
+ "rdfs:label": "DateTime"
+ },
+ {
+ "@id": "schema:PaymentAutomaticallyApplied",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "An automatic payment system is in place and will be used.",
+ "rdfs:label": "PaymentAutomaticallyApplied"
+ },
+ {
+ "@id": "schema:Atlas",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.",
+ "rdfs:label": "Atlas",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.productontology.org/id/Atlas"
+ }
+ },
+ {
+ "@id": "schema:PaintAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing a painting, typically with paint and canvas as instruments.",
+ "rdfs:label": "PaintAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:hasDriveThroughService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.",
+ "rdfs:label": "hasDriveThroughService",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:responsibilities",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Responsibilities associated with this role or Occupation.",
+ "rdfs:label": "responsibilities",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:OrderAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent orders an object/product/service to be delivered/sent.",
+ "rdfs:label": "OrderAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemDE",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "German size system for wearables.",
+ "rdfs:label": "WearableSizeSystemDE",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:serialNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
+ "rdfs:label": "serialNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:IndividualProduct"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Newspaper",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter (i.e. business, culture, education). Often published daily.",
+ "rdfs:label": "Newspaper",
+ "rdfs:subClassOf": {
+ "@id": "schema:Periodical"
+ },
+ "schema:isPartOf": {
+ "@id": "http://bib.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.productontology.org/id/Newspaper"
+ }
+ },
+ {
+ "@id": "schema:RiverBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A river (for example, the broad majestic Shannon).",
+ "rdfs:label": "RiverBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:Question",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.",
+ "rdfs:label": "Question",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"
+ }
+ },
+ {
+ "@id": "schema:vendor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "'vendor' is an earlier term for 'seller'.",
+ "rdfs:label": "vendor",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:BuyAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:seller"
+ }
+ },
+ {
+ "@id": "schema:DiagnosticLab",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical laboratory that offers on-site or off-site diagnostic services.",
+ "rdfs:label": "DiagnosticLab",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Paperback",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Paperback.",
+ "rdfs:label": "Paperback"
+ },
+ {
+ "@id": "schema:directApply",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether an [[url]] that is associated with a [[JobPosting]] enables direct application for the job, via the posting website. A job posting is considered to have directApply of [[True]] if an application process for the specified job can be directly initiated via the url(s) given (noting that e.g. multiple internet domains might nevertheless be involved at an implementation level). A value of [[False]] is appropriate if there is no clear path to applying directly online for the specified job, navigating directly from the JobPosting url(s) supplied.",
+ "rdfs:label": "directApply",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2907"
+ }
+ },
+ {
+ "@id": "schema:LowCalorieDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced calorie intake.",
+ "rdfs:label": "LowCalorieDiet"
+ },
+ {
+ "@id": "schema:CheckoutPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Checkout page.",
+ "rdfs:label": "CheckoutPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:DemoAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "DemoAlbum.",
+ "rdfs:label": "DemoAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Resort",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A resort is a place used for relaxation or recreation, attracting visitors for holidays or vacations. Resorts are places, towns or sometimes commercial establishments operated by a single company (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Resort).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n ",
+ "rdfs:label": "Resort",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:dateIssued",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date the ticket was issued.",
+ "rdfs:label": "dateIssued",
+ "schema:domainIncludes": {
+ "@id": "schema:Ticket"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:specialOpeningHoursSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The special opening hours of a certain place.\\n\\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].\n ",
+ "rdfs:label": "specialOpeningHoursSpecification",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ },
+ {
+ "@id": "schema:NewsMediaOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A News/Media organization such as a newspaper or TV station.",
+ "rdfs:label": "NewsMediaOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DefenceEstablishment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A defence establishment, such as an army or navy base.",
+ "rdfs:label": "DefenceEstablishment",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:MedicalGuidelineRecommendation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.",
+ "rdfs:label": "MedicalGuidelineRecommendation",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:HotelRoom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hotel room is a single room in a hotel.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "HotelRoom",
+ "rdfs:subClassOf": {
+ "@id": "schema:Room"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:Infectious",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Something in medical science that pertains to infectious diseases, i.e. caused by bacterial, viral, fungal or parasitic infections.",
+ "rdfs:label": "Infectious",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:accelerationTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\\n\\nTypical unit code(s): SEC for seconds\\n\\n* Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use \"SEC\" for seconds and indicate the velocities in the [[name]] of the [[QuantitativeValue]], or use [[valueReference]] with a [[QuantitativeValue]] of 0..60 mph or 0..100 km/h to specify the reference speeds.",
+ "rdfs:label": "accelerationTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:minValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The lower value of some characteristic or property.",
+ "rdfs:label": "minValue",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:includesHealthPlanNetwork",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Networks covered by this plan.",
+ "rdfs:label": "includesHealthPlanNetwork",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthPlanNetwork"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupShort",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Short\" for wearables.",
+ "rdfs:label": "WearableSizeGroupShort",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:quest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The task that a player-controlled character, or group of characters may complete in order to gain a reward.",
+ "rdfs:label": "quest",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Game"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:recipeCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category of the recipe—for example, appetizer, entree, etc.",
+ "rdfs:label": "recipeCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:seatingCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons ",
+ "rdfs:label": "seatingCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:episodeNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Position of the episode within an ordered group of episodes.",
+ "rdfs:label": "episodeNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Episode"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:School",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A school.",
+ "rdfs:label": "School",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:toRecipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of recipient. The recipient who was directly sent the message.",
+ "rdfs:label": "toRecipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:recipient"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ]
+ },
+ {
+ "@id": "schema:mediaAuthenticityCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).",
+ "rdfs:label": "mediaAuthenticityCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReview"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaManipulationRatingEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:relatedCondition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical condition associated with this anatomy.",
+ "rdfs:label": "relatedCondition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
+ }
+ },
+ {
+ "@id": "schema:AnalysisNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An AnalysisNewsArticle is a [[NewsArticle]] that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.",
+ "rdfs:label": "AnalysisNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:cvdNumICUBedsOcc",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.",
+ "rdfs:label": "cvdNumICUBedsOcc",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:Installment",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the installment pricing component of the total price for an offered product.",
+ "rdfs:label": "Installment",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:codeRepository",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, GitHub, CodePlex).",
+ "rdfs:label": "codeRepository",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:AnatomicalSystem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can include circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.",
+ "rdfs:label": "AnatomicalSystem",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MediaReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[MediaReview]] is a more specialized form of Review dedicated to the evaluation of media content online, typically in the context of fact-checking and misinformation.\n For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types. This definition is\n a work in progress. While the [[MediaManipulationRatingEnumeration]] list reflects significant community review amongst fact-checkers and others working\n to combat misinformation, the specific structures for representing media objects, their versions and publication context, are still evolving. Similarly, best practices for the relationship between [[MediaReview]] and [[ClaimReview]] markup have not yet been finalized.",
+ "rdfs:label": "MediaReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:rsvpResponse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The response (yes, no, maybe) to the RSVP.",
+ "rdfs:label": "rsvpResponse",
+ "schema:domainIncludes": {
+ "@id": "schema:RsvpAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RsvpResponseType"
+ }
+ },
+ {
+ "@id": "schema:ExercisePlan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.",
+ "rdfs:label": "ExercisePlan",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:PhysicalActivity"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:sourceOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Organization on whose behalf the creator was working.",
+ "rdfs:label": "sourceOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:LowLactoseDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet appropriate for people with lactose intolerance.",
+ "rdfs:label": "LowLactoseDiet"
+ },
+ {
+ "@id": "schema:sku",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
+ "rdfs:label": "sku",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Quotation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A quotation. Often but not necessarily from some written work, attributable to a real world author and - if associated with a fictional character - to any fictional Person. Use [[isBasedOn]] to link to source/origin. The [[recordedIn]] property can be used to reference a Quotation from an [[Event]].",
+ "rdfs:label": "Quotation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/271"
+ }
+ },
+ {
+ "@id": "schema:orderItemNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The identifier of the order item.",
+ "rdfs:label": "orderItemNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:OrderItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:speechToTextMarkup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898).",
+ "rdfs:label": "speechToTextMarkup",
+ "schema:domainIncludes": {
+ "@id": "schema:PronounceableText"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:gettingTestedInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.",
+ "rdfs:label": "gettingTestedInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:DisagreeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "DisagreeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:deathPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the person died.",
+ "rdfs:label": "deathPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:OnlineOnly",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available only online.",
+ "rdfs:label": "OnlineOnly"
+ },
+ {
+ "@id": "schema:additionalType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
+ "rdfs:label": "additionalType",
+ "rdfs:subPropertyOf": {
+ "@id": "rdf:type"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:eduQuestionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".",
+ "rdfs:label": "eduQuestionType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SolveMathAction"
+ },
+ {
+ "@id": "schema:Question"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2636"
+ }
+ },
+ {
+ "@id": "schema:geoContains",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoContains",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeospatialGeometry"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PropertyValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.\\n\\n Always use specific schema.org properties when a) they exist and b) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.\n ",
+ "rdfs:label": "PropertyValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:identifyingTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A diagnostic test that can identify this sign.",
+ "rdfs:label": "identifyingTest",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalSign"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
+ }
+ },
+ {
+ "@id": "schema:minimumPaymentDue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The minimum payment required at this time.",
+ "rdfs:label": "minimumPaymentDue",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ]
+ },
+ {
+ "@id": "schema:alumniOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that the person is an alumni of.",
+ "rdfs:label": "alumniOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:alumni"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:EducationalOrganization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:colleagues",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A colleague of the person.",
+ "rdfs:label": "colleagues",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:colleague"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemUK",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "United Kingdom size system for wearables.",
+ "rdfs:label": "WearableSizeSystemUK",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:acceptedPaymentMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The payment method(s) accepted by seller for this offer.",
+ "rdfs:label": "acceptedPaymentMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:PaymentMethod"
+ },
+ {
+ "@id": "schema:LoanOrCredit"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:usesHealthPlanIdStandard",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The standard for interpreting the Plan ID. The preferred is \"HIOS\". See the Centers for Medicare & Medicaid Services for more details.",
+ "rdfs:label": "usesHealthPlanIdStandard",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelDownloadAndPrint",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Indicated that a return label must be downloaded and printed by the customer.",
+ "rdfs:label": "ReturnLabelDownloadAndPrint",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:BoardingPolicyType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of boarding policy used by an airline.",
+ "rdfs:label": "BoardingPolicyType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:sponsor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
+ "rdfs:label": "sponsor",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:MedicalStudy"
+ },
+ {
+ "@id": "schema:Grant"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:availableDeliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The delivery method(s) available for this offer.",
+ "rdfs:label": "availableDeliveryMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:hasCategoryCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A Category code contained in this code set.",
+ "rdfs:label": "hasCategoryCode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasDefinedTerm"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CategoryCodeSet"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CategoryCode"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:downloadUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If the file can be downloaded, URL to download the binary.",
+ "rdfs:label": "downloadUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:availableFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "When the item is available for pickup from the store, locker, etc.",
+ "rdfs:label": "availableFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:DeliveryEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:musicBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The composer of the soundtrack.",
+ "rdfs:label": "musicBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MusicGroup"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isUnlabelledFallback",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[ShippingRateSettings]] are intended to apply to all [[OfferShippingDetails]] published by the same merchant, when referenced by a [[shippingSettingsLink]] in those settings. It is not meaningful to use a 'true' value for this property alongside a transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings.",
+ "rdfs:label": "isUnlabelledFallback",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ },
+ {
+ "@id": "schema:ShippingRateSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:incentives",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of bonus and commission compensation aspects of the job.",
+ "rdfs:label": "incentives",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:incentiveCompensation"
+ }
+ },
+ {
+ "@id": "schema:Wholesale",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the wholesale acquisition cost of the drug.",
+ "rdfs:label": "Wholesale",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ItemPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A page devoted to a single item, such as a particular product or hotel.",
+ "rdfs:label": "ItemPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA1Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA1Plus",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:organizer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organizer of an Event.",
+ "rdfs:label": "organizer",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Reservoir",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.",
+ "rdfs:label": "Reservoir",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:EBook",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Ebook.",
+ "rdfs:label": "EBook"
+ },
+ {
+ "@id": "schema:mechanismOfAction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.",
+ "rdfs:label": "mechanismOfAction",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:LocalBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.",
+ "rdfs:label": "LocalBusiness",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://www.w3.org/ns/regorg#RegisteredOrganization"
+ }
+ },
+ {
+ "@id": "schema:SelfCareHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Self care actions or measures that can be taken to sooth, health or avoid a topic. This may be carried at home and can be carried/managed by the person itself.",
+ "rdfs:label": "SelfCareHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:yearBuilt",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). ",
+ "rdfs:label": "yearBuilt",
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:RisksOrComplicationsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about the risk factors and possible complications that may follow a topic.",
+ "rdfs:label": "RisksOrComplicationsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:PhysicalExam",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of physical examination of a patient performed by a physician. ",
+ "rdfs:label": "PhysicalExam",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:gameTip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Links to tips, tactics, etc.",
+ "rdfs:label": "gameTip",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoGame"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Movie",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A movie.",
+ "rdfs:label": "Movie",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:videoQuality",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quality of the video.",
+ "rdfs:label": "videoQuality",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:False",
+ "@type": "schema:Boolean",
+ "rdfs:comment": "The boolean value false.",
+ "rdfs:label": "False"
+ },
+ {
+ "@id": "schema:playMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.",
+ "rdfs:label": "playMode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:GamePlayMode"
+ }
+ },
+ {
+ "@id": "schema:OfflineEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "OfflineEventAttendanceMode - an event that is primarily conducted offline. ",
+ "rdfs:label": "OfflineEventAttendanceMode",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:Integer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: Integer.",
+ "rdfs:label": "Integer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:artworkSurface",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.",
+ "rdfs:label": "artworkSurface",
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:spokenByCharacter",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.",
+ "rdfs:label": "spokenByCharacter",
+ "schema:domainIncludes": {
+ "@id": "schema:Quotation"
+ },
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/271"
+ }
+ },
+ {
+ "@id": "schema:OrderItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.",
+ "rdfs:label": "OrderItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:CaseSeries",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.",
+ "rdfs:label": "CaseSeries",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:coach",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person that acts in a coaching role for a sports team.",
+ "rdfs:label": "coach",
+ "schema:domainIncludes": {
+ "@id": "schema:SportsTeam"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:aircraft",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The kind of aircraft (e.g., \"Boeing 747\").",
+ "rdfs:label": "aircraft",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Vehicle"
+ }
+ ]
+ },
+ {
+ "@id": "schema:diagram",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.",
+ "rdfs:label": "diagram",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ImageObject"
+ }
+ },
+ {
+ "@id": "schema:stage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stage of the condition, if applicable.",
+ "rdfs:label": "stage",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalConditionStage"
+ }
+ },
+ {
+ "@id": "schema:Preschool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A preschool.",
+ "rdfs:label": "Preschool",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementWaist",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of natural waistline (between hip bones and lower ribs). Used, for example, to fit pants.",
+ "rdfs:label": "BodyMeasurementWaist",
+ "schema:isPartOf": {
+ "@id": "http://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:character",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Fictional person connected with a creative work.",
+ "rdfs:label": "character",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:CivicStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A public structure, such as a town hall or concert hall.",
+ "rdfs:label": "CivicStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:NotYetRecruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Not yet recruiting.",
+ "rdfs:label": "NotYetRecruiting",
+ "schema:isPartOf": {
+ "@id": "http://health-lifesci.schema.org"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/assets/schemaorg-current-https.jsonld b/assets/schemaorg-current-https.jsonld
new file mode 100644
index 00000000..fbde772c
--- /dev/null
+++ b/assets/schemaorg-current-https.jsonld
@@ -0,0 +1,42303 @@
+{
+ "@context": {
+ "brick": "https://brickschema.org/schema/Brick#",
+ "csvw": "http://www.w3.org/ns/csvw#",
+ "dc": "http://purl.org/dc/elements/1.1/",
+ "dcam": "http://purl.org/dc/dcam/",
+ "dcat": "http://www.w3.org/ns/dcat#",
+ "dcmitype": "http://purl.org/dc/dcmitype/",
+ "dcterms": "http://purl.org/dc/terms/",
+ "doap": "http://usefulinc.com/ns/doap#",
+ "foaf": "http://xmlns.com/foaf/0.1/",
+ "geo": "http://www.opengis.net/ont/geosparql#",
+ "odrl": "http://www.w3.org/ns/odrl/2/",
+ "org": "http://www.w3.org/ns/org#",
+ "owl": "http://www.w3.org/2002/07/owl#",
+ "prof": "http://www.w3.org/ns/dx/prof/",
+ "prov": "http://www.w3.org/ns/prov#",
+ "qb": "http://purl.org/linked-data/cube#",
+ "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
+ "schema": "https://schema.org/",
+ "sh": "http://www.w3.org/ns/shacl#",
+ "skos": "http://www.w3.org/2004/02/skos/core#",
+ "sosa": "http://www.w3.org/ns/sosa/",
+ "ssn": "http://www.w3.org/ns/ssn/",
+ "time": "http://www.w3.org/2006/time#",
+ "vann": "http://purl.org/vocab/vann/",
+ "void": "http://rdfs.org/ns/void#",
+ "wgs": "https://www.w3.org/2003/01/geo/wgs84_pos#",
+ "xsd": "http://www.w3.org/2001/XMLSchema#"
+ },
+ "@graph": [
+ {
+ "@id": "schema:pickupTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "When a taxi will pick up a passenger or a rental car can be picked up.",
+ "rdfs:label": "pickupTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:RentalCarReservation"
+ },
+ {
+ "@id": "schema:TaxiReservation"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:GeoShape",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.",
+ "rdfs:label": "GeoShape",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupMens",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Mens\" for wearables.",
+ "rdfs:label": "WearableSizeGroupMens",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:refundType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A refund type, from an enumerated list.",
+ "rdfs:label": "refundType",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RefundTypeEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:postalCodeBegin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "First postal code in a range (included).",
+ "rdfs:label": "postalCodeBegin",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalCodeRangeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:FrontWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Front-wheel drive is a transmission layout where the engine drives the front wheels.",
+ "rdfs:label": "FrontWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:inker",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who traces over the pencil drawings in ink after pencils are complete.",
+ "rdfs:label": "inker",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:MonetaryAmountDistribution",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statistical distribution of monetary amounts.",
+ "rdfs:label": "MonetaryAmountDistribution",
+ "rdfs:subClassOf": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19MechVentPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19mechventpats - HOSPITALIZED and VENTILATED: Patients hospitalized in an NHSN inpatient care location who have suspected or confirmed COVID-19 and are on a mechanical ventilator.",
+ "rdfs:label": "cvdNumC19MechVentPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:WorkersUnion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.",
+ "rdfs:label": "WorkersUnion",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/243"
+ }
+ },
+ {
+ "@id": "schema:potentialAction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.",
+ "rdfs:label": "potentialAction",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:publishedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An agent associated with the publication event.",
+ "rdfs:label": "publishedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationEvent"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Park",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A park.",
+ "rdfs:label": "Park",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:orderStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current status of the order.",
+ "rdfs:label": "orderStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OrderStatus"
+ }
+ },
+ {
+ "@id": "schema:PetStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A pet store.",
+ "rdfs:label": "PetStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:floorSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The size of the accommodation, e.g. in square meter or squarefoot.\nTypical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard ",
+ "rdfs:label": "floorSize",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:DDxElement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.",
+ "rdfs:label": "DDxElement",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:tickerSymbol",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO 15022.",
+ "rdfs:label": "tickerSymbol",
+ "schema:domainIncludes": {
+ "@id": "schema:Corporation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:geoCovers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCovers",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:iswcCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The International Standard Musical Work Code for the composition.",
+ "rdfs:label": "iswcCode",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:ReturnShippingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay the return shipping costs when returning a product.",
+ "rdfs:label": "ReturnShippingFees",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:Florist",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A florist.",
+ "rdfs:label": "Florist",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:AnatomicalStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.",
+ "rdfs:label": "AnatomicalStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:screenshot",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to a screenshot image of the app.",
+ "rdfs:label": "screenshot",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:ImageObject"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ticketNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for the ticket.",
+ "rdfs:label": "ticketNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:Ticket"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemBR",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Brazilian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemBR",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:actors",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An actor, e.g. in TV, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "actors",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:TVSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:actor"
+ }
+ },
+ {
+ "@id": "schema:NonprofitSBBI",
+ "@type": "schema:NLNonprofitType",
+ "rdfs:comment": "NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution (NL).",
+ "rdfs:label": "NonprofitSBBI",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:DataCatalog",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcat:Catalog"
+ },
+ "rdfs:comment": "A collection of datasets.",
+ "rdfs:label": "DataCatalog",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
+ }
+ },
+ {
+ "@id": "schema:WebPageElement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A web page element, like a table or an image.",
+ "rdfs:label": "WebPageElement",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:longitude",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).",
+ "rdfs:label": "longitude",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:servicePhone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The phone number to use to access the service.",
+ "rdfs:label": "servicePhone",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ }
+ },
+ {
+ "@id": "schema:Apartment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An apartment (in American English) or flat (in British English) is a self-contained housing unit (a type of residential real estate) that occupies only part of a building (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Apartment).",
+ "rdfs:label": "Apartment",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:LiteraryEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Literary event.",
+ "rdfs:label": "LiteraryEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:highPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The highest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "highPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateOffer"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:serviceArea",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area where the service is provided.",
+ "rdfs:label": "serviceArea",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AdministrativeArea"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:areaServed"
+ }
+ },
+ {
+ "@id": "schema:MovieClip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short segment/part of a movie.",
+ "rdfs:label": "MovieClip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Clip"
+ }
+ },
+ {
+ "@id": "schema:EducationEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Education event.",
+ "rdfs:label": "EducationEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:Abdomen",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Abdomen clinical examination.",
+ "rdfs:label": "Abdomen",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:embedUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.",
+ "rdfs:label": "embedUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:SocialEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Social event.",
+ "rdfs:label": "SocialEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:permissions",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).",
+ "rdfs:label": "permissions",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ImagingTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes.",
+ "rdfs:label": "ImagingTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:item",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists').",
+ "rdfs:label": "item",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:incentiveCompensation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of bonus and commission compensation aspects of the job.",
+ "rdfs:label": "incentiveCompensation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:InteractionCounter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.",
+ "rdfs:label": "InteractionCounter",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ }
+ },
+ {
+ "@id": "schema:priceRange",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The price range of the business, for example ```$$$```.",
+ "rdfs:label": "priceRange",
+ "schema:domainIncludes": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ParentAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics describing parents, who can be interested in viewing some content.",
+ "rdfs:label": "ParentAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:PeopleAudience"
+ }
+ },
+ {
+ "@id": "schema:recognizingAuthority",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.",
+ "rdfs:label": "recognizingAuthority",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:ProductModel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A datasheet or vendor specification of a product (in the sense of a prototypical description).",
+ "rdfs:label": "ProductModel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:originalMediaLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to the page containing an original version of the content, or directly to an online copy of the original [[MediaObject]] content, e.g. video file.",
+ "rdfs:label": "originalMediaLink",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReview"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebPage"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:constrainingProperty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a property used as a constraint to define a [[StatisticalPopulation]] with respect to the set of entities\n corresponding to an indicated type (via [[populationType]]).",
+ "rdfs:label": "constrainingProperty",
+ "schema:domainIncludes": {
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:founder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person who founded this organization.",
+ "rdfs:label": "founder",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:option",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The options subject to this action.",
+ "rdfs:label": "option",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ChooseAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:actionOption"
+ }
+ },
+ {
+ "@id": "schema:reviewBody",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The actual body of the review.",
+ "rdfs:label": "reviewBody",
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PlaceboControlledTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A placebo-controlled trial design.",
+ "rdfs:label": "PlaceboControlledTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:PhotographAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of capturing still images of objects using a camera.",
+ "rdfs:label": "PhotographAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c4",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees.",
+ "rdfs:label": "Nonprofit501c4",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:vehicleSpecialUsage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.",
+ "rdfs:label": "vehicleSpecialUsage",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CarUsageType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:album",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A music album.",
+ "rdfs:label": "album",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicGroup"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ }
+ },
+ {
+ "@id": "schema:includedInHealthInsurancePlan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The insurance plans that cover this drug.",
+ "rdfs:label": "includedInHealthInsurancePlan",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementWeight",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Body weight. Used, for example, to measure pantyhose.",
+ "rdfs:label": "BodyMeasurementWeight",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:FlightReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for air travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "FlightReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:causeOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The condition, complication, symptom, sign, etc. caused.",
+ "rdfs:label": "causeOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCause"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:cutoffTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the [[ShippingRateSettings]] publication pattern. The time is indicated using the ISO-8601 Time format, e.g. \"23:30:00-05:00\" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).",
+ "rdfs:label": "cutoffTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Time"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:MonetaryGrant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A monetary grant.",
+ "rdfs:label": "MonetaryGrant",
+ "rdfs:subClassOf": {
+ "@id": "schema:Grant"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:studySubject",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.",
+ "rdfs:label": "studySubject",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:TreatmentIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An indication for treating an underlying condition, symptom, etc.",
+ "rdfs:label": "TreatmentIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Cemetery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A graveyard.",
+ "rdfs:label": "Cemetery",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:hasMeasurement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A product measurement, for example the inseam of pants, the wheel size of a bicycle, or the gauge of a screw. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings.",
+ "rdfs:label": "hasMeasurement",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:catalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A data catalog which contains this dataset.",
+ "rdfs:label": "catalog",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataCatalog"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:includedInDataCatalog"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA3Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA3Plus",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:DigitalPlatformEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates some common technology platforms, for use with properties such as [[actionPlatform]]. It is not supposed to be comprehensive - when a suitable code is not enumerated here, textual or URL values can be used instead. These codes are at a fairly high level and do not deal with versioning and other nuance. Additional codes can be suggested [in github](https://github.com/schemaorg/schemaorg/issues/3057). ",
+ "rdfs:label": "DigitalPlatformEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:datasetTimeInterval",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).",
+ "rdfs:label": "datasetTimeInterval",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:temporalCoverage"
+ }
+ },
+ {
+ "@id": "schema:endorsers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "People or organizations that endorse the plan.",
+ "rdfs:label": "endorsers",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PublicHealth",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine.",
+ "rdfs:label": "PublicHealth",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemEN13402",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "EN 13402 (joint European standard for size labelling of clothes).",
+ "rdfs:label": "WearableSizeSystemEN13402",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:CheckInAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check-in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\\n\\nRelated actions:\\n\\n* [[CheckOutAction]]: The antonym of CheckInAction.\\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.",
+ "rdfs:label": "CheckInAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:DistanceFee",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the distance fee (e.g., price per km or mile) part of the total price for an offered product, for example a car rental.",
+ "rdfs:label": "DistanceFee",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupExtraShort",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Extra Short\" for wearables.",
+ "rdfs:label": "WearableSizeGroupExtraShort",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:EventAttendanceModeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline.",
+ "rdfs:label": "EventAttendanceModeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:sibling",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sibling of the person.",
+ "rdfs:label": "sibling",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:isGift",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether the offer was accepted as a gift for someone other than the buyer.",
+ "rdfs:label": "isGift",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:countryOfAssembly",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the product was assembled.",
+ "rdfs:label": "countryOfAssembly",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/991"
+ }
+ },
+ {
+ "@id": "schema:applicationDeadline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date at which the program stops collecting applications for the next enrollment cycle.",
+ "rdfs:label": "applicationDeadline",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:eligibleQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.",
+ "rdfs:label": "eligibleQuantity",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:performer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A performer at the event—for example, a presenter, musician, musical group or actor.",
+ "rdfs:label": "performer",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WearableSizeSystemJP",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Japanese size system for wearables.",
+ "rdfs:label": "WearableSizeSystemJP",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:OrderCancelled",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing cancellation of an order.",
+ "rdfs:label": "OrderCancelled"
+ },
+ {
+ "@id": "schema:StrengthTraining",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.",
+ "rdfs:label": "StrengthTraining",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalProcedure",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/50731006"
+ },
+ "rdfs:comment": "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.",
+ "rdfs:label": "MedicalProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:FoodEstablishmentReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation to dine at a food-related business.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "FoodEstablishmentReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:CoverArt",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The artwork on the outer surface of a CreativeWork.",
+ "rdfs:label": "CoverArt",
+ "rdfs:subClassOf": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Osteopathic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine focused on promoting the body's innate ability to heal itself.",
+ "rdfs:label": "Osteopathic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DigitalAudioTapeFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DigitalAudioTapeFormat.",
+ "rdfs:label": "DigitalAudioTapeFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:HealthInsurancePlan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A US-style health insurance plan, including PPOs, EPOs, and HMOs. ",
+ "rdfs:label": "HealthInsurancePlan",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:SportsOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.",
+ "rdfs:label": "SportsOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:CreateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of deliberately creating/producing/generating/building a result out of the agent.",
+ "rdfs:label": "CreateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:AutoRepair",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Car repair business.",
+ "rdfs:label": "AutoRepair",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:OnlineBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular online business, either standalone or the online part of a broader organization. Examples include an eCommerce site, an online travel booking site, an online learning site, an online logistics and shipping provider, an online (virtual) doctor, etc.",
+ "rdfs:label": "OnlineBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3028"
+ }
+ },
+ {
+ "@id": "schema:ResultsAvailable",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Results are available.",
+ "rdfs:label": "ResultsAvailable",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:broadcastChannelId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.",
+ "rdfs:label": "broadcastChannelId",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Suite",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Suite",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:closes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The closing hour of the place or service on the given day(s) of the week.",
+ "rdfs:label": "closes",
+ "schema:domainIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Time"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:legislationTransposes",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#transposes"
+ },
+ "rdfs:comment": "Indicates that this legislation (or part of legislation) fulfills the objectives set by another legislation, by passing appropriate implementation measures. Typically, some legislations of European Union's member states or regions transpose European Directives. This indicates a legally binding link between the 2 legislations.",
+ "rdfs:label": "legislationTransposes",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:legislationApplies"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ },
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#transposes"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryG",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryG",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:itemShipped",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Item(s) being shipped.",
+ "rdfs:label": "itemShipped",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ }
+ },
+ {
+ "@id": "schema:ParcelService",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A private parcel service as the delivery mode available for a certain offer.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
+ "rdfs:label": "ParcelService",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:ownedThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time of giving up ownership on the product.",
+ "rdfs:label": "ownedThrough",
+ "schema:domainIncludes": {
+ "@id": "schema:OwnershipInfo"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:TipAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.",
+ "rdfs:label": "TipAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:LearningResource",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes.\n\n[[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[VideoObject]], [[Product]] etc.\n\n[[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one.",
+ "rdfs:label": "LearningResource",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1401"
+ }
+ },
+ {
+ "@id": "schema:abridged",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether the book is an abridged edition.",
+ "rdfs:label": "abridged",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:MedicalAudienceType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Target audiences types for medical web pages. Enumerated type.",
+ "rdfs:label": "MedicalAudienceType",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BedAndBreakfast",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Bed and breakfast.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "BedAndBreakfast",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ }
+ },
+ {
+ "@id": "schema:EngineSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities.",
+ "rdfs:label": "EngineSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Bridge",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bridge.",
+ "rdfs:label": "Bridge",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:OnlineStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An eCommerce site.",
+ "rdfs:label": "OnlineStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:OnlineBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3028"
+ }
+ },
+ {
+ "@id": "schema:ReservationCancelled",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status for a previously confirmed reservation that is now cancelled.",
+ "rdfs:label": "ReservationCancelled"
+ },
+ {
+ "@id": "schema:numberOfRooms",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.",
+ "rdfs:label": "numberOfRooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Apartment"
+ },
+ {
+ "@id": "schema:SingleFamilyResidence"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:House"
+ },
+ {
+ "@id": "schema:Suite"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:Thesis",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.",
+ "rdfs:label": "Thesis",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.productontology.org/id/Thesis"
+ }
+ },
+ {
+ "@id": "schema:smokingAllowed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.",
+ "rdfs:label": "smokingAllowed",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:BusinessAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.",
+ "rdfs:label": "BusinessAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:amountOfThisGood",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity of the goods included in the offer.",
+ "rdfs:label": "amountOfThisGood",
+ "schema:domainIncludes": {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:toLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The final location of the object or the agent after the action.",
+ "rdfs:label": "toLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TransferAction"
+ },
+ {
+ "@id": "schema:MoveAction"
+ },
+ {
+ "@id": "schema:InsertAction"
+ },
+ {
+ "@id": "schema:ExerciseAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:Event",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcmitype:Event"
+ },
+ "rdfs:comment": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects.",
+ "rdfs:label": "Event",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:containsSeason",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A season that is part of the media series.",
+ "rdfs:label": "containsSeason",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ },
+ {
+ "@id": "schema:pickupLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Where a taxi will pick up a passenger or a rental car can be picked up.",
+ "rdfs:label": "pickupLocation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TaxiReservation"
+ },
+ {
+ "@id": "schema:RentalCarReservation"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:clincalPharmacology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
+ "rdfs:label": "clincalPharmacology",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:clinicalPharmacology"
+ }
+ },
+ {
+ "@id": "schema:BrokerageAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm.",
+ "rdfs:label": "BrokerageAccount",
+ "rdfs:subClassOf": {
+ "@id": "schema:InvestmentOrDeposit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isicV4",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
+ "rdfs:label": "isicV4",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:legislationPassedBy",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#passed_by"
+ },
+ "rdfs:comment": "The person or organization that originally passed or made the law: typically parliament (for primary legislation) or government (for secondary legislation). This indicates the \"legal author\" of the law, as opposed to its physical author.",
+ "rdfs:label": "legislationPassedBy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:creator"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#passed_by"
+ }
+ },
+ {
+ "@id": "schema:USNonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "USNonprofitType: Non-profit organization type originating from the United States.",
+ "rdfs:label": "USNonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:NonprofitType"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:AutomatedTeller",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "ATM/cash machine.",
+ "rdfs:label": "AutomatedTeller",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:confirmationNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A number that confirms the given order or payment has been received.",
+ "rdfs:label": "confirmationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Thursday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Wednesday and Friday.",
+ "rdfs:label": "Thursday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q129"
+ }
+ },
+ {
+ "@id": "schema:departureTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected departure time.",
+ "rdfs:label": "departureTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:hasBroadcastChannel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A broadcast channel of a broadcast service.",
+ "rdfs:label": "hasBroadcastChannel",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:providesBroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:Crematorium",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A crematorium.",
+ "rdfs:label": "Crematorium",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:customerRemorseReturnFees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return fees if the product is returned due to customer remorse.",
+ "rdfs:label": "customerRemorseReturnFees",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnFeesEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:encodingType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The supported encoding type(s) for an EntryPoint request.",
+ "rdfs:label": "encodingType",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MedicalConditionStage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A stage of a medical condition, such as 'Stage IIIa'.",
+ "rdfs:label": "MedicalConditionStage",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:itinerary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples).",
+ "rdfs:label": "itinerary",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ }
+ ]
+ },
+ {
+ "@id": "schema:valueAddedTaxIncluded",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.",
+ "rdfs:label": "valueAddedTaxIncluded",
+ "schema:domainIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:DietNutrition",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Dietetics and nutrition as a medical specialty.",
+ "rdfs:label": "DietNutrition",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bitrate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The bitrate of the media object.",
+ "rdfs:label": "bitrate",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Rheumatologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.",
+ "rdfs:label": "Rheumatologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AssessAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming one's opinion, reaction or sentiment.",
+ "rdfs:label": "AssessAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:requirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (examples: DirectX, Java or .NET runtime).",
+ "rdfs:label": "requirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:softwareRequirements"
+ }
+ },
+ {
+ "@id": "schema:associatedMediaReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated [[MediaReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].",
+ "rdfs:label": "associatedMediaReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:associatedReview"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:FireStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A fire station. With firemen.",
+ "rdfs:label": "FireStation",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:EmergencyService"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:legislationDate",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#date_document"
+ },
+ "rdfs:comment": "The date of adoption or signature of the legislation. This is the date at which the text is officially aknowledged to be a legislation, even though it might not even be published or in force.",
+ "rdfs:label": "legislationDate",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:dateCreated"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#date_document"
+ }
+ },
+ {
+ "@id": "schema:workTranslation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A work that is a translation of the content of this work. E.g. 西遊記 has an English workTranslation “Journey to the West”, a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.",
+ "rdfs:label": "workTranslation",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:translationOfWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:CssSelectorType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Text representing a CSS selector.",
+ "rdfs:label": "CssSelectorType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1672"
+ }
+ },
+ {
+ "@id": "schema:observedNode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The observedNode of an [[Observation]], often a [[StatisticalPopulation]].",
+ "rdfs:label": "observedNode",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:LaserDiscFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "LaserDiscFormat.",
+ "rdfs:label": "LaserDiscFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:busName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of the bus (e.g. Bolt Express).",
+ "rdfs:label": "busName",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:studyDesign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifics about the observational study design (enumerated).",
+ "rdfs:label": "studyDesign",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalObservationalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalObservationalStudyDesign"
+ }
+ },
+ {
+ "@id": "schema:Ticket",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe a ticket to an event, a flight, a bus ride, etc.",
+ "rdfs:label": "Ticket",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:playersOnline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of players on the server.",
+ "rdfs:label": "playersOnline",
+ "schema:domainIncludes": {
+ "@id": "schema:GameServer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:securityClearanceRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of any security clearance requirements of the job.",
+ "rdfs:label": "securityClearanceRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ }
+ },
+ {
+ "@id": "schema:dataset",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A dataset contained in this catalog.",
+ "rdfs:label": "dataset",
+ "schema:domainIncludes": {
+ "@id": "schema:DataCatalog"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:includedInDataCatalog"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Dataset"
+ }
+ },
+ {
+ "@id": "schema:UsedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is used.",
+ "rdfs:label": "UsedCondition"
+ },
+ {
+ "@id": "schema:codeValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short textual code that uniquely identifies the value.",
+ "rdfs:label": "codeValue",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:termCode"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CategoryCode"
+ },
+ {
+ "@id": "schema:MedicalCode"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:InvestmentOrDeposit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.",
+ "rdfs:label": "InvestmentOrDeposit",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:CollectionPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Collection page.",
+ "rdfs:label": "CollectionPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:eventAttendanceMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.",
+ "rdfs:label": "eventAttendanceMode",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EventAttendanceModeEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:PhysicalActivity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.",
+ "rdfs:label": "PhysicalActivity",
+ "rdfs:subClassOf": {
+ "@id": "schema:LifestyleModification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:marginOfError",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A marginOfError for an [[Observation]].",
+ "rdfs:label": "marginOfError",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:LiquorStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits.",
+ "rdfs:label": "LiquorStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:resultComment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of result. The Comment created or sent as a result of this action.",
+ "rdfs:label": "resultComment",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:result"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ReplyAction"
+ },
+ {
+ "@id": "schema:CommentAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Comment"
+ }
+ },
+ {
+ "@id": "schema:deliveryLeadTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.",
+ "rdfs:label": "deliveryLeadTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Demand"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:width",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The width of the item.",
+ "rdfs:label": "width",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Distance"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:broker",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
+ "rdfs:label": "broker",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:Order"
+ },
+ {
+ "@id": "schema:Invoice"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FDAcategoryX",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.",
+ "rdfs:label": "FDAcategoryX",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasPOS",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Points-of-Sales operated by the organization or person.",
+ "rdfs:label": "hasPOS",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:globalLocationNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
+ "rdfs:label": "globalLocationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:postOp",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the postoperative procedures, care, and/or followups for this device.",
+ "rdfs:label": "postOp",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalDevice"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Store",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A retail good store.",
+ "rdfs:label": "Store",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:characterAttribute",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).",
+ "rdfs:label": "characterAttribute",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Game"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:EducationalOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An educational organization.",
+ "rdfs:label": "EducationalOrganization",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CivicStructure"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EventSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property.\n\nAn EventSeries is a collection of events that share some unifying characteristic. For example, \"The Olympic Games\" is a series, which\nis repeated regularly. The \"2012 London Olympics\" can be presented both as an [[Event]] in the series \"Olympic Games\", and as an\n[[EventSeries]] that included a number of sporting competitions as Events.\n\nThe nature of the association between the events in an [[EventSeries]] can vary, but typical examples could\ninclude a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers.\n\nEventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without\nworrying about which kinds of series are really event-like enough to call an Event. In general an EventSeries\nmay seem more Event-like when the period of time is compact and when aspects such as location are fixed, but\nit may also sometimes prove useful to describe a longer-term series as an Event.\n ",
+ "rdfs:label": "EventSeries",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Series"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/447"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupPetite",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Petite\" for wearables.",
+ "rdfs:label": "WearableSizeGroupPetite",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:PrognosisHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Typical progression and happenings of life course of the topic.",
+ "rdfs:label": "PrognosisHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:PartiallyInForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that parts of the legislation are in force, and parts are not.",
+ "rdfs:label": "PartiallyInForce",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-partiallyInForce"
+ }
+ },
+ {
+ "@id": "schema:RestockingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay a restocking fee when returning a product.",
+ "rdfs:label": "RestockingFees",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementHips",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the hip section, for example of a skirt",
+ "rdfs:label": "WearableMeasurementHips",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:transitTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical delay the order has been sent for delivery and the goods reach the final customer. Typical properties: minValue, maxValue, unitCode (d for DAY).",
+ "rdfs:label": "transitTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:UserPageVisits",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPageVisits",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:cvdNumBedsOcc",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.",
+ "rdfs:label": "cvdNumBedsOcc",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:priceType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration.",
+ "rdfs:label": "priceType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CompoundPriceSpecification"
+ },
+ {
+ "@id": "schema:UnitPriceSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PriceTypeEnumeration"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:CommentPermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to add comments to the document.",
+ "rdfs:label": "CommentPermission"
+ },
+ {
+ "@id": "schema:OriginalMediaContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'as original media content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'original': No evidence the footage has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n\nFor an [[ImageObject]] to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[ImageObject]] with embedded text to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[AudioObject]] to be 'original': No evidence the audio has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n",
+ "rdfs:label": "OriginalMediaContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:trailerWeight",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted weight of a trailer attached to the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "trailerWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:cargoVolume",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\\n\\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\\n\\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "cargoVolume",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DVDFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DVDFormat.",
+ "rdfs:label": "DVDFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:UserDownloads",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserDownloads",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:albumReleaseType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The kind of release which this album is: single, EP or album.",
+ "rdfs:label": "albumReleaseType",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbumReleaseType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:TrainReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for train travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "TrainReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:childMinAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Minimal age of the child.",
+ "rdfs:label": "childMinAge",
+ "schema:domainIncludes": {
+ "@id": "schema:ParentAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:isAccessoryOrSparePartFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another product (or multiple products) for which this product is an accessory or spare part.",
+ "rdfs:label": "isAccessoryOrSparePartFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:MusicPlaylist",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection of music tracks in playlist form.",
+ "rdfs:label": "MusicPlaylist",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:releaseOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The album this is a release of.",
+ "rdfs:label": "releaseOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:albumRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:seasonNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Position of the season within an ordered group of seasons.",
+ "rdfs:label": "seasonNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:VirtualLocation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An online or virtual location for attending events. For example, one may attend an online seminar or educational event. While a virtual location may be used as the location of an event, virtual locations should not be confused with physical locations in the real world.",
+ "rdfs:label": "VirtualLocation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:AdultEntertainment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An adult entertainment establishment.",
+ "rdfs:label": "AdultEntertainment",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:Recommendation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "[[Recommendation]] is a type of [[Review]] that suggests or proposes something as the best option or best course of action. Recommendations may be for products or services, or other concrete things, as in the case of a ranked list or product guide. A [[Guide]] may list multiple recommendations for different categories. For example, in a [[Guide]] about which TVs to buy, the author may have several [[Recommendation]]s.",
+ "rdfs:label": "Recommendation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2405"
+ }
+ },
+ {
+ "@id": "schema:storageRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Storage requirements (free space required).",
+ "rdfs:label": "storageRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:nerveMotor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The neurological pathway extension that involves muscle control.",
+ "rdfs:label": "nerveMotor",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Muscle"
+ }
+ },
+ {
+ "@id": "schema:permitAudience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The target audience for this permit.",
+ "rdfs:label": "permitAudience",
+ "schema:domainIncludes": {
+ "@id": "schema:Permit"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:requiredCollateral",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)",
+ "rdfs:label": "requiredCollateral",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:Audiobook",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An audiobook.",
+ "rdfs:label": "Audiobook",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:AudioObject"
+ },
+ {
+ "@id": "schema:Book"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:actionApplication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An application that can complete the request.",
+ "rdfs:label": "actionApplication",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:Patient",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/116154003"
+ },
+ "rdfs:comment": "A patient is any person recipient of health care services.",
+ "rdfs:label": "Patient",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalAudience"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:paymentDueDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date that payment is due.",
+ "rdfs:label": "paymentDueDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:targetProduct",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.",
+ "rdfs:label": "targetProduct",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:buyer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The participant/person/organization that bought the object.",
+ "rdfs:label": "buyer",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SellAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:busNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for the bus.",
+ "rdfs:label": "busNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:hiringOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Organization or Person offering the job position.",
+ "rdfs:label": "hiringOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:legislationConsolidates",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#consolidates"
+ },
+ "rdfs:comment": "Indicates another legislation taken into account in this consolidated legislation (which is usually the product of an editorial process that revises the legislation). This property should be used multiple times to refer to both the original version or the previous consolidated version, and to the legislations making the change.",
+ "rdfs:label": "legislationConsolidates",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#consolidates"
+ }
+ },
+ {
+ "@id": "schema:BusinessSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "BusinessSupport: this is a benefit for supporting businesses.",
+ "rdfs:label": "BusinessSupport",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:GovernmentBenefitsType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered.",
+ "rdfs:label": "GovernmentBenefitsType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:member",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
+ "rdfs:label": "member",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ProgramMembership"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:memberOf"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:howPerformed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How the procedure is performed.",
+ "rdfs:label": "howPerformed",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:appliesToPaymentMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The payment method(s) to which the payment charge specification applies.",
+ "rdfs:label": "appliesToPaymentMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentChargeSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PaymentMethod"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:shippingSettingsLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.",
+ "rdfs:label": "shippingSettingsLink",
+ "schema:domainIncludes": {
+ "@id": "schema:OfferShippingDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:numberOfSeasons",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of seasons in this series.",
+ "rdfs:label": "numberOfSeasons",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:SatireOrParodyContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'satire or parody content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'satire or parody content': A video that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] with embedded text to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[AudioObject]] to be 'satire or parody content': Audio that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n",
+ "rdfs:label": "SatireOrParodyContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:Genitourinary",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Genitourinary system function assessment with clinical examination.",
+ "rdfs:label": "Genitourinary",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasBioChemEntityPart",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "Indicates a BioChemEntity that (in some sense) has this BioChemEntity as a part. ",
+ "rdfs:label": "hasBioChemEntityPart",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isPartOfBioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:educationalLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.",
+ "rdfs:label": "educationalLevel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:EducationEvent"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:availableThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "After this date, the item will no longer be available for pickup.",
+ "rdfs:label": "availableThrough",
+ "schema:domainIncludes": {
+ "@id": "schema:DeliveryEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:softwareRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (examples: DirectX, Java or .NET runtime).",
+ "rdfs:label": "softwareRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ProductCollection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]].",
+ "rdfs:label": "ProductCollection",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Collection"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2597"
+ }
+ },
+ {
+ "@id": "schema:OrganizationRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subclass of Role used to describe roles within organizations.",
+ "rdfs:label": "OrganizationRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ }
+ },
+ {
+ "@id": "schema:trackingNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Shipper tracking number.",
+ "rdfs:label": "trackingNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:seatSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The section location of the reserved seat (e.g. Orchestra).",
+ "rdfs:label": "seatSection",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:associatedMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for encoding.",
+ "rdfs:label": "associatedMedia",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HyperToc"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:HyperTocEntry"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:healthPlanCoinsuranceRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The rate of coinsurance expressed as a number between 0.0 and 1.0.",
+ "rdfs:label": "healthPlanCoinsuranceRate",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:FindAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of finding an object.\\n\\nRelated actions:\\n\\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily.",
+ "rdfs:label": "FindAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:actionPlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.",
+ "rdfs:label": "actionPlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DigitalPlatformEnumeration"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:GeoCircle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.\n ",
+ "rdfs:label": "GeoCircle",
+ "rdfs:subClassOf": {
+ "@id": "schema:GeoShape"
+ }
+ },
+ {
+ "@id": "schema:steeringPosition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The position of the steering wheel or similar device (mostly for cars).",
+ "rdfs:label": "steeringPosition",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SteeringPositionValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:prepTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "prepTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToDirection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:SportsActivityLocation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sports location, such as a playing field.",
+ "rdfs:label": "SportsActivityLocation",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:warning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any FDA or other warnings about the drug (text or URL).",
+ "rdfs:label": "warning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MeetingRoom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A meeting room, conference room, or conference hall is a room provided for singular events such as business conferences and meetings (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Conference_hall).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "MeetingRoom",
+ "rdfs:subClassOf": {
+ "@id": "schema:Room"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:expectedArrivalUntil",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The latest date the package may arrive.",
+ "rdfs:label": "expectedArrivalUntil",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:exampleOfWork",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A creative work that this work is an example/instance/realization/derivation of.",
+ "rdfs:label": "exampleOfWork",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:workExample"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:cvdNumBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.",
+ "rdfs:label": "cvdNumBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:lyrics",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The words in the song.",
+ "rdfs:label": "lyrics",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:broadcastSignalModulation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The modulation (e.g. FM, AM, etc) used by a particular broadcast service.",
+ "rdfs:label": "broadcastSignalModulation",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastFrequencySpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2111"
+ }
+ },
+ {
+ "@id": "schema:loanType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of a loan or credit.",
+ "rdfs:label": "loanType",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:seriousAdverseOutcome",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.",
+ "rdfs:label": "seriousAdverseOutcome",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalTherapy"
+ },
+ {
+ "@id": "schema:MedicalDevice"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:UKNonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UKNonprofitType: Non-profit organization type originating from the United Kingdom.",
+ "rdfs:label": "UKNonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:NonprofitType"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:workFeatured",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).",
+ "rdfs:label": "workFeatured",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:BoatTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip on a commercial ferry line.",
+ "rdfs:label": "BoatTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:baseSalary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The base salary of the job or of an employee in an EmployeeRole.",
+ "rdfs:label": "baseSalary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:EmployeeRole"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ]
+ },
+ {
+ "@id": "schema:course",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The course where this action was taken.",
+ "rdfs:label": "course",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:exerciseCourse"
+ }
+ },
+ {
+ "@id": "schema:EmployeeRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subclass of OrganizationRole used to describe employee relationships.",
+ "rdfs:label": "EmployeeRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizationRole"
+ }
+ },
+ {
+ "@id": "schema:gameAvailabilityType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the availability type of the game content associated with this action, such as whether it is a full version or a demo.",
+ "rdfs:label": "gameAvailabilityType",
+ "schema:domainIncludes": {
+ "@id": "schema:PlayGameAction"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:GameAvailabilityEnumeration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:BookStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bookstore.",
+ "rdfs:label": "BookStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Gastroenterologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.",
+ "rdfs:label": "Gastroenterologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:nerve",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The underlying innervation associated with the muscle.",
+ "rdfs:label": "nerve",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Nerve"
+ }
+ },
+ {
+ "@id": "schema:competencyRequired",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.",
+ "rdfs:label": "competencyRequired",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:UpdateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of managing by changing/editing the state of the object.",
+ "rdfs:label": "UpdateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:remainingAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of attendee places for an event that remain unallocated.",
+ "rdfs:label": "remainingAttendeeCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:parentTaxon",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
+ },
+ "rdfs:comment": "Closest parent taxon of the taxon in question.",
+ "rdfs:label": "parentTaxon",
+ "schema:domainIncludes": {
+ "@id": "schema:Taxon"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:childTaxon"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ }
+ ]
+ },
+ {
+ "@id": "schema:parentService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.",
+ "rdfs:label": "parentService",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastService"
+ }
+ },
+ {
+ "@id": "schema:replacee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The object that is being replaced.",
+ "rdfs:label": "replacee",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ReplaceAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:tracks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A music recording (track)—usually a single song.",
+ "rdfs:label": "tracks",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MusicPlaylist"
+ },
+ {
+ "@id": "schema:MusicGroup"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:track"
+ }
+ },
+ {
+ "@id": "schema:spouse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person's spouse.",
+ "rdfs:label": "spouse",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:MobileApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A software application designed specifically to work well on a mobile device such as a telephone.",
+ "rdfs:label": "MobileApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:pageEnd",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pageEnd"
+ },
+ "rdfs:comment": "The page on which the work ends; for example \"138\" or \"xvi\".",
+ "rdfs:label": "pageEnd",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PublicationVolume"
+ },
+ {
+ "@id": "schema:PublicationIssue"
+ },
+ {
+ "@id": "schema:Chapter"
+ },
+ {
+ "@id": "schema:Article"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:diseaseSpreadStatistics",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Statistical information about the spread of a disease, either as [[WebContent]], or\n described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is\n provided, the page indicated might also contain more such markup.",
+ "rdfs:label": "diseaseSpreadStatistics",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:Observation"
+ },
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:DiagnosticProcedure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.",
+ "rdfs:label": "DiagnosticProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Attorney",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Professional service: Attorney. \\n\\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous.",
+ "rdfs:label": "Attorney",
+ "rdfs:subClassOf": {
+ "@id": "schema:LegalService"
+ }
+ },
+ {
+ "@id": "schema:layoutImage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A schematic image showing the floorplan layout.",
+ "rdfs:label": "layoutImage",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:image"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:FloorPlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:ImageObject"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2690"
+ }
+ },
+ {
+ "@id": "schema:additionalNumberOfGuests",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If responding yes, the number of guests who will attend in addition to the invitee.",
+ "rdfs:label": "additionalNumberOfGuests",
+ "schema:domainIncludes": {
+ "@id": "schema:RsvpAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:availabilityEnds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The end of the availability of the product or service included in the offer.",
+ "rdfs:label": "availabilityEnds",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ ]
+ },
+ {
+ "@id": "schema:structuralClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name given to how bone physically connects to each other.",
+ "rdfs:label": "structuralClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Joint"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:TradeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.",
+ "rdfs:label": "TradeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:programmingModel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether API is managed or unmanaged.",
+ "rdfs:label": "programmingModel",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:fuelConsumption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\\n\\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel consumption to another value.",
+ "rdfs:label": "fuelConsumption",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:grantee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person, organization, contact point, or audience that has been granted this permission.",
+ "rdfs:label": "grantee",
+ "schema:domainIncludes": {
+ "@id": "schema:DigitalDocumentPermission"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Audience"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BloodTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical test performed on a sample of a patient's blood.",
+ "rdfs:label": "BloodTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:activeIngredient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An active ingredient, typically chemical compounds and/or biologic substances.",
+ "rdfs:label": "activeIngredient",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DrugStrength"
+ },
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:Substance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:RadioStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio station.",
+ "rdfs:label": "RadioStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:warrantyScope",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The scope of the warranty promise.",
+ "rdfs:label": "warrantyScope",
+ "schema:domainIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:WarrantyScope"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:ComputerStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A computer store.",
+ "rdfs:label": "ComputerStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:muscleAction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The movement the muscle generates.",
+ "rdfs:label": "muscleAction",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:RentalCarReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for a rental car.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "RentalCarReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:ItemList",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.",
+ "rdfs:label": "ItemList",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:CausesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about the causes and main actions that gave rise to the topic.",
+ "rdfs:label": "CausesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:VegetarianDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of animal meat.",
+ "rdfs:label": "VegetarianDiet"
+ },
+ {
+ "@id": "schema:seller",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.",
+ "rdfs:label": "seller",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:BuyAction"
+ },
+ {
+ "@id": "schema:Order"
+ },
+ {
+ "@id": "schema:Flight"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:studyLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location in which the study is taking/took place.",
+ "rdfs:label": "studyLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:mapType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the kind of Map, from the MapCategoryType Enumeration.",
+ "rdfs:label": "mapType",
+ "schema:domainIncludes": {
+ "@id": "schema:Map"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MapCategoryType"
+ }
+ },
+ {
+ "@id": "schema:fromLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The original location of the object or the agent before the action.",
+ "rdfs:label": "fromLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MoveAction"
+ },
+ {
+ "@id": "schema:ExerciseAction"
+ },
+ {
+ "@id": "schema:TransferAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:ReturnFeesEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several kinds of policies for product return fees.",
+ "rdfs:label": "ReturnFeesEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:knowsAbout",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.",
+ "rdfs:label": "knowsAbout",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A seasonal override of a return policy, for example used for holidays.",
+ "rdfs:label": "MerchantReturnPolicySeasonalOverride",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:RearWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Real-wheel drive is a transmission layout where the engine drives the rear wheels.",
+ "rdfs:label": "RearWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:mainEntityOfPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.",
+ "rdfs:label": "mainEntityOfPage",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:mainEntity"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ContactPointOption",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated options related to a ContactPoint.",
+ "rdfs:label": "ContactPointOption",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:actor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "actor",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:PodcastSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:releasedEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place and time the release was issued, expressed as a PublicationEvent.",
+ "rdfs:label": "releasedEvent",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:IgnoreAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of intentionally disregarding the object. An agent ignores an object.",
+ "rdfs:label": "IgnoreAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:publicationType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html).",
+ "rdfs:label": "publicationType",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalScholarlyArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:UserCheckins",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserCheckins",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:polygon",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.",
+ "rdfs:label": "polygon",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoShape"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ArriveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.",
+ "rdfs:label": "ArriveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:MoveAction"
+ }
+ },
+ {
+ "@id": "schema:RecyclingCenter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recycling center.",
+ "rdfs:label": "RecyclingCenter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:musicalKey",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The key, mode, or scale this composition uses.",
+ "rdfs:label": "musicalKey",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:value",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "value",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:StructuredValue"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:RoofingContractor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A roofing contractor.",
+ "rdfs:label": "RoofingContractor",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementLength",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Represents the length, for example of a dress",
+ "rdfs:label": "WearableMeasurementLength",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:includedComposition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Smaller compositions included in this work (e.g. a movement in a symphony).",
+ "rdfs:label": "includedComposition",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:bookFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The format of the book.",
+ "rdfs:label": "bookFormat",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BookFormatType"
+ }
+ },
+ {
+ "@id": "schema:ReservationConfirmed",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a confirmed reservation.",
+ "rdfs:label": "ReservationConfirmed"
+ },
+ {
+ "@id": "schema:Specialty",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.",
+ "rdfs:label": "Specialty",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:healthCondition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifying the health condition(s) of a patient, medical study, or other target audience.",
+ "rdfs:label": "healthCondition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalStudy"
+ },
+ {
+ "@id": "schema:Patient"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryC",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryC",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:GeoCoordinates",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The geographic coordinates of a place or event.",
+ "rdfs:label": "GeoCoordinates",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ }
+ },
+ {
+ "@id": "schema:version",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The version of the CreativeWork embodied by a specified resource.",
+ "rdfs:label": "version",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:locationCreated",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.",
+ "rdfs:label": "locationCreated",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:SRP",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the suggested retail price (\"SRP\") of an offered product.",
+ "rdfs:label": "SRP",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:relevantSpecialty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If applicable, a medical specialty in which this entity is relevant.",
+ "rdfs:label": "relevantSpecialty",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSpecialty"
+ }
+ },
+ {
+ "@id": "schema:floorLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The floor level for an [[Accommodation]] in a multi-storey building. Since counting\n systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.",
+ "rdfs:label": "floorLevel",
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:isConsumableFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another product (or multiple products) for which this product is a consumable.",
+ "rdfs:label": "isConsumableFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:TaxiStand",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A taxi stand.",
+ "rdfs:label": "TaxiStand",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c2",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations.",
+ "rdfs:label": "Nonprofit501c2",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ClothingStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A clothing store.",
+ "rdfs:label": "ClothingStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:nonProprietaryName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The generic name of this drug or supplement.",
+ "rdfs:label": "nonProprietaryName",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:VideoObjectSnapshot",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of a [[VideoObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "VideoObjectSnapshot",
+ "rdfs:subClassOf": {
+ "@id": "schema:VideoObject"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:OverviewHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction.",
+ "rdfs:label": "OverviewHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:Guide",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "[[Guide]] is a page or article that recommends specific products or services, or aspects of a thing for a user to consider. A [[Guide]] may represent a Buying Guide and detail aspects of products or services for a user to consider. A [[Guide]] may represent a Product Guide and recommend specific products or services. A [[Guide]] may represent a Ranked List and recommend specific products or services with ranking.",
+ "rdfs:label": "Guide",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2405"
+ }
+ },
+ {
+ "@id": "schema:availableLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]].",
+ "rdfs:label": "availableLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TouristAttraction"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:ServiceChannel"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Language"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MoneyTransfer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of transferring money from one place to another place. This may occur electronically or physically.",
+ "rdfs:label": "MoneyTransfer",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MeasurementTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumeration of common measurement types (or dimensions), for example \"chest\" for a person, \"inseam\" for pants, \"gauge\" for screws, or \"wheel\" for bicycles.",
+ "rdfs:label": "MeasurementTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:partOfTVSeries",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The TV series to which this episode or season belongs.",
+ "rdfs:label": "partOfTVSeries",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:TVClip"
+ },
+ {
+ "@id": "schema:TVSeason"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:TVSeries"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:partOfSeries"
+ }
+ },
+ {
+ "@id": "schema:Festival",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Festival.",
+ "rdfs:label": "Festival",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:sha256",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'",
+ "rdfs:label": "sha256",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:musicReleaseFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Format of this release (the type of recording media used, i.e. compact disc, digital media, LP, etc.).",
+ "rdfs:label": "musicReleaseFormat",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicReleaseFormatType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:acquireLicensePage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.",
+ "rdfs:label": "acquireLicensePage",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:usageInfo"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2454"
+ }
+ },
+ {
+ "@id": "schema:Endocrine",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.",
+ "rdfs:label": "Endocrine",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementOutsideLeg",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the outside leg, for example of pants",
+ "rdfs:label": "WearableMeasurementOutsideLeg",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:MusicAlbum",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection of music tracks.",
+ "rdfs:label": "MusicAlbum",
+ "rdfs:subClassOf": {
+ "@id": "schema:MusicPlaylist"
+ }
+ },
+ {
+ "@id": "schema:AskPublicNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[NewsArticle]] expressing an open call by a [[NewsMediaOrganization]] asking the public for input, insights, clarifications, anecdotes, documentation, etc., on an issue, for reporting purposes.",
+ "rdfs:label": "AskPublicNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ServiceChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A means for accessing a service, e.g. a government office location, web site, or phone number.",
+ "rdfs:label": "ServiceChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Saturday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Friday and Sunday.",
+ "rdfs:label": "Saturday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q131"
+ }
+ },
+ {
+ "@id": "schema:recipeYield",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity produced by the recipe (for example, number of people served, number of servings, etc).",
+ "rdfs:label": "recipeYield",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:yield"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OccupationalExperienceRequirements",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates employment-related experience requirements, e.g. [[monthsOfExperience]].",
+ "rdfs:label": "OccupationalExperienceRequirements",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
+ }
+ },
+ {
+ "@id": "schema:thumbnailUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A thumbnail image relevant to the Thing.",
+ "rdfs:label": "thumbnailUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:Organization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An organization such as a school, NGO, corporation, club, etc.",
+ "rdfs:label": "Organization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:numberOfFullBathrooms",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field).",
+ "rdfs:label": "numberOfFullBathrooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:HealthPlanNetwork",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A US-style health insurance plan network. ",
+ "rdfs:label": "HealthPlanNetwork",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:TouristTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist trip. A created itinerary of visits to one or more places of interest ([[TouristAttraction]]/[[TouristDestination]]) often linked by a similar theme, geographic area, or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors.\n (See examples below.)",
+ "rdfs:label": "TouristTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SymptomsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Symptoms or related symptoms of a Topic.",
+ "rdfs:label": "SymptomsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:floorLimit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A floor limit is the amount of money above which credit card transactions must be authorized.",
+ "rdfs:label": "floorLimit",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Neuro",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Neurological system clinical examination.",
+ "rdfs:label": "Neuro",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:requiredGender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Audiences defined by a person's gender.",
+ "rdfs:label": "requiredGender",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:HobbyShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A store that sells materials useful or necessary for various hobbies.",
+ "rdfs:label": "HobbyShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:proficiencyLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.",
+ "rdfs:label": "proficiencyLevel",
+ "schema:domainIncludes": {
+ "@id": "schema:TechArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementFoot",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Foot length (measured between end of the most prominent toe and the most prominent part of the heel). Used, for example, to measure socks.",
+ "rdfs:label": "BodyMeasurementFoot",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Casino",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A casino.",
+ "rdfs:label": "Casino",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:productSupported",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\").",
+ "rdfs:label": "productSupported",
+ "schema:domainIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SoftwareSourceCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
+ "rdfs:label": "SoftwareSourceCode",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:nextItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to the ListItem that follows the current one.",
+ "rdfs:label": "nextItem",
+ "schema:domainIncludes": {
+ "@id": "schema:ListItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ListItem"
+ }
+ },
+ {
+ "@id": "schema:MultiCenterTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial that takes place at multiple centers.",
+ "rdfs:label": "MultiCenterTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BackOrder",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available on back order.",
+ "rdfs:label": "BackOrder"
+ },
+ {
+ "@id": "schema:PodcastSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used.",
+ "rdfs:label": "PodcastSeason",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
+ },
+ {
+ "@id": "schema:EventReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for an event like a concert, sporting event, or lecture.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "EventReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:branch",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]].",
+ "rdfs:label": "branch",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:arterialBranch"
+ }
+ },
+ {
+ "@id": "schema:sodiumContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of milligrams of sodium.",
+ "rdfs:label": "sodiumContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:steps",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).",
+ "rdfs:label": "steps",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToSection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:step"
+ }
+ },
+ {
+ "@id": "schema:inSupportOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Qualification, candidature, degree, application that Thesis supports.",
+ "rdfs:label": "inSupportOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Thesis"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:significantLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
+ "rdfs:label": "significantLink",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:timeToComplete",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected length of time to complete the program if attending full-time.",
+ "rdfs:label": "timeToComplete",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:makesOffer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to products or services offered by the organization or person.",
+ "rdfs:label": "makesOffer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:offeredBy"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:MedicalProcedureType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enumeration that describes different types of medical procedures.",
+ "rdfs:label": "MedicalProcedureType",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AggregateRating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The average rating based on multiple ratings or reviews.",
+ "rdfs:label": "AggregateRating",
+ "rdfs:subClassOf": {
+ "@id": "schema:Rating"
+ }
+ },
+ {
+ "@id": "schema:sourcedFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The neurological pathway that originates the neurons.",
+ "rdfs:label": "sourcedFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BrainStructure"
+ }
+ },
+ {
+ "@id": "schema:measuredValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The measuredValue of an [[Observation]].",
+ "rdfs:label": "measuredValue",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:DataDownload",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcat:Distribution"
+ },
+ "rdfs:comment": "All or part of a [[Dataset]] in downloadable form. ",
+ "rdfs:label": "DataDownload",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
+ }
+ },
+ {
+ "@id": "schema:nutrition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Nutrition information about the recipe or menu item.",
+ "rdfs:label": "nutrition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:Recipe"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:NutritionInformation"
+ }
+ },
+ {
+ "@id": "schema:endTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. E.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
+ "rdfs:label": "endTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:InteractionCounter"
+ },
+ {
+ "@id": "schema:FoodEstablishmentReservation"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Action"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2493"
+ }
+ },
+ {
+ "@id": "schema:subjectOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CreativeWork or Event about this Thing.",
+ "rdfs:label": "subjectOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:about"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
+ }
+ },
+ {
+ "@id": "schema:albumRelease",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A release of this album.",
+ "rdfs:label": "albumRelease",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:releaseOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicRelease"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnUnlimitedWindow",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that there is an unlimited window for product returns.",
+ "rdfs:label": "MerchantReturnUnlimitedWindow",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:ComicSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sequential publication of comic stories under a\n \tunifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n \tWanderer\".",
+ "rdfs:label": "ComicSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:Periodical"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:cashBack",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A cardholder benefit that pays the cardholder a small percentage of their net expenditures.",
+ "rdfs:label": "cashBack",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Boolean"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SexualContentConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item contains sexually oriented content such as nudity, suggestive or explicit material, or related online services, or is intended to enhance sexual activity. Examples: Erotic videos or magazine, sexual enhancement devices, sex toys.",
+ "rdfs:label": "SexualContentConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:GovernmentService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.",
+ "rdfs:label": "GovernmentService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:Continent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "One of the continents (for example, Europe or Africa).",
+ "rdfs:label": "Continent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:EducationalOccupationalCredential",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc., that may be awarded to a person or other entity that meets the requirements defined by the credentialer.",
+ "rdfs:label": "EducationalOccupationalCredential",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:InfectiousDisease",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.",
+ "rdfs:label": "InfectiousDisease",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:riskFactor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.",
+ "rdfs:label": "riskFactor",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalRiskFactor"
+ }
+ },
+ {
+ "@id": "schema:greater",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than the object.",
+ "rdfs:label": "greater",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:priceComponentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies a price component (for example, a line item on an invoice), part of the total price for an offer.",
+ "rdfs:label": "priceComponentType",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceComponentTypeEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:ReturnByMail",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be done by mail.",
+ "rdfs:label": "ReturnByMail",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:ownershipFundingInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.",
+ "rdfs:label": "ownershipFundingInfo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AboutPage"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Prion",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "A prion is an infectious agent composed of protein in a misfolded form.",
+ "rdfs:label": "Prion",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:timeOfDay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time of day the program normally runs. For example, \"evenings\".",
+ "rdfs:label": "timeOfDay",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:specialty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of the domain specialities to which this web page's content applies.",
+ "rdfs:label": "specialty",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Specialty"
+ }
+ },
+ {
+ "@id": "schema:letterer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who adds lettering, including speech balloons and sound effects, to artwork.",
+ "rdfs:label": "letterer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:billingStart",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property.",
+ "rdfs:label": "billingStart",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:roleName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.",
+ "rdfs:label": "roleName",
+ "schema:domainIncludes": {
+ "@id": "schema:Role"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:securityScreening",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of security screening the passenger is subject to.",
+ "rdfs:label": "securityScreening",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:competitor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A competitor in a sports event.",
+ "rdfs:label": "competitor",
+ "schema:domainIncludes": {
+ "@id": "schema:SportsEvent"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:provider",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.",
+ "rdfs:label": "provider",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ParcelDelivery"
+ },
+ {
+ "@id": "schema:Trip"
+ },
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Action"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2927"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MusicGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.",
+ "rdfs:label": "MusicGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:PerformingGroup"
+ }
+ },
+ {
+ "@id": "schema:SingleCenterTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial that takes place at a single center.",
+ "rdfs:label": "SingleCenterTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:occupationLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": " The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.",
+ "rdfs:label": "occupationLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:Occupation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c10",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations.",
+ "rdfs:label": "Nonprofit501c10",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:orderItemStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current status of the order item.",
+ "rdfs:label": "orderItemStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:OrderItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OrderStatus"
+ }
+ },
+ {
+ "@id": "schema:currenciesAccepted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency accepted.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "currenciesAccepted",
+ "schema:domainIncludes": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MedicalTestPanel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any collection of tests commonly ordered together.",
+ "rdfs:label": "MedicalTestPanel",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DrugStrength",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific strength in which a medical drug is available in a specific country.",
+ "rdfs:label": "DrugStrength",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:reportNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number or other unique designator assigned to a Report by the publishing organization.",
+ "rdfs:label": "reportNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:Report"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:TypeAndQuantityNode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.",
+ "rdfs:label": "TypeAndQuantityNode",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:MediaSubscription",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subscription which allows a user to access media including audio, video, books, etc.",
+ "rdfs:label": "MediaSubscription",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:claimReviewed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short summary of the specific claims reviewed in a ClaimReview.",
+ "rdfs:label": "claimReviewed",
+ "schema:domainIncludes": {
+ "@id": "schema:ClaimReview"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1061"
+ }
+ },
+ {
+ "@id": "schema:estimatedCost",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The estimated cost of the supply or supplies consumed when performing instructions.",
+ "rdfs:label": "estimatedCost",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToSupply"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ]
+ },
+ {
+ "@id": "schema:commentText",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The text of the UserComment.",
+ "rdfs:label": "commentText",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Retail",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the retail cost of the drug.",
+ "rdfs:label": "Retail",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:founders",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person who founded this organization.",
+ "rdfs:label": "founders",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:founder"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupHusky",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Husky\" (or \"Stocky\") for wearables.",
+ "rdfs:label": "WearableSizeGroupHusky",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:chemicalRole",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
+ },
+ "rdfs:comment": "A role played by the BioChemEntity within a chemical context.",
+ "rdfs:label": "chemicalRole",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MolecularEntity"
+ },
+ {
+ "@id": "schema:ChemicalSubstance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ }
+ },
+ {
+ "@id": "schema:expires",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.",
+ "rdfs:label": "expires",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:doorTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time admission will commence.",
+ "rdfs:label": "doorTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:healthPlanCopayOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the copay is before or after deductible, etc. TODO: Is this a closed set?",
+ "rdfs:label": "healthPlanCopayOption",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:modelDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
+ "rdfs:label": "modelDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DiabeticDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet appropriate for people with diabetes.",
+ "rdfs:label": "DiabeticDiet"
+ },
+ {
+ "@id": "schema:annualPercentageRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.",
+ "rdfs:label": "annualPercentageRate",
+ "schema:domainIncludes": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:Product",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.",
+ "rdfs:label": "Product",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:publicTransportClosuresInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about public transport closures.",
+ "rdfs:label": "publicTransportClosuresInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:XRay",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "X-ray imaging.",
+ "rdfs:label": "XRay",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:legislationIdentifier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI (European Legislation Identifier) or an URN-Lex.",
+ "rdfs:label": "legislationIdentifier",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#id_local"
+ }
+ },
+ {
+ "@id": "schema:athlete",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person that acts as performing member of a sports team; a player as opposed to a coach.",
+ "rdfs:label": "athlete",
+ "schema:domainIncludes": {
+ "@id": "schema:SportsTeam"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:amenityFeature",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.",
+ "rdfs:label": "amenityFeature",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementInseam",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the inseam, for example of pants",
+ "rdfs:label": "WearableMeasurementInseam",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:MedicalAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Target audiences for medical web pages.",
+ "rdfs:label": "MedicalAudience",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:PeopleAudience"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SeeDoctorHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation.",
+ "rdfs:label": "SeeDoctorHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:arterialBranch",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The branches that comprise the arterial structure.",
+ "rdfs:label": "arterialBranch",
+ "schema:domainIncludes": {
+ "@id": "schema:Artery"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:MusicEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Music event.",
+ "rdfs:label": "MusicEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:issuedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization issuing the ticket or permit.",
+ "rdfs:label": "issuedBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Permit"
+ },
+ {
+ "@id": "schema:Ticket"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:MixedEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes.",
+ "rdfs:label": "MixedEventAttendanceMode",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:Dermatology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.",
+ "rdfs:label": "Dermatology",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:loser",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The loser of the action.",
+ "rdfs:label": "loser",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:WinAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:distinguishingSign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.",
+ "rdfs:label": "distinguishingSign",
+ "schema:domainIncludes": {
+ "@id": "schema:DDxElement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSignOrSymptom"
+ }
+ },
+ {
+ "@id": "schema:loanPaymentAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of money to pay in a single payment.",
+ "rdfs:label": "loanPaymentAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MedicalTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.",
+ "rdfs:label": "MedicalTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:depth",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The depth of the item.",
+ "rdfs:label": "depth",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:RadioEpisode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio episode which can be part of a series or season.",
+ "rdfs:label": "RadioEpisode",
+ "rdfs:subClassOf": {
+ "@id": "schema:Episode"
+ }
+ },
+ {
+ "@id": "schema:previousStartDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.",
+ "rdfs:label": "previousStartDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:MedicalSignOrSymptom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.",
+ "rdfs:label": "MedicalSignOrSymptom",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:termsPerYear",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of times terms of study are offered per year. Semesters and quarters are common units for term. For example, if the student can only take 2 semesters for the program in one year, then termsPerYear should be 2.",
+ "rdfs:label": "termsPerYear",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:track",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.",
+ "rdfs:label": "track",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MusicPlaylist"
+ },
+ {
+ "@id": "schema:MusicGroup"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:MusicRecording"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementArm",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Arm length (measured between arms/shoulder line intersection and the prominent wrist bone). Used, for example, to fit shirts.",
+ "rdfs:label": "BodyMeasurementArm",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:VoteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a preference from a fixed/finite/structured set of choices/options.",
+ "rdfs:label": "VoteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ChooseAction"
+ }
+ },
+ {
+ "@id": "schema:WPSideBar",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sidebar section of the page.",
+ "rdfs:label": "WPSideBar",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:subReservation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual reservations included in the package. Typically a repeated property.",
+ "rdfs:label": "subReservation",
+ "schema:domainIncludes": {
+ "@id": "schema:ReservationPackage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:ApartmentComplex",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Residence type: Apartment complex.",
+ "rdfs:label": "ApartmentComplex",
+ "rdfs:subClassOf": {
+ "@id": "schema:Residence"
+ }
+ },
+ {
+ "@id": "schema:caption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]].",
+ "rdfs:label": "caption",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:AudioObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:contentLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location depicted or described in the content. For example, the location in a photograph or painting.",
+ "rdfs:label": "contentLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:valuePattern",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a regular expression for testing literal values according to the HTML spec.",
+ "rdfs:label": "valuePattern",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:currency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "currency",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LoanOrCredit"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:ExchangeRateSpecification"
+ },
+ {
+ "@id": "schema:DatedMoneySpecification"
+ },
+ {
+ "@id": "schema:MonetaryAmountDistribution"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ },
+ {
+ "@id": "schema:Sculpture",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A piece of sculpture.",
+ "rdfs:label": "Sculpture",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:HealthAspectEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]].",
+ "rdfs:label": "HealthAspectEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:Surgical",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.",
+ "rdfs:label": "Surgical",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hospitalAffiliation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A hospital with which the physician or office is affiliated.",
+ "rdfs:label": "hospitalAffiliation",
+ "schema:domainIncludes": {
+ "@id": "schema:Physician"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Hospital"
+ }
+ },
+ {
+ "@id": "schema:Terminated",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Terminated.",
+ "rdfs:label": "Terminated",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:EnergyStarEnergyEfficiencyEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to indicate whether a product is EnergyStar certified.",
+ "rdfs:label": "EnergyStarEnergyEfficiencyEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:EnergyEfficiencyEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:DepositAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.",
+ "rdfs:label": "DepositAccount",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:BankAccount"
+ },
+ {
+ "@id": "schema:InvestmentOrDeposit"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:departureBusStop",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stop or station from which the bus departs.",
+ "rdfs:label": "departureBusStop",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BusStop"
+ },
+ {
+ "@id": "schema:BusStation"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MovingCompany",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A moving company.",
+ "rdfs:label": "MovingCompany",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:shippingDestination",
+ "@type": "rdf:Property",
+ "rdfs:comment": "indicates (possibly multiple) shipping destinations. These can be defined in several ways, e.g. postalCode ranges.",
+ "rdfs:label": "shippingDestination",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ShippingRateSettings"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:smiles",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "A specification in form of a line notation for describing the structure of chemical species using short ASCII strings. Double bond stereochemistry \\ indicators may need to be escaped in the string in formats where the backslash is an escape character.",
+ "rdfs:label": "smiles",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AggregateOffer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\\n\\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.",
+ "rdfs:label": "AggregateOffer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Offer"
+ }
+ },
+ {
+ "@id": "schema:workHours",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).",
+ "rdfs:label": "workHours",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemGS1",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "GS1 (formerly NRF) size system for wearables.",
+ "rdfs:label": "WearableSizeSystemGS1",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:EmploymentAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An employment agency.",
+ "rdfs:label": "EmploymentAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Ligament",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.",
+ "rdfs:label": "Ligament",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:educationalUse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The purpose of a work in the context of education; for example, 'assignment', 'group work'.",
+ "rdfs:label": "educationalUse",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FDAcategoryC",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.",
+ "rdfs:label": "FDAcategoryC",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:exerciseRelatedDiet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The diet used in this action.",
+ "rdfs:label": "exerciseRelatedDiet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Diet"
+ }
+ },
+ {
+ "@id": "schema:Optometric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The science or practice of testing visual acuity and prescribing corrective lenses.",
+ "rdfs:label": "Optometric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common types of measurement for wearables products.",
+ "rdfs:label": "WearableMeasurementTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:MeasurementTypeEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:OutletStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An outlet store.",
+ "rdfs:label": "OutletStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:StoreCreditRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that the customer receives a store credit as refund when returning a product.",
+ "rdfs:label": "StoreCreditRefund",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:InternetCafe",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An internet cafe.",
+ "rdfs:label": "InternetCafe",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:legalName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The official name of the organization, e.g. the registered company name.",
+ "rdfs:label": "legalName",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:awayTeam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The away team in a sports event.",
+ "rdfs:label": "awayTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:competitor"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SportsEvent"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Landform",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.",
+ "rdfs:label": "Landform",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:actionAccessibilityRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A set of requirements that must be fulfilled in order to perform an Action. If more than one value is specified, fulfilling one set of requirements will allow the Action to be performed.",
+ "rdfs:label": "actionAccessibilityRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:ConsumeAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:AdministrativeArea",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A geographical region, typically under the jurisdiction of a particular government.",
+ "rdfs:label": "AdministrativeArea",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:OnlineFull",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.",
+ "rdfs:label": "OnlineFull"
+ },
+ {
+ "@id": "schema:Role",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "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).",
+ "rdfs:label": "Role",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:supersededBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Relates a term (i.e. a property, class or enumeration) to one that supersedes it.",
+ "rdfs:label": "supersededBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Class"
+ },
+ {
+ "@id": "schema:Enumeration"
+ },
+ {
+ "@id": "schema:Property"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Class"
+ },
+ {
+ "@id": "schema:Property"
+ },
+ {
+ "@id": "schema:Enumeration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:copyrightHolder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The party holding the legal copyright to the CreativeWork.",
+ "rdfs:label": "copyrightHolder",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:accessibilityControl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).",
+ "rdfs:label": "accessibilityControl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ListenAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming audio content.",
+ "rdfs:label": "ListenAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:SocialMediaPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.",
+ "rdfs:label": "SocialMediaPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:MusicVenue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music venue.",
+ "rdfs:label": "MusicVenue",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:startTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. E.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
+ "rdfs:label": "startTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Action"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:InteractionCounter"
+ },
+ {
+ "@id": "schema:FoodEstablishmentReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2493"
+ }
+ },
+ {
+ "@id": "schema:result",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The result produced in the action. E.g. John wrote *a book*.",
+ "rdfs:label": "result",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:recordedIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CreativeWork that captured all or part of this Event.",
+ "rdfs:label": "recordedIn",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordedAt"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:missionCoveragePrioritiesPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.",
+ "rdfs:label": "missionCoveragePrioritiesPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Genetic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.",
+ "rdfs:label": "Genetic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:partOfTrip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.",
+ "rdfs:label": "partOfTrip",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:subTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:maintainer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A maintainer of a [[Dataset]], software package ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a [[Person]] or [[Organization]] that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on \"upstream\" sources. When [[maintainer]] is applied to a specific version of something e.g. a particular version or packaging of a [[Dataset]], it is always possible that the upstream source has a different maintainer. The [[isBasedOn]] property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.\n ",
+ "rdfs:label": "maintainer",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2311"
+ }
+ },
+ {
+ "@id": "schema:actionableFeedbackPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.",
+ "rdfs:label": "actionableFeedbackPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:NewsMediaOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:additionalProperty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A property-value pair representing an additional characteristic of the entity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\\n\\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.\n",
+ "rdfs:label": "additionalProperty",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PropertyValue"
+ }
+ },
+ {
+ "@id": "schema:Grant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n ",
+ "rdfs:label": "Grant",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:arrivalPlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The platform where the train arrives.",
+ "rdfs:label": "arrivalPlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:runtimePlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Runtime platform or script interpreter dependencies (example: Java v1, Python 2.3, .NET Framework 3.0).",
+ "rdfs:label": "runtimePlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Head",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Head assessment with clinical examination.",
+ "rdfs:label": "Head",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MSRP",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the manufacturer suggested retail price (\"MSRP\") of an offered product.",
+ "rdfs:label": "MSRP",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:addressLocality",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The locality in which the street address is, and which is in the region. For example, Mountain View.",
+ "rdfs:label": "addressLocality",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalAddress"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PoliceStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A police station.",
+ "rdfs:label": "PoliceStation",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:EmergencyService"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isVariantOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.",
+ "rdfs:label": "isVariantOf",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:hasVariant"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:ProductGroup"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:expectsAcceptanceOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.",
+ "rdfs:label": "expectsAcceptanceOf",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaSubscription"
+ },
+ {
+ "@id": "schema:ConsumeAction"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:seatNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location of the reserved seat (e.g., 27).",
+ "rdfs:label": "seatNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:discount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any discount applied (to an Order).",
+ "rdfs:label": "discount",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Friday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Thursday and Saturday.",
+ "rdfs:label": "Friday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q130"
+ }
+ },
+ {
+ "@id": "schema:vehicleTransmission",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) (\"gearbox\" for cars).",
+ "rdfs:label": "vehicleTransmission",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:interactionCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This property is deprecated, alongside the UserInteraction types on which it depended.",
+ "rdfs:label": "interactionCount",
+ "schema:supersededBy": {
+ "@id": "schema:interactionStatistic"
+ }
+ },
+ {
+ "@id": "schema:PaymentComplete",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment has been received and processed.",
+ "rdfs:label": "PaymentComplete"
+ },
+ {
+ "@id": "schema:branchOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]].",
+ "rdfs:label": "branchOf",
+ "schema:domainIncludes": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:parentOrganization"
+ }
+ },
+ {
+ "@id": "schema:CableOrSatelliteService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service which provides access to media programming like TV or radio. Access may be via cable or satellite.",
+ "rdfs:label": "CableOrSatelliteService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:PayAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent pays a price to a participant.",
+ "rdfs:label": "PayAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A DeliveryTimeSettings represents re-usable pieces of shipping information, relating to timing. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]].",
+ "rdfs:label": "DeliveryTimeSettings",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:WarrantyPromise",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.",
+ "rdfs:label": "WarrantyPromise",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:MobilePhoneStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A store that sells mobile phones and related accessories.",
+ "rdfs:label": "MobilePhoneStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:itemDefectReturnLabelSource",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a defect product.",
+ "rdfs:label": "itemDefectReturnLabelSource",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnLabelSourceEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501q",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501q: Non-profit type referring to Credit Counseling Organizations.",
+ "rdfs:label": "Nonprofit501q",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:educationalAlignment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An alignment to an established educational framework.\n\nThis property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.",
+ "rdfs:label": "educationalAlignment",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LearningResource"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:AlignmentObject"
+ }
+ },
+ {
+ "@id": "schema:DrugCost",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.",
+ "rdfs:label": "DrugCost",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:imagingTechnique",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Imaging technique used.",
+ "rdfs:label": "imagingTechnique",
+ "schema:domainIncludes": {
+ "@id": "schema:ImagingTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalImagingTechnique"
+ }
+ },
+ {
+ "@id": "schema:ReadPermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to read or view the document.",
+ "rdfs:label": "ReadPermission"
+ },
+ {
+ "@id": "schema:WearableSizeSystemContinental",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Continental size system for wearables.",
+ "rdfs:label": "WearableSizeSystemContinental",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:healthPlanNetworkTier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tier(s) for this network.",
+ "rdfs:label": "healthPlanNetworkTier",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanNetwork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:arrivalTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected arrival time.",
+ "rdfs:label": "arrivalTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ]
+ },
+ {
+ "@id": "schema:availabilityStarts",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The beginning of the availability of the product or service included in the offer.",
+ "rdfs:label": "availabilityStarts",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ ]
+ },
+ {
+ "@id": "schema:cookingMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method of cooking, such as Frying, Steaming, ...",
+ "rdfs:label": "cookingMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:RentAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.",
+ "rdfs:label": "RentAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:renegotiableLoan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the terms for payment of interest can be renegotiated during the life of the loan.",
+ "rdfs:label": "renegotiableLoan",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:areaServed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area where a service or offered item is provided.",
+ "rdfs:label": "areaServed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:AdministrativeArea"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberedPosition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A number associated with a role in an organization, for example, the number on an athlete's jersey.",
+ "rdfs:label": "numberedPosition",
+ "schema:domainIncludes": {
+ "@id": "schema:OrganizationRole"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:advanceBookingRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of time that is required between accepting the offer and the actual usage of the resource or service.",
+ "rdfs:label": "advanceBookingRequirement",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:parentOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The larger organization that this organization is a [[subOrganization]] of, if any.",
+ "rdfs:label": "parentOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:subOrganization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:ShortStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Short story or tale. A brief work of literature, usually written in narrative prose.",
+ "rdfs:label": "ShortStory",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1976"
+ }
+ },
+ {
+ "@id": "schema:modifiedTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time the reservation was modified.",
+ "rdfs:label": "modifiedTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:costPerUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The cost per unit of the drug.",
+ "rdfs:label": "costPerUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BreadcrumbList",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\\n\\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList. The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.\n ",
+ "rdfs:label": "BreadcrumbList",
+ "rdfs:subClassOf": {
+ "@id": "schema:ItemList"
+ }
+ },
+ {
+ "@id": "schema:ReservationStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated status values for Reservation.",
+ "rdfs:label": "ReservationStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:Observational",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "An observational study design.",
+ "rdfs:label": "Observational",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LandmarksOrHistoricalBuildings",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An historical landmark or building.",
+ "rdfs:label": "LandmarksOrHistoricalBuildings",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:Seat",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe a seat, such as a reserved seat in an event reservation.",
+ "rdfs:label": "Seat",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:PaymentService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Service to transfer funds from a person or organization to a beneficiary person or organization.",
+ "rdfs:label": "PaymentService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:PercutaneousProcedure",
+ "@type": "schema:MedicalProcedureType",
+ "rdfs:comment": "A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.",
+ "rdfs:label": "PercutaneousProcedure",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:OpenTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which the researcher knows the full details of the treatment, and so does the patient.",
+ "rdfs:label": "OpenTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:PaymentDeclined",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payee received the payment, but it was declined for some reason.",
+ "rdfs:label": "PaymentDeclined"
+ },
+ {
+ "@id": "schema:illustrator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The illustrator of the book.",
+ "rdfs:label": "illustrator",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:contentSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "File size in (mega/kilo)bytes.",
+ "rdfs:label": "contentSize",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:contactOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).",
+ "rdfs:label": "contactOption",
+ "schema:domainIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPointOption"
+ }
+ },
+ {
+ "@id": "schema:afterMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object representing the circumstances after performing this direction.",
+ "rdfs:label": "afterMedia",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToDirection"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:priceValidUntil",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date after which the price is no longer available.",
+ "rdfs:label": "priceValidUntil",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:MusicAlbumProductionType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Classification of the album by its type of content: soundtrack, live album, studio album, etc.",
+ "rdfs:label": "MusicAlbumProductionType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:availableIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location in which the strength is available.",
+ "rdfs:label": "availableIn",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugStrength"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:AudioObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An audio file.",
+ "rdfs:label": "AudioObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:Museum",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A museum.",
+ "rdfs:label": "Museum",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:Taxi",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A taxi.",
+ "rdfs:label": "Taxi",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:TaxiService"
+ }
+ },
+ {
+ "@id": "schema:TrainTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip on a commercial train line.",
+ "rdfs:label": "TrainTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ }
+ },
+ {
+ "@id": "schema:primaryPrevention",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.",
+ "rdfs:label": "primaryPrevention",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:dataFeedElement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An item within a data feed. Data feeds may have many elements.",
+ "rdfs:label": "dataFeedElement",
+ "schema:domainIncludes": {
+ "@id": "schema:DataFeed"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:GeospatialGeometry",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.",
+ "rdfs:label": "GeospatialGeometry",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1375"
+ }
+ },
+ {
+ "@id": "schema:PriceComponentTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates different price components that together make up the total price for an offered product.",
+ "rdfs:label": "PriceComponentTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:termDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of time in a term as defined by the institution. A term is a length of time where students take one or more classes. Semesters and quarters are common units for term.",
+ "rdfs:label": "termDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:HealthAndBeautyBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Health and beauty.",
+ "rdfs:label": "HealthAndBeautyBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:occupationalCredentialAwarded",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.",
+ "rdfs:label": "occupationalCredentialAwarded",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Course"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:penciler",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who draws the primary narrative artwork.",
+ "rdfs:label": "penciler",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:interestRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate.",
+ "rdfs:label": "interestRate",
+ "schema:domainIncludes": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:observationDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The observationDate of an [[Observation]].",
+ "rdfs:label": "observationDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:slogan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A slogan or motto associated with the item.",
+ "rdfs:label": "slogan",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c24",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts.",
+ "rdfs:label": "Nonprofit501c24",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Vein",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of blood vessel that specifically carries blood to the heart.",
+ "rdfs:label": "Vein",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vessel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:cvdNumVentUse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.",
+ "rdfs:label": "cvdNumVentUse",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:ItemListOrderDescending",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with higher values listed first.",
+ "rdfs:label": "ItemListOrderDescending"
+ },
+ {
+ "@id": "schema:hasMenuSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A subgrouping of the menu (by dishes, course, serving time period, etc.).",
+ "rdfs:label": "hasMenuSection",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MenuSection"
+ },
+ {
+ "@id": "schema:Menu"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:MenuSection"
+ }
+ },
+ {
+ "@id": "schema:foodWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.",
+ "rdfs:label": "foodWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:legislationType",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#type_document"
+ },
+ "rdfs:comment": "The type of the legislation. Examples of values are \"law\", \"act\", \"directive\", \"decree\", \"regulation\", \"statutory instrument\", \"loi organique\", \"règlement grand-ducal\", etc., depending on the country.",
+ "rdfs:label": "legislationType",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:genre"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CategoryCode"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#type_document"
+ }
+ },
+ {
+ "@id": "schema:EvidenceLevelC",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Only consensus opinion of experts, case studies, or standard-of-care.",
+ "rdfs:label": "EvidenceLevelC",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:shippingLabel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).",
+ "rdfs:label": "shippingLabel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:ShippingRateSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:valueReference",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.",
+ "rdfs:label": "valueReference",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Enumeration"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:StructuredValue"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MeasurementTypeEnumeration"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:serviceUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The website to access the service.",
+ "rdfs:label": "serviceUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:jobImmediateStart",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An indicator as to whether a position is available for an immediate start.",
+ "rdfs:label": "jobImmediateStart",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2244"
+ }
+ },
+ {
+ "@id": "schema:Artery",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/51114001"
+ },
+ "rdfs:comment": "A type of blood vessel that specifically carries blood away from the heart.",
+ "rdfs:label": "Artery",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vessel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:NoninvasiveProcedure",
+ "@type": "schema:MedicalProcedureType",
+ "rdfs:comment": "A type of medical procedure that involves noninvasive techniques.",
+ "rdfs:label": "NoninvasiveProcedure",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bookEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The edition of the book.",
+ "rdfs:label": "bookEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:taxonRank",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
+ },
+ "rdfs:comment": "The taxonomic rank of this taxon given preferably as a URI from a controlled vocabulary – typically the ranks from TDWG TaxonRank ontology or equivalent Wikidata URIs.",
+ "rdfs:label": "taxonRank",
+ "schema:domainIncludes": {
+ "@id": "schema:Taxon"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:boardingPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of boarding policy used by the airline (e.g. zone-based or group-based).",
+ "rdfs:label": "boardingPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Airline"
+ },
+ {
+ "@id": "schema:Flight"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:BoardingPolicyType"
+ }
+ },
+ {
+ "@id": "schema:beforeMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object representing the circumstances before performing this direction.",
+ "rdfs:label": "beforeMedia",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToDirection"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SiteNavigationElement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A navigation element of the page.",
+ "rdfs:label": "SiteNavigationElement",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size groups (also known as \"size types\") for wearable products.",
+ "rdfs:label": "WearableSizeGroupEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:SizeGroupEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Neck",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Neck assessment with clinical examination.",
+ "rdfs:label": "Neck",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific dosing schedule for a drug or supplement.",
+ "rdfs:label": "DoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelInBox",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Specifies that a return label will be provided by the seller in the shipping box.",
+ "rdfs:label": "ReturnLabelInBox",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:HealthcareConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item is a pharmaceutical (e.g., a prescription or OTC drug) or a restricted medical device.",
+ "rdfs:label": "HealthcareConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:minPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The lowest price if the price is a range.",
+ "rdfs:label": "minPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:department",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.",
+ "rdfs:label": "department",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:manufacturer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The manufacturer of the product.",
+ "rdfs:label": "manufacturer",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:applicableLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location in which the status applies.",
+ "rdfs:label": "applicableLocation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DrugCost"
+ },
+ {
+ "@id": "schema:DrugLegalStatus"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:ConfirmAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of notifying someone that a future event/action is going to happen as expected.\\n\\nRelated actions:\\n\\n* [[CancelAction]]: The antonym of ConfirmAction.",
+ "rdfs:label": "ConfirmAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InformAction"
+ }
+ },
+ {
+ "@id": "schema:inStoreReturnsOffered",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Are in-store returns offered? (For more advanced return methods use the [[returnMethod]] property.)",
+ "rdfs:label": "inStoreReturnsOffered",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:processingTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Estimated processing time for the service using this channel.",
+ "rdfs:label": "processingTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:FoodService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food service, like breakfast, lunch, or dinner.",
+ "rdfs:label": "FoodService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:DeactivateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).",
+ "rdfs:label": "DeactivateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:TheaterGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.",
+ "rdfs:label": "TheaterGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:PerformingGroup"
+ }
+ },
+ {
+ "@id": "schema:spatial",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:spatial"
+ },
+ "rdfs:comment": "The \"spatial\" property can be used in cases when more specific properties\n(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.",
+ "rdfs:label": "spatial",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:gtin14",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin14",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:availableStrength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An available dosage strength for the drug.",
+ "rdfs:label": "availableStrength",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugStrength"
+ }
+ },
+ {
+ "@id": "schema:OrderPaymentDue",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that payment is due on an order.",
+ "rdfs:label": "OrderPaymentDue"
+ },
+ {
+ "@id": "schema:previousItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to the ListItem that precedes the current one.",
+ "rdfs:label": "previousItem",
+ "schema:domainIncludes": {
+ "@id": "schema:ListItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ListItem"
+ }
+ },
+ {
+ "@id": "schema:AutoRental",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A car rental business.",
+ "rdfs:label": "AutoRental",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:colleague",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A colleague of the person.",
+ "rdfs:label": "colleague",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DigitalFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DigitalFormat.",
+ "rdfs:label": "DigitalFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:OfferItemCondition",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible conditions for the item.",
+ "rdfs:label": "OfferItemCondition",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:exerciseCourse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The course where this action was taken.",
+ "rdfs:label": "exerciseCourse",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:game",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Video game which is played on this server.",
+ "rdfs:label": "game",
+ "schema:domainIncludes": {
+ "@id": "schema:GameServer"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:gameServer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:VideoGame"
+ }
+ },
+ {
+ "@id": "schema:roofLoad",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "roofLoad",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Car"
+ },
+ {
+ "@id": "schema:BusOrCoach"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:totalPaymentDue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total amount due.",
+ "rdfs:label": "totalPaymentDue",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ]
+ },
+ {
+ "@id": "schema:emissionsCO2",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\".",
+ "rdfs:label": "emissionsCO2",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Accommodation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Accommodation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:textValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text value being annotated.",
+ "rdfs:label": "textValue",
+ "schema:domainIncludes": {
+ "@id": "schema:PronounceableText"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:InviteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of asking someone to attend an event. Reciprocal of RsvpAction.",
+ "rdfs:label": "InviteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:potentialUse",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
+ },
+ "rdfs:comment": "Intended use of the BioChemEntity by humans.",
+ "rdfs:label": "potentialUse",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ChemicalSubstance"
+ },
+ {
+ "@id": "schema:MolecularEntity"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ }
+ },
+ {
+ "@id": "schema:tributary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.",
+ "rdfs:label": "tributary",
+ "schema:domainIncludes": {
+ "@id": "schema:Vein"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:PodcastSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A podcast is an episodic series of digital audio or video files which a user can download and listen to.",
+ "rdfs:label": "PodcastSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
+ },
+ {
+ "@id": "schema:SizeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Size related properties of a product, typically a size code ([[name]]) and optionally a [[sizeSystem]], [[sizeGroup]], and product measurements ([[hasMeasurement]]). In addition, the intended audience can be defined through [[suggestedAge]], [[suggestedGender]], and suggested body measurements ([[suggestedMeasurement]]).",
+ "rdfs:label": "SizeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:photos",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Photographs of this place.",
+ "rdfs:label": "photos",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:Photograph"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:photo"
+ }
+ },
+ {
+ "@id": "schema:HealthTopicContent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "[[HealthTopicContent]] is [[WebContent]] that is about some aspect of a health topic, e.g. a condition, its symptoms or treatments. Such content may be comprised of several parts or sections and use different types of media. Multiple instances of [[WebContent]] (and hence [[HealthTopicContent]]) can be related using [[hasPart]] / [[isPartOf]] where there is some kind of content hierarchy, and their content described with [[about]] and [[mentions]] e.g. building upon the existing [[MedicalCondition]] vocabulary.\n ",
+ "rdfs:label": "HealthTopicContent",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebContent"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:publisher",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The publisher of the creative work.",
+ "rdfs:label": "publisher",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:CriticReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[CriticReview]] is a more specialized form of Review written or published by a source that is recognized for its reviewing activities. These can include online columns, travel and food guides, TV and radio shows, blogs and other independent Web sites. [[CriticReview]]s are typically more in-depth and professionally written. For simpler, casually written user/visitor/viewer/customer reviews, it is more appropriate to use the [[UserReview]] type. Review aggregator sites such as Metacritic already separate out the site's user reviews from selected critic reviews that originate from third-party sources.",
+ "rdfs:label": "CriticReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ }
+ },
+ {
+ "@id": "schema:CleaningFee",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the cleaning fee part of the total price for an offered product, for example a vacation rental.",
+ "rdfs:label": "CleaningFee",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:sport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A type of sport (e.g. Baseball).",
+ "rdfs:label": "sport",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SportsOrganization"
+ },
+ {
+ "@id": "schema:SportsEvent"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1951"
+ }
+ },
+ {
+ "@id": "schema:Class",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "rdfs:Class"
+ },
+ "rdfs:comment": "A class, also often called a 'Type'; equivalent to rdfs:Class.",
+ "rdfs:label": "Class",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Aquarium",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Aquarium.",
+ "rdfs:label": "Aquarium",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemIT",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Italian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemIT",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:isResizable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality.",
+ "rdfs:label": "isResizable",
+ "schema:domainIncludes": {
+ "@id": "schema:3DModel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2394"
+ }
+ },
+ {
+ "@id": "schema:associatedReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated [[Review]].",
+ "rdfs:label": "associatedReview",
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:targetName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of a node in an established educational framework.",
+ "rdfs:label": "targetName",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PublicSwimmingPool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A public swimming pool.",
+ "rdfs:label": "PublicSwimmingPool",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupPlus",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Plus\" for wearables.",
+ "rdfs:label": "WearableSizeGroupPlus",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:PodcastEpisode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single episode of a podcast series.",
+ "rdfs:label": "PodcastEpisode",
+ "rdfs:subClassOf": {
+ "@id": "schema:Episode"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
+ },
+ {
+ "@id": "schema:Dataset",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": [
+ {
+ "@id": "dcmitype:Dataset"
+ },
+ {
+ "@id": "dcat:Dataset"
+ },
+ {
+ "@id": "void:Dataset"
+ }
+ ],
+ "rdfs:comment": "A body of structured information describing some topic(s) of interest.",
+ "rdfs:label": "Dataset",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
+ }
+ },
+ {
+ "@id": "schema:breastfeedingWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.",
+ "rdfs:label": "breastfeedingWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Conversation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties.",
+ "rdfs:label": "Conversation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:discountCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency of the discount.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "discountCurrency",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:CovidTestingFacility",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus\n disease is available. If the facility is being made available from an established [[Pharmacy]], [[Hotel]], or other\n non-medical organization, multiple types can be listed. This makes it easier to re-use existing schema.org information\n about that place, e.g. contact info, address, opening hours. Note that in an emergency, such information may not always be reliable.\n ",
+ "rdfs:label": "CovidTestingFacility",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalClinic"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:keywords",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.",
+ "rdfs:label": "keywords",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:regionDrained",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.",
+ "rdfs:label": "regionDrained",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Vein"
+ },
+ {
+ "@id": "schema:LymphaticVessel"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:exceptDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines a [[Date]] or [[DateTime]] during which a scheduled [[Event]] will not take place. The property allows exceptions to\n a [[Schedule]] to be specified. If an exception is specified as a [[DateTime]] then only the event that would have started at that specific date and time\n should be excluded from the schedule. If an exception is specified as a [[Date]] then any event that is scheduled for that 24 hour period should be\n excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.",
+ "rdfs:label": "exceptDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:relatedAnatomy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Anatomical systems or structures that relate to the superficial anatomy.",
+ "rdfs:label": "relatedAnatomy",
+ "schema:domainIncludes": {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:noBylinesPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines.",
+ "rdfs:label": "noBylinesPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OutOfStock",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is out of stock.",
+ "rdfs:label": "OutOfStock"
+ },
+ {
+ "@id": "schema:MedicalIntangible",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.",
+ "rdfs:label": "MedicalIntangible",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:serverStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Status of a game server.",
+ "rdfs:label": "serverStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:GameServer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:GameServerStatus"
+ }
+ },
+ {
+ "@id": "schema:variableMeasured",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.",
+ "rdfs:label": "variableMeasured",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1083"
+ }
+ },
+ {
+ "@id": "schema:PostalCodeRangeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates a range of postal codes, usually defined as the set of valid codes between [[postalCodeBegin]] and [[postalCodeEnd]], inclusively.",
+ "rdfs:label": "PostalCodeRangeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:variantCover",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the variant cover\n \tfor the issue, if the issue is a variant printing. For example, \"Bryan Hitch\n \tVariant Cover\" or \"2nd Printing Variant\".",
+ "rdfs:label": "variantCover",
+ "schema:domainIncludes": {
+ "@id": "schema:ComicIssue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c18",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust (created before 25 June 1959).",
+ "rdfs:label": "Nonprofit501c18",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:honorificSuffix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An honorific suffix following a Person's name such as M.D./PhD/MSCSW.",
+ "rdfs:label": "honorificSuffix",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:assesses",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The item being described is intended to assess the competency or learning outcome defined by the referenced term.",
+ "rdfs:label": "assesses",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:EducationEvent"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2427"
+ }
+ },
+ {
+ "@id": "schema:masthead",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.",
+ "rdfs:label": "masthead",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:courseWorkload",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, \"2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week\".",
+ "rdfs:label": "courseWorkload",
+ "schema:domainIncludes": {
+ "@id": "schema:CourseInstance"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1909"
+ }
+ },
+ {
+ "@id": "schema:WantAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a desire about the object. An agent wants an object.",
+ "rdfs:label": "WantAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:MixtapeAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "MixtapeAlbum.",
+ "rdfs:label": "MixtapeAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c20",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations.",
+ "rdfs:label": "Nonprofit501c20",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c15",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations.",
+ "rdfs:label": "Nonprofit501c15",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ownedFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time of obtaining the product.",
+ "rdfs:label": "ownedFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:OwnershipInfo"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:recognizedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.",
+ "rdfs:label": "recognizedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:meetsEmissionStandard",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates that the vehicle meets the respective emission standard.",
+ "rdfs:label": "meetsEmissionStandard",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:monoisotopicMolecularWeight",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "The monoisotopic mass is the sum of the masses of the atoms in a molecule using the unbound, ground-state, rest mass of the principal (most abundant) isotope for each element instead of the isotopic average mass. Please include the units in the form '<Number> <unit>', for example '770.230488 g/mol' or as '<QuantitativeValue>.",
+ "rdfs:label": "monoisotopicMolecularWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:GraphicNovel",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.",
+ "rdfs:label": "GraphicNovel",
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:TaxiReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "TaxiReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:positiveNotes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Provides positive considerations regarding something, for example product highlights or (alongside [[negativeNotes]]) pro/con lists for reviews.\n\nIn the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described.\n\nThe property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most positive is at the beginning of the list).",
+ "rdfs:label": "positiveNotes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Review"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:ItemList"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2832"
+ }
+ },
+ {
+ "@id": "schema:Bacteria",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic bacteria that cause bacterial infection.",
+ "rdfs:label": "Bacteria",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:NightClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A nightclub or discotheque.",
+ "rdfs:label": "NightClub",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:circle",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.",
+ "rdfs:label": "circle",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoShape"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ScheduleAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Scheduling future actions, events, or tasks.\\n\\nRelated actions:\\n\\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.",
+ "rdfs:label": "ScheduleAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlanAction"
+ }
+ },
+ {
+ "@id": "schema:ScholarlyArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A scholarly article.",
+ "rdfs:label": "ScholarlyArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:benefitsSummaryUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation.",
+ "rdfs:label": "benefitsSummaryUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:wordCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of words in the text of the Article.",
+ "rdfs:label": "wordCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:thumbnail",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Thumbnail image for an image or video.",
+ "rdfs:label": "thumbnail",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:VideoObject"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ImageObject"
+ }
+ },
+ {
+ "@id": "schema:accountId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The identifier for the account the payment will be applied to.",
+ "rdfs:label": "accountId",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:strengthValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The value of an active ingredient's strength, e.g. 325.",
+ "rdfs:label": "strengthValue",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugStrength"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:tocEntry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a [[HyperTocEntry]] in a [[HyperToc]].",
+ "rdfs:label": "tocEntry",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:HyperToc"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:acceptedAnswer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.",
+ "rdfs:label": "acceptedAnswer",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:suggestedAnswer"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Question"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:Answer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:healthcareReportingData",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].",
+ "rdfs:label": "healthcareReportingData",
+ "schema:domainIncludes": {
+ "@id": "schema:Hospital"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CDCPMDRecord"
+ },
+ {
+ "@id": "schema:Dataset"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:applicationCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type of software application, e.g. 'Game, Multimedia'.",
+ "rdfs:label": "applicationCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BuddhistTemple",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Buddhist temple.",
+ "rdfs:label": "BuddhistTemple",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:reviewRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.",
+ "rdfs:label": "reviewRating",
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Rating"
+ }
+ },
+ {
+ "@id": "schema:SatiricalArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized.",
+ "rdfs:label": "SatiricalArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:earlyPrepaymentPenalty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount to be paid as a penalty in the event of early payment of the loan.",
+ "rdfs:label": "earlyPrepaymentPenalty",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FoodEstablishment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food-related business.",
+ "rdfs:label": "FoodEstablishment",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:nationality",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Nationality of the person.",
+ "rdfs:label": "nationality",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Country"
+ }
+ },
+ {
+ "@id": "schema:MarryAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of marrying a person.",
+ "rdfs:label": "MarryAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:ProfilePage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Profile page.",
+ "rdfs:label": "ProfilePage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:AmusementPark",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An amusement park.",
+ "rdfs:label": "AmusementPark",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:titleEIDR",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" has a titleEIDR of \"10.5240/7EC7-228A-510A-053E-CBB8-J\". This title (or work) may have several variants, which EIDR calls \"edits\". See [[editEIDR]].\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
+ "rdfs:label": "titleEIDR",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:Movie"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2469"
+ }
+ },
+ {
+ "@id": "schema:BowlingAlley",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bowling alley.",
+ "rdfs:label": "BowlingAlley",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:url",
+ "@type": "rdf:Property",
+ "rdfs:comment": "URL of the item.",
+ "rdfs:label": "url",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:dosageForm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.",
+ "rdfs:label": "dosageForm",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Sunday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Saturday and Monday.",
+ "rdfs:label": "Sunday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q132"
+ }
+ },
+ {
+ "@id": "schema:ScreeningHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about how to screen or further filter a topic.",
+ "rdfs:label": "ScreeningHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:PaymentCard",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A payment method using a credit, debit, store or other card to associate the payment with an account.",
+ "rdfs:label": "PaymentCard",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:PaymentMethod"
+ },
+ {
+ "@id": "schema:FinancialProduct"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:affiliation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.",
+ "rdfs:label": "affiliation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:memberOf"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:RespiratoryTherapy",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).",
+ "rdfs:label": "RespiratoryTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:inDefinedTermSet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[DefinedTermSet]] that contains this term.",
+ "rdfs:label": "inDefinedTermSet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedTerm"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTermSet"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:accountMinimumInflow",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A minimum amount that has to be paid in every month.",
+ "rdfs:label": "accountMinimumInflow",
+ "schema:domainIncludes": {
+ "@id": "schema:BankAccount"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:reviews",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Review of the item.",
+ "rdfs:label": "reviews",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:review"
+ }
+ },
+ {
+ "@id": "schema:DataFeed",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single feed providing structured information about one or more entities or topics.",
+ "rdfs:label": "DataFeed",
+ "rdfs:subClassOf": {
+ "@id": "schema:Dataset"
+ }
+ },
+ {
+ "@id": "schema:TaxiVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the car as a taxi.",
+ "rdfs:label": "TaxiVehicleUsage",
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:isBasedOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A resource from which this work is derived or from which it is a modification or adaption.",
+ "rdfs:label": "isBasedOn",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ElectronicsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An electronics store.",
+ "rdfs:label": "ElectronicsStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Toxicologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.",
+ "rdfs:label": "Toxicologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:CDFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "CDFormat.",
+ "rdfs:label": "CDFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:VideoGameClip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short segment/part of a video game.",
+ "rdfs:label": "VideoGameClip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Clip"
+ }
+ },
+ {
+ "@id": "schema:postOfficeBoxNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The post office box number for PO box addresses.",
+ "rdfs:label": "postOfficeBoxNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalAddress"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:TieAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of reaching a draw in a competitive activity.",
+ "rdfs:label": "TieAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AchieveAction"
+ }
+ },
+ {
+ "@id": "schema:payload",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "payload",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:AllWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "All-wheel Drive is a transmission layout where the engine drives all four wheels.",
+ "rdfs:label": "AllWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Bone",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Rigid connective tissue that comprises up the skeletal structure of the human body.",
+ "rdfs:label": "Bone",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AMRadioChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio channel that uses AM.",
+ "rdfs:label": "AMRadioChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:RadioChannel"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:PET",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Positron emission tomography imaging.",
+ "rdfs:label": "PET",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:passengerSequenceNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The passenger's sequence number as assigned by the airline.",
+ "rdfs:label": "passengerSequenceNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:expectedPrognosis",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The likely outcome in either the short term or long term of the medical condition.",
+ "rdfs:label": "expectedPrognosis",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:legislationChanges",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#changes"
+ },
+ "rdfs:comment": "Another legislation that this legislation changes. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change (textual or non-textual amendment) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the legislationConsolidates property.",
+ "rdfs:label": "legislationChanges",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#changes"
+ }
+ },
+ {
+ "@id": "schema:gracePeriod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The period of time after any due date that the borrower has to fulfil its obligations before a default (failure to pay) is deemed to have occurred.",
+ "rdfs:label": "gracePeriod",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MusicAlbumReleaseType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The kind of release which this album is: single, EP or album.",
+ "rdfs:label": "MusicAlbumReleaseType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:memberOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
+ "rdfs:label": "memberOf",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:member"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ProgramMembership"
+ }
+ ]
+ },
+ {
+ "@id": "schema:warranty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The warranty promise(s) included in the offer.",
+ "rdfs:label": "warranty",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:paymentAccepted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.",
+ "rdfs:label": "paymentAccepted",
+ "schema:domainIncludes": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501n",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501n: Non-profit type referring to Charitable Risk Pools.",
+ "rdfs:label": "Nonprofit501n",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:articleSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.",
+ "rdfs:label": "articleSection",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:isEncodedByBioChemEntity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Another BioChemEntity encoding by this one.",
+ "rdfs:label": "isEncodedByBioChemEntity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:encodesBioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Gene"
+ }
+ },
+ {
+ "@id": "schema:ResearchProject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Research project.",
+ "rdfs:label": "ResearchProject",
+ "rdfs:subClassOf": {
+ "@id": "schema:Project"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:repeatFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the frequency at which [[Event]]s will occur according to a schedule [[Schedule]]. The intervals between\n events should be defined as a [[Duration]] of time.",
+ "rdfs:label": "repeatFrequency",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:frequency"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Duration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:courseMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous).",
+ "rdfs:label": "courseMode",
+ "schema:domainIncludes": {
+ "@id": "schema:CourseInstance"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:holdingArchive",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]]."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "holdingArchive"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ArchiveComponent"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:archiveHeld"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ArchiveOrganization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:DislikeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "DislikeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:mentions",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.",
+ "rdfs:label": "mentions",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:legislationApplies",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#implements"
+ },
+ "rdfs:comment": "Indicates that this legislation (or part of a legislation) somehow transfers another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the legislationTransposes property. For example an informative consolidated law of a European Union's member state \"applies\" the consolidated version of the European Directive implemented in it.",
+ "rdfs:label": "legislationApplies",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#implements"
+ }
+ },
+ {
+ "@id": "schema:Schedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A schedule defines a repeating time period used to describe a regularly occurring [[Event]]. At a minimum a schedule will specify [[repeatFrequency]] which describes the interval between occurrences of the event. Additional information can be provided to specify the schedule more precisely.\n This includes identifying the day(s) of the week or month when the recurring event will take place, in addition to its start and end time. Schedules may also\n have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.",
+ "rdfs:label": "Schedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:accountOverdraftLimit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An overdraft is an extension of credit from a lending institution when an account reaches zero. An overdraft allows the individual to continue withdrawing money even if the account has no funds in it. Basically the bank allows people to borrow a set amount of money.",
+ "rdfs:label": "accountOverdraftLimit",
+ "schema:domainIncludes": {
+ "@id": "schema:BankAccount"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numTracks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of tracks in this album or playlist.",
+ "rdfs:label": "numTracks",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicPlaylist"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:evidenceLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Strength of evidence of the data used to formulate the guideline (enumerated).",
+ "rdfs:label": "evidenceLevel",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEvidenceLevel"
+ }
+ },
+ {
+ "@id": "schema:alternateName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An alias for the item.",
+ "rdfs:label": "alternateName",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:numberOfPages",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of pages in the book.",
+ "rdfs:label": "numberOfPages",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:domainIncludes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Relates a property to a class that is (one of) the type(s) the property is expected to be used on.",
+ "rdfs:label": "domainIncludes",
+ "schema:domainIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Class"
+ }
+ },
+ {
+ "@id": "schema:opponent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The opponent on this action.",
+ "rdfs:label": "opponent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:artist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The primary artist for a work\n \tin a medium other than pencils or digital line art--for example, if the\n \tprimary artwork is done in watercolors or digital paints.",
+ "rdfs:label": "artist",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:ContactPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Contact page.",
+ "rdfs:label": "ContactPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:AlignmentObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.",
+ "rdfs:label": "AlignmentObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"
+ }
+ },
+ {
+ "@id": "schema:publishingPrinciples",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n",
+ "rdfs:label": "publishingPrinciples",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PaymentChargeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The costs of settling the payment using a particular payment method.",
+ "rdfs:label": "PaymentChargeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:orderQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of the item ordered. If the property is not set, assume the quantity is one.",
+ "rdfs:label": "orderQuantity",
+ "schema:domainIncludes": {
+ "@id": "schema:OrderItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:height",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The height of the item.",
+ "rdfs:label": "height",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isbn",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/isbn"
+ },
+ "rdfs:comment": "The ISBN of the book.",
+ "rdfs:label": "isbn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:additionalVariable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.",
+ "rdfs:label": "additionalVariable",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:typicalTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical test typically performed given this condition.",
+ "rdfs:label": "typicalTest",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
+ }
+ },
+ {
+ "@id": "schema:departurePlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The platform from which the train departs.",
+ "rdfs:label": "departurePlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ChooseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",
+ "rdfs:label": "ChooseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:WebAPI",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An application programming interface accessible over Web/Internet technologies.",
+ "rdfs:label": "WebAPI",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ }
+ },
+ {
+ "@id": "schema:PlaceOfWorship",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Place of worship, such as a church, synagogue, or mosque.",
+ "rdfs:label": "PlaceOfWorship",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:TVClip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short TV program or a segment/part of a TV program.",
+ "rdfs:label": "TVClip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Clip"
+ }
+ },
+ {
+ "@id": "schema:Mass",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.",
+ "rdfs:label": "Mass",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:Male",
+ "@type": "schema:GenderType",
+ "rdfs:comment": "The male gender.",
+ "rdfs:label": "Male"
+ },
+ {
+ "@id": "schema:followee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The person or organization being followed.",
+ "rdfs:label": "followee",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:FollowAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DangerousGoodConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is dangerous and requires careful handling and/or special training of the user. See also the [UN Model Classification](https://unece.org/DAM/trans/danger/publi/unrec/rev17/English/02EREv17_Part2.pdf) defining the 9 classes of dangerous goods such as explosives, gases, flammables, and more.",
+ "rdfs:label": "DangerousGoodConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:HyperToc",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items.",
+ "rdfs:label": "HyperToc",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:inventoryLevel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current approximate inventory level for the item or items.",
+ "rdfs:label": "inventoryLevel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:SomeProducts"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:model",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.",
+ "rdfs:label": "model",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:recordingOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The composition this track is a recording of.",
+ "rdfs:label": "recordingOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordedAs"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:recordedAs",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An audio recording of the work.",
+ "rdfs:label": "recordedAs",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordingOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Restaurant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A restaurant.",
+ "rdfs:label": "Restaurant",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:yield",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.",
+ "rdfs:label": "yield",
+ "schema:domainIncludes": {
+ "@id": "schema:HowTo"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isAvailableGenerically",
+ "@type": "rdf:Property",
+ "rdfs:comment": "True if the drug is available in a generic form (regardless of name).",
+ "rdfs:label": "isAvailableGenerically",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:GovernmentPermit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permit issued by a government agency.",
+ "rdfs:label": "GovernmentPermit",
+ "rdfs:subClassOf": {
+ "@id": "schema:Permit"
+ }
+ },
+ {
+ "@id": "schema:employerOverview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the employer, career opportunities and work environment for this position.",
+ "rdfs:label": "employerOverview",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2396"
+ }
+ },
+ {
+ "@id": "schema:RestrictedDiet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. ",
+ "rdfs:label": "RestrictedDiet",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:contributor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secondary contributor to the CreativeWork or Event.",
+ "rdfs:label": "contributor",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SportsClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sports club.",
+ "rdfs:label": "SportsClub",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:PublicationEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type, e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.",
+ "rdfs:label": "PublicationEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:coursePrerequisites",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Requirements for taking the Course. May be completion of another [[Course]] or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].",
+ "rdfs:label": "coursePrerequisites",
+ "schema:domainIncludes": {
+ "@id": "schema:Course"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Course"
+ },
+ {
+ "@id": "schema:AlignmentObject"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:targetPlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type of app development: phone, Metro style, desktop, XBox, etc.",
+ "rdfs:label": "targetPlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:elevation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT\\_OF\\_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.",
+ "rdfs:label": "elevation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TravelAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A travel agency.",
+ "rdfs:label": "TravelAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:eligibleDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration for which the given offer is valid.",
+ "rdfs:label": "eligibleDuration",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:actionOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The options subject to this action.",
+ "rdfs:label": "actionOption",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ChooseAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ }
+ ]
+ },
+ {
+ "@id": "schema:cheatCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Cheat codes to the game.",
+ "rdfs:label": "cheatCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:readonlyValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.",
+ "rdfs:label": "readonlyValue",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:EnergyEfficiencyEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates energy efficiency levels (also known as \"classes\" or \"ratings\") and certifications that are part of several international energy efficiency standards.",
+ "rdfs:label": "EnergyEfficiencyEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:NailSalon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A nail salon.",
+ "rdfs:label": "NailSalon",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:byArtist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The artist that performed this album or recording.",
+ "rdfs:label": "byArtist",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MusicAlbum"
+ },
+ {
+ "@id": "schema:MusicRecording"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MusicGroup"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:season",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A season in a media series.",
+ "rdfs:label": "season",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:containsSeason"
+ }
+ },
+ {
+ "@id": "schema:bloodSupply",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The blood vessel that carries blood from the heart to the muscle.",
+ "rdfs:label": "bloodSupply",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:healthPlanNetworkId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Name or unique ID of network. (Networks are often reused across different insurance plans.)",
+ "rdfs:label": "healthPlanNetworkId",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HealthPlanNetwork"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:skills",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.",
+ "rdfs:label": "skills",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2322"
+ }
+ ]
+ },
+ {
+ "@id": "schema:xpath",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".",
+ "rdfs:label": "xpath",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:WebPageElement"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:XPathType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ }
+ },
+ {
+ "@id": "schema:availability",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The availability of this item—for example In stock, Out of stock, Pre-order, etc.",
+ "rdfs:label": "availability",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ItemAvailability"
+ }
+ },
+ {
+ "@id": "schema:RefurbishedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is refurbished.",
+ "rdfs:label": "RefurbishedCondition"
+ },
+ {
+ "@id": "schema:Plumber",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A plumbing service.",
+ "rdfs:label": "Plumber",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:TouristInformationCenter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist information center.",
+ "rdfs:label": "TouristInformationCenter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:enginePower",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The power of the vehicle's engine.\n Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\\n\\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine\\_power\\_test\\_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "enginePower",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:fuelCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.\\n\\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles).",
+ "rdfs:label": "fuelCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:QuoteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.",
+ "rdfs:label": "QuoteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:increasesRiskOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The condition, complication, etc. influenced by this factor.",
+ "rdfs:label": "increasesRiskOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskFactor"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:typeOfBed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.",
+ "rdfs:label": "typeOfBed",
+ "schema:domainIncludes": {
+ "@id": "schema:BedDetails"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BedType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupBoys",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Boys\" for wearables.",
+ "rdfs:label": "WearableSizeGroupBoys",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:percentile75",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 75th percentile value.",
+ "rdfs:label": "percentile75",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:suggestedMinAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Minimum recommended age in years for the audience or user.",
+ "rdfs:label": "suggestedMinAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:inverseOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Relates a property to a property that is its inverse. Inverse properties relate the same pairs of items to each other, but in reversed direction. For example, the 'alumni' and 'alumniOf' properties are inverseOf each other. Some properties don't have explicit inverses; in these situations RDFa and JSON-LD syntax for reverse properties can be used.",
+ "rdfs:label": "inverseOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Property"
+ }
+ },
+ {
+ "@id": "schema:CompletedActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An action that has already taken place.",
+ "rdfs:label": "CompletedActionStatus"
+ },
+ {
+ "@id": "schema:OceanBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An ocean (for example, the Pacific).",
+ "rdfs:label": "OceanBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:PlayGameAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of playing a video game.",
+ "rdfs:label": "PlayGameAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:activityFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How often one should engage in the activity.",
+ "rdfs:label": "activityFrequency",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ActivateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).",
+ "rdfs:label": "ActivateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:playerType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Player type required—for example, Flash or Silverlight.",
+ "rdfs:label": "playerType",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:broadcastSubChannel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The subchannel used for the broadcast.",
+ "rdfs:label": "broadcastSubChannel",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastFrequencySpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2111"
+ }
+ },
+ {
+ "@id": "schema:MenuSection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.",
+ "rdfs:label": "MenuSection",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:MovieRentalStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A movie rental store.",
+ "rdfs:label": "MovieRentalStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:HomeAndConstructionBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A construction business.\\n\\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).",
+ "rdfs:label": "HomeAndConstructionBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:contentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The supported content type(s) for an EntryPoint response.",
+ "rdfs:label": "contentType",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EmergencyService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An emergency service, such as a fire station or ER.",
+ "rdfs:label": "EmergencyService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Chapter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "One of the sections into which a book is divided. A chapter usually has a section number or a name.",
+ "rdfs:label": "Chapter",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:preOp",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the workup, testing, and other preparations required before implanting this device.",
+ "rdfs:label": "preOp",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalDevice"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:employee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Someone working for this organization.",
+ "rdfs:label": "employee",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementUnderbust",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of body just below the bust. Used, for example, to fit women's swimwear.",
+ "rdfs:label": "BodyMeasurementUnderbust",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:license",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A license document that applies to this content, typically indicated by URL.",
+ "rdfs:label": "license",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:itemCondition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A predefined value from OfferItemCondition specifying the condition of the product or service, or the products or services included in the offer. Also used for product return policies to specify the condition of products accepted for returns.",
+ "rdfs:label": "itemCondition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:OfferItemCondition"
+ }
+ },
+ {
+ "@id": "schema:customer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Party placing the order or paying the invoice.",
+ "rdfs:label": "customer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Order",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.",
+ "rdfs:label": "Order",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:ArtGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An art gallery.",
+ "rdfs:label": "ArtGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c8",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations.",
+ "rdfs:label": "Nonprofit501c8",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:wheelbase",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The distance between the centers of the front and rear wheels.\\n\\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet",
+ "rdfs:label": "wheelbase",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:CreativeWork",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
+ "rdfs:label": "CreativeWork",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:OrderStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated status values for Order.",
+ "rdfs:label": "OrderStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:carbohydrateContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of carbohydrates.",
+ "rdfs:label": "carbohydrateContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:paymentDue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date that payment is due.",
+ "rdfs:label": "paymentDue",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:paymentDueDate"
+ }
+ },
+ {
+ "@id": "schema:tourBookingPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.",
+ "rdfs:label": "tourBookingPage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:LeftHandDriving",
+ "@type": "schema:SteeringPositionValue",
+ "rdfs:comment": "The steering position is on the left side of the vehicle (viewed from the main direction of driving).",
+ "rdfs:label": "LeftHandDriving",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:ComicCoverArt",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The artwork on the cover of a comic.",
+ "rdfs:label": "ComicCoverArt",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:CoverArt"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:colorist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who adds color to inked drawings.",
+ "rdfs:label": "colorist",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:procedureType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of procedure, for example Surgical, Noninvasive, or Percutaneous.",
+ "rdfs:label": "procedureType",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalProcedureType"
+ }
+ },
+ {
+ "@id": "schema:LikeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "LikeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementCollar",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the collar, for example of a shirt",
+ "rdfs:label": "WearableMeasurementCollar",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ItemListUnordered",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with no explicit order.",
+ "rdfs:label": "ItemListUnordered"
+ },
+ {
+ "@id": "schema:DemoGameAvailability",
+ "@type": "schema:GameAvailabilityEnumeration",
+ "rdfs:comment": "Indicates demo game availability, i.e. a somehow limited demonstration of the full game.",
+ "rdfs:label": "DemoGameAvailability",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:checkoutPageURLTemplate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL template (RFC 6570) for a checkout page for an offer. This approach allows merchants to specify a URL for online checkout of the offered product, by interpolating parameters such as the logged in user ID, product ID, quantity, discount code etc. Parameter naming and standardization are not specified here.",
+ "rdfs:label": "checkoutPageURLTemplate",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3135"
+ }
+ },
+ {
+ "@id": "schema:Canal",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A canal, like the Panama Canal.",
+ "rdfs:label": "Canal",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:InteractAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of interacting with another person or organization.",
+ "rdfs:label": "InteractAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:SideEffectsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Side effects that can be observed from the usage of the topic.",
+ "rdfs:label": "SideEffectsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:connectedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Other anatomical structures to which this structure is connected.",
+ "rdfs:label": "connectedTo",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:hasEnergyEfficiencyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard.",
+ "rdfs:label": "hasEnergyEfficiencyCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EnergyEfficiencyEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:citation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.",
+ "rdfs:label": "citation",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AudiobookFormat",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.",
+ "rdfs:label": "AudiobookFormat"
+ },
+ {
+ "@id": "schema:suitableForDiet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.",
+ "rdfs:label": "suitableForDiet",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Recipe"
+ },
+ {
+ "@id": "schema:MenuItem"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:RestrictedDiet"
+ }
+ },
+ {
+ "@id": "schema:MathSolver",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A math solver which is capable of solving a subset of mathematical problems.",
+ "rdfs:label": "MathSolver",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
+ }
+ },
+ {
+ "@id": "schema:accessibilitySummary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as \"short descriptions are present but long descriptions will be needed for non-visual users\" or \"short descriptions are present and no long descriptions are needed.\"",
+ "rdfs:label": "accessibilitySummary",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
+ }
+ },
+ {
+ "@id": "schema:childTaxon",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
+ },
+ "rdfs:comment": "Closest child taxa of the taxon in question.",
+ "rdfs:label": "childTaxon",
+ "schema:domainIncludes": {
+ "@id": "schema:Taxon"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:parentTaxon"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:yearlyRevenue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The size of the business in annual revenue.",
+ "rdfs:label": "yearlyRevenue",
+ "schema:domainIncludes": {
+ "@id": "schema:BusinessAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryB",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryB",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:Collection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection of items, e.g. creative works or products.",
+ "rdfs:label": "Collection",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:associatedArticle",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A NewsArticle associated with the Media Object.",
+ "rdfs:label": "associatedArticle",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:NewsArticle"
+ }
+ },
+ {
+ "@id": "schema:ExerciseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of participating in exertive activity for the purposes of improving health and fitness.",
+ "rdfs:label": "ExerciseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlayAction"
+ }
+ },
+ {
+ "@id": "schema:GameServerStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Status of a game server.",
+ "rdfs:label": "GameServerStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:Gene",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "A discrete unit of inheritance which affects one or more biological traits (Source: [https://en.wikipedia.org/wiki/Gene](https://en.wikipedia.org/wiki/Gene)). Examples include FOXP2 (Forkhead box protein P2), SCARNA21 (small Cajal body-specific RNA 21), A- (agouti genotype).",
+ "rdfs:label": "Gene",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Downpayment",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments.",
+ "rdfs:label": "Downpayment",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:scheduleTimezone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the timezone for which the time(s) indicated in the [[Schedule]] are given. The value provided should be among those listed in the IANA Time Zone Database.",
+ "rdfs:label": "scheduleTimezone",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:dropoffLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Where a rental car can be dropped off.",
+ "rdfs:label": "dropoffLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:RentalCarReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:knows",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most generic bi-directional social/work relation.",
+ "rdfs:label": "knows",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:Invoice",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statement of the money due for goods or services; a bill.",
+ "rdfs:label": "Invoice",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:broadcastAffiliateOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The media network(s) whose content is broadcast on this station.",
+ "rdfs:label": "broadcastAffiliateOf",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:relatedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most generic familial relation.",
+ "rdfs:label": "relatedTo",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:superEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
+ "rdfs:label": "superEvent",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:subEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:PostOffice",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A post office.",
+ "rdfs:label": "PostOffice",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentOffice"
+ }
+ },
+ {
+ "@id": "schema:relatedDrug",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any other drug related to this one, for example commonly-prescribed alternatives.",
+ "rdfs:label": "relatedDrug",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:replyToUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL at which a reply may be posted to the specified UserComment.",
+ "rdfs:label": "replyToUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:providesBroadcastService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The BroadcastService offered on this channel.",
+ "rdfs:label": "providesBroadcastService",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:hasBroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastService"
+ }
+ },
+ {
+ "@id": "schema:TextDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A file composed primarily of text.",
+ "rdfs:label": "TextDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:vehicleIdentificationNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.",
+ "rdfs:label": "vehicleIdentificationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:serialNumber"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Flight",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An airline flight.",
+ "rdfs:label": "Flight",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ }
+ },
+ {
+ "@id": "schema:Text",
+ "@type": [
+ "rdfs:Class",
+ "schema:DataType"
+ ],
+ "rdfs:comment": "Data type: Text.",
+ "rdfs:label": "Text"
+ },
+ {
+ "@id": "schema:handlingTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup. Typical properties: minValue, maxValue, unitCode (d for DAY). This is by common convention assumed to mean business days (if a unitCode is used, coded as \"d\"), i.e. only counting days when the business normally operates.",
+ "rdfs:label": "handlingTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:DecontextualizedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'missing context' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'missing context': Presenting unaltered video in an inaccurate manner that misrepresents the footage. For example, using incorrect dates or locations, altering the transcript or sharing brief clips from a longer video to mislead viewers. (A video rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] to be 'missing context': Presenting unaltered images in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An image rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] with embedded text to be 'missing context': An unaltered image presented in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An 'original' image with inaccurate text would generally fall in this category.)\n\nFor an [[AudioObject]] to be 'missing context': Unaltered audio presented in an inaccurate manner that misrepresents it. For example, using incorrect dates or locations, or sharing brief clips from a longer recording to mislead viewers. (Audio rated “original” can also be missing context.)\n",
+ "rdfs:label": "DecontextualizedContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:BedType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of bed. This is used for indicating the bed or beds available in an accommodation.",
+ "rdfs:label": "BedType",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1262"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ ]
+ },
+ {
+ "@id": "schema:sameAs",
+ "@type": "rdf:Property",
+ "rdfs:comment": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
+ "rdfs:label": "sameAs",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:doesNotShip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates when shipping to a particular [[shippingDestination]] is not available.",
+ "rdfs:label": "doesNotShip",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ShippingRateSettings"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:BlogPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A blog post.",
+ "rdfs:label": "BlogPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:SocialMediaPosting"
+ }
+ },
+ {
+ "@id": "schema:Distance",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.",
+ "rdfs:label": "Distance",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:energyEfficiencyScaleMin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
+ "rdfs:label": "energyEfficiencyScaleMin",
+ "schema:domainIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EUEnergyEfficiencyEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:worksFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Organizations that the person works for.",
+ "rdfs:label": "worksFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:ReservationPending",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a reservation when a request has been sent, but not confirmed.",
+ "rdfs:label": "ReservationPending"
+ },
+ {
+ "@id": "schema:LodgingReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for lodging at a hotel, motel, inn, etc.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "LodgingReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:restockingFee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Use [[MonetaryAmount]] to specify a fixed restocking fee for product returns, or use [[Number]] to specify a percentage of the product price paid by the customer.",
+ "rdfs:label": "restockingFee",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:geoWithin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoWithin",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SearchResultsPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Search results page.",
+ "rdfs:label": "SearchResultsPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:physicalRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
+ "rdfs:label": "physicalRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ }
+ },
+ {
+ "@id": "schema:gameServer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The server on which it is possible to play the game.",
+ "rdfs:label": "gameServer",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoGame"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:game"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:GameServer"
+ }
+ },
+ {
+ "@id": "schema:financialAidEligible",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A financial aid type or program which students may use to pay for tuition or fees associated with the program.",
+ "rdfs:label": "financialAidEligible",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2418"
+ }
+ },
+ {
+ "@id": "schema:award",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An award won by or for this item.",
+ "rdfs:label": "award",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:equal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is equal to the object.",
+ "rdfs:label": "equal",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:TennisComplex",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tennis complex.",
+ "rdfs:label": "TennisComplex",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:Embassy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An embassy.",
+ "rdfs:label": "Embassy",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:cvdFacilityId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the NHSN facility that this data record applies to. Use [[cvdFacilityCounty]] to indicate the county. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.",
+ "rdfs:label": "cvdFacilityId",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:DamagedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is damaged.",
+ "rdfs:label": "DamagedCondition"
+ },
+ {
+ "@id": "schema:UnofficialLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates that a document has no particular or special standing (e.g. a republication of a law by a private publisher).",
+ "rdfs:label": "UnofficialLegalValue",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-unofficial"
+ }
+ },
+ {
+ "@id": "schema:MedicalGuideline",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.",
+ "rdfs:label": "MedicalGuideline",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:CampingPitch",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\\n\\n\nIn British English a campsite, or campground, is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites.\n(Source: Wikipedia, see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite).)\\n\\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n",
+ "rdfs:label": "CampingPitch",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:LoseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of being defeated in a competitive activity.",
+ "rdfs:label": "LoseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AchieveAction"
+ }
+ },
+ {
+ "@id": "schema:eventSchedule",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of\n repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly\n gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that\n is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated\n [[Schedule]], this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months\n or seasons.",
+ "rdfs:label": "eventSchedule",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:webCheckinTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time when a passenger can check into the flight online.",
+ "rdfs:label": "webCheckinTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupTall",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Tall\" for wearables.",
+ "rdfs:label": "WearableSizeGroupTall",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:KosherDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Jewish dietary practices.",
+ "rdfs:label": "KosherDiet"
+ },
+ {
+ "@id": "schema:FDAcategoryB",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.",
+ "rdfs:label": "FDAcategoryB",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupJuniors",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Juniors\" for wearables.",
+ "rdfs:label": "WearableSizeGroupJuniors",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ElementarySchool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An elementary school.",
+ "rdfs:label": "ElementarySchool",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:streetAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The street address. For example, 1600 Amphitheatre Pkwy.",
+ "rdfs:label": "streetAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalAddress"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EmailMessage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An email message.",
+ "rdfs:label": "EmailMessage",
+ "rdfs:subClassOf": {
+ "@id": "schema:Message"
+ }
+ },
+ {
+ "@id": "schema:SaleEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Sales event.",
+ "rdfs:label": "SaleEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:ControlAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent controls a device or application.",
+ "rdfs:label": "ControlAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:sportsTeam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The sports team that participated on this action.",
+ "rdfs:label": "sportsTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SportsTeam"
+ }
+ },
+ {
+ "@id": "schema:GameAvailabilityEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "For a [[VideoGame]], such as used with a [[PlayGameAction]], an enumeration of the kind of game availability offered. ",
+ "rdfs:label": "GameAvailabilityEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:ActionStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The status of an Action.",
+ "rdfs:label": "ActionStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:clipNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Position of the clip within an ordered group of clips.",
+ "rdfs:label": "clipNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Clip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:broadcaster",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization owning or operating the broadcast service.",
+ "rdfs:label": "broadcaster",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:partOfSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomical or organ system that this structure is part of.",
+ "rdfs:label": "partOfSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalSystem"
+ }
+ },
+ {
+ "@id": "schema:articleBody",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The actual body of the article.",
+ "rdfs:label": "articleBody",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:contactlessPayment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology.",
+ "rdfs:label": "contactlessPayment",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MediaReviewItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Represents an item or group of closely related items treated as a unit for the sake of evaluation in a [[MediaReview]]. Authorship etc. apply to the items rather than to the curation/grouping or reviewing party.",
+ "rdfs:label": "MediaReviewItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:ImageObjectSnapshot",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[ImageObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata (e.g. XMP, EXIF) the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "ImageObjectSnapshot",
+ "rdfs:subClassOf": {
+ "@id": "schema:ImageObject"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:Pharmacy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A pharmacy or drugstore.",
+ "rdfs:label": "Pharmacy",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalBusiness"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:fatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of fat.",
+ "rdfs:label": "fatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:acceptedOffer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.",
+ "rdfs:label": "acceptedOffer",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ }
+ },
+ {
+ "@id": "schema:includedDataCatalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').",
+ "rdfs:label": "includedDataCatalog",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataCatalog"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:includedInDataCatalog"
+ }
+ },
+ {
+ "@id": "schema:ContactPoint",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A contact point—for example, a Customer Complaints department.",
+ "rdfs:label": "ContactPoint",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ }
+ },
+ {
+ "@id": "schema:labelDetails",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to the drug's label details.",
+ "rdfs:label": "labelDetails",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:PublicHolidays",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a \"day of the week\", it can be used with [[OpeningHoursSpecification]]. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs.",
+ "rdfs:label": "PublicHolidays",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:BusTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip on a commercial bus line.",
+ "rdfs:label": "BusTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ }
+ },
+ {
+ "@id": "schema:AutomotiveBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Car repair, sales, or parts.",
+ "rdfs:label": "AutomotiveBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Rating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.",
+ "rdfs:label": "Rating",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Physician",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A doctor's office.",
+ "rdfs:label": "Physician",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:subtitleLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).",
+ "rdfs:label": "subtitleLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ScreeningEvent"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:BroadcastEvent"
+ },
+ {
+ "@id": "schema:TVEpisode"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Language"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2110"
+ }
+ },
+ {
+ "@id": "schema:EventCancelled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s).",
+ "rdfs:label": "EventCancelled"
+ },
+ {
+ "@id": "schema:ResultsNotAvailable",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Results are not available.",
+ "rdfs:label": "ResultsNotAvailable",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:variesBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. \"color\"; terms defined elsewhere can be referenced with their URIs.",
+ "rdfs:label": "variesBy",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductGroup"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:gameLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Real or fictional location of the game (or part of game).",
+ "rdfs:label": "gameLocation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Game"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:PostalAddress"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Review",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A review of an item - for example, of a restaurant, movie, or store.",
+ "rdfs:label": "Review",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:measurementTechnique",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]),\ncorresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.\n\nFor example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".\n\nIf the [[variableMeasured]] is \"depression rating\", the [[measurementTechnique]] could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".\n\nIf there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].\n ",
+ "rdfs:label": "measurementTechnique",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DataCatalog"
+ },
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:DataDownload"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1425"
+ }
+ },
+ {
+ "@id": "schema:Campground",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \\n\\n\nIn British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites (source: Wikipedia, see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n",
+ "rdfs:label": "Campground",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:percentile25",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 25th percentile value.",
+ "rdfs:label": "percentile25",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:email",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Email address.",
+ "rdfs:label": "email",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Joint",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The anatomical location at which two or more bones make contact.",
+ "rdfs:label": "Joint",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:healthPlanCostSharing",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The costs to the patient for services under this network or formulary.",
+ "rdfs:label": "healthPlanCostSharing",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HealthPlanFormulary"
+ },
+ {
+ "@id": "schema:HealthPlanNetwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:bed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.",
+ "rdfs:label": "bed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HotelRoom"
+ },
+ {
+ "@id": "schema:Suite"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:BedDetails"
+ },
+ {
+ "@id": "schema:BedType"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:inPlaylist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The playlist to which this recording belongs.",
+ "rdfs:label": "inPlaylist",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicPlaylist"
+ }
+ },
+ {
+ "@id": "schema:givenName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Given name. In the U.S., the first name of a Person.",
+ "rdfs:label": "givenName",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:actionStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the current disposition of the Action.",
+ "rdfs:label": "actionStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ActionStatusType"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]], [[Product]], or [[Offer]].",
+ "rdfs:label": "MerchantReturnPolicy",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:CompleteDataFeed",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[CompleteDataFeed]] is a [[DataFeed]] whose standard representation includes content for every item currently in the feed.\n\nThis is the equivalent of Atom's element as defined in Feed Paging and Archiving [RFC 5005](https://tools.ietf.org/html/rfc5005), for example (and as defined for Atom), when using data from a feed that represents a collection of items that varies over time (e.g. \"Top Twenty Records\") there is no need to have newer entries mixed in alongside older, obsolete entries. By marking this feed as a CompleteDataFeed, old entries can be safely discarded when the feed is refreshed, since we can assume the feed has provided descriptions for all current items.",
+ "rdfs:label": "CompleteDataFeed",
+ "rdfs:subClassOf": {
+ "@id": "schema:DataFeed"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1397"
+ }
+ },
+ {
+ "@id": "schema:PrimaryCare",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The medical care by a physician, or other health-care professional, who is the patient's first contact with the health-care system and who may recommend a specialist if necessary.",
+ "rdfs:label": "PrimaryCare",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:workLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contact location for a person's place of work.",
+ "rdfs:label": "workLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Article",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "Article",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:City",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A city or town.",
+ "rdfs:label": "City",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:albums",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A collection of music albums.",
+ "rdfs:label": "albums",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicGroup"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:album"
+ }
+ },
+ {
+ "@id": "schema:arrivalAirport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The airport where the flight terminates.",
+ "rdfs:label": "arrivalAirport",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Airport"
+ }
+ },
+ {
+ "@id": "schema:HealthPlanCostSharingSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A description of costs to the patient under a given network or formulary.",
+ "rdfs:label": "HealthPlanCostSharingSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:MedicalObservationalStudy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.",
+ "rdfs:label": "MedicalObservationalStudy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LockerDelivery",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A DeliveryMethod in which an item is made available via locker.",
+ "rdfs:label": "LockerDelivery"
+ },
+ {
+ "@id": "schema:ItemListOrderAscending",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with lower values listed first.",
+ "rdfs:label": "ItemListOrderAscending"
+ },
+ {
+ "@id": "schema:checkoutTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The latest someone may check out of a lodging establishment.",
+ "rdfs:label": "checkoutTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:LodgingReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ]
+ },
+ {
+ "@id": "schema:price",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\\n\\nUsage guidelines:\\n\\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\n ",
+ "rdfs:label": "price",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:TradeAction"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:validUntil",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date when the item is no longer valid.",
+ "rdfs:label": "validUntil",
+ "schema:domainIncludes": {
+ "@id": "schema:Permit"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:termsOfService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Human-readable terms of service documentation.",
+ "rdfs:label": "termsOfService",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ }
+ },
+ {
+ "@id": "schema:contactPoints",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contact point for a person or organization.",
+ "rdfs:label": "contactPoints",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:contactPoint"
+ }
+ },
+ {
+ "@id": "schema:agent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote a book.",
+ "rdfs:label": "agent",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AudioObjectSnapshot",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[AudioObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "AudioObjectSnapshot",
+ "rdfs:subClassOf": {
+ "@id": "schema:AudioObject"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:doseSchedule",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.",
+ "rdfs:label": "doseSchedule",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:TherapeuticProcedure"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DoseSchedule"
+ }
+ },
+ {
+ "@id": "schema:reviewAspect",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This Review or Rating is relevant to this part or facet of the itemReviewed.",
+ "rdfs:label": "reviewAspect",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Guide"
+ },
+ {
+ "@id": "schema:Review"
+ },
+ {
+ "@id": "schema:Rating"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1689"
+ }
+ },
+ {
+ "@id": "schema:Statement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statement about something, for example a fun or interesting fact. If known, the main entity this statement is about can be indicated using mainEntity. For more formal claims (e.g. in Fact Checking), consider using [[Claim]] instead. Use the [[text]] property to capture the text of the statement.",
+ "rdfs:label": "Statement",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2912"
+ }
+ },
+ {
+ "@id": "schema:Trip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip or journey. An itinerary of visits to one or more places.",
+ "rdfs:label": "Trip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementWaist",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the waist section, for example of pants",
+ "rdfs:label": "WearableMeasurementWaist",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:authenticator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media.",
+ "rdfs:label": "authenticator",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaSubscription"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementBack",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the back section, for example of a jacket",
+ "rdfs:label": "WearableMeasurementBack",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:lesser",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than the object.",
+ "rdfs:label": "lesser",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:AnaerobicActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.",
+ "rdfs:label": "AnaerobicActivity",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:experienceRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of skills and experience needed for the position or Occupation.",
+ "rdfs:label": "experienceRequirements",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:OccupationalExperienceRequirements"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:ReducedRelevanceForChildrenConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "A general code for cases where relevance to children is reduced, e.g. adult education, mortgages, retirement-related products, etc.",
+ "rdfs:label": "ReducedRelevanceForChildrenConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:MedicalIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.",
+ "rdfs:label": "MedicalIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ResearchOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Research Organization (e.g. scientific institute, research company).",
+ "rdfs:label": "ResearchOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2877"
+ }
+ },
+ {
+ "@id": "schema:GenderType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enumeration of genders.",
+ "rdfs:label": "GenderType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:partOfEpisode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The episode to which this clip belongs.",
+ "rdfs:label": "partOfEpisode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Clip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Episode"
+ }
+ },
+ {
+ "@id": "schema:Eye",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Eye or ophthalmological function assessment with clinical examination.",
+ "rdfs:label": "Eye",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:QAPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).",
+ "rdfs:label": "QAPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:targetUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL of a node in an established educational framework.",
+ "rdfs:label": "targetUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:diversityStaffingReport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.",
+ "rdfs:label": "diversityStaffingReport",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Article"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PhysicalActivityCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Categories of physical activity, organized by physiologic classification.",
+ "rdfs:label": "PhysicalActivityCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19HospPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.",
+ "rdfs:label": "cvdNumC19HospPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:containsPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The basic containment relation between a place and another that it contains.",
+ "rdfs:label": "containsPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:containedInPlace"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:qualifications",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specific qualifications required for this role or Occupation.",
+ "rdfs:label": "qualifications",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AdultOrientedEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumeration of considerations that make a product relevant or potentially restricted for adults only.",
+ "rdfs:label": "AdultOrientedEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:validFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of validity of a permit or similar thing.",
+ "rdfs:label": "validFor",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Permit"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:Playground",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A playground.",
+ "rdfs:label": "Playground",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:MedicalObservationalStudyDesign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Design models for observational medical studies. Enumerated type.",
+ "rdfs:label": "MedicalObservationalStudyDesign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ChemicalSubstance",
+ "@type": "rdfs:Class",
+ "dcterms:source": [
+ {
+ "@id": "http://bioschemas.org"
+ },
+ {
+ "@id": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999"
+ }
+ ],
+ "rdfs:comment": "A chemical substance is 'a portion of matter of constant composition, composed of molecular entities of the same type or of different types' (source: [ChEBI:59999](https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999)).",
+ "rdfs:label": "ChemicalSubstance",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:specialCommitments",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.",
+ "rdfs:label": "specialCommitments",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:nsn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. ",
+ "rdfs:label": "nsn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2126"
+ }
+ },
+ {
+ "@id": "schema:commentCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.",
+ "rdfs:label": "commentCount",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:servicePostalAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The address for accessing the service by mail.",
+ "rdfs:label": "servicePostalAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupRegular",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Regular\" for wearables.",
+ "rdfs:label": "WearableSizeGroupRegular",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:cookTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "cookTime",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:performTime"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:MedicineSystem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Systems of medical practice.",
+ "rdfs:label": "MedicineSystem",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SubwayStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subway station.",
+ "rdfs:label": "SubwayStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:SomeProducts",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A placeholder for multiple similar products of the same kind.",
+ "rdfs:label": "SomeProducts",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:deliveryAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Destination address.",
+ "rdfs:label": "deliveryAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:MonetaryAmount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between £1,000 and £1,000,000 GBP, or the value of a salary, etc. It is recommended to use [[PriceSpecification]] Types to describe the price of an Offer, Invoice, etc.",
+ "rdfs:label": "MonetaryAmount",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:foundingDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date that this organization was founded.",
+ "rdfs:label": "foundingDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:InsertAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of adding at a specific location in an ordered collection.",
+ "rdfs:label": "InsertAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AddAction"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelSourceEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several types of return labels for product returns.",
+ "rdfs:label": "ReturnLabelSourceEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:ProductGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc.\n\nWhile a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. ",
+ "rdfs:label": "ProductGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2597"
+ }
+ },
+ {
+ "@id": "schema:taxonomicRange",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "The taxonomic grouping of the organism that expresses, encodes, or in some way related to the BioChemEntity.",
+ "rdfs:label": "taxonomicRange",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ }
+ ]
+ },
+ {
+ "@id": "schema:resultReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of result. The review that resulted in the performing of the action.",
+ "rdfs:label": "resultReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:result"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ReviewAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ }
+ },
+ {
+ "@id": "schema:phoneticText",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Representation of a text [[textValue]] using the specified [[speechToTextMarkup]]. For example the city name of Houston in IPA: /ˈhjuːstən/.",
+ "rdfs:label": "phoneticText",
+ "schema:domainIncludes": {
+ "@id": "schema:PronounceableText"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:repetitions",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of times one should repeat the activity.",
+ "rdfs:label": "repetitions",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:reviewedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.",
+ "rdfs:label": "reviewedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:jobTitle",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The job title of the person (for example, Financial Manager).",
+ "rdfs:label": "jobTitle",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
+ }
+ },
+ {
+ "@id": "schema:hostingOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization (airline, travelers' club, etc.) the membership is made with.",
+ "rdfs:label": "hostingOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:hasVariant",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]).",
+ "rdfs:label": "hasVariant",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductGroup"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isVariantOf"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:LivingWithHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about coping or life related to the topic.",
+ "rdfs:label": "LivingWithHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:isLocatedInSubcellularLocation",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Subcellular location where this BioChemEntity is located; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "isLocatedInSubcellularLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:temporalCoverage",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:temporal"
+ },
+ "rdfs:comment": "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content, e.g. ScholarlyArticle, Book, TVSeries or TVEpisode, may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.",
+ "rdfs:label": "temporalCoverage",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:dateCreated",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date on which the CreativeWork was created or the item was added to a DataFeed.",
+ "rdfs:label": "dateCreated",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RecommendedDoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
+ "rdfs:label": "RecommendedDoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:deliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The method of delivery.",
+ "rdfs:label": "deliveryMethod",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TrackAction"
+ },
+ {
+ "@id": "schema:ReceiveAction"
+ },
+ {
+ "@id": "schema:SendAction"
+ },
+ {
+ "@id": "schema:OrderAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ }
+ },
+ {
+ "@id": "schema:owns",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Products owned by the organization or person.",
+ "rdfs:label": "owns",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OwnershipInfo"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:discussionUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to the page containing the comments of the CreativeWork.",
+ "rdfs:label": "discussionUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:ActionAccessSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of requirements that must be fulfilled in order to perform an Action.",
+ "rdfs:label": "ActionAccessSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:duplicateTherapy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A therapy that duplicates or overlaps this one.",
+ "rdfs:label": "duplicateTherapy",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:numberOfBathroomsTotal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total integer number of bathrooms in some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): \"The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.\". See also [[numberOfRooms]].",
+ "rdfs:label": "numberOfBathroomsTotal",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:drugUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unit in which the drug is measured, e.g. '5 mg tablet'.",
+ "rdfs:label": "drugUnit",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:DrugCost"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:dietFeatures",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.",
+ "rdfs:label": "dietFeatures",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EntertainmentBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A business providing entertainment.",
+ "rdfs:label": "EntertainmentBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:free",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.",
+ "rdfs:label": "free",
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:isAccessibleForFree"
+ }
+ },
+ {
+ "@id": "schema:copyrightNotice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.",
+ "rdfs:label": "copyrightNotice",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2659"
+ }
+ },
+ {
+ "@id": "schema:learningResourceType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.",
+ "rdfs:label": "learningResourceType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LearningResource"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Beach",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Beach.",
+ "rdfs:label": "Beach",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:OccupationalActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.",
+ "rdfs:label": "OccupationalActivity",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:estimatedFlightDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The estimated time the flight will take.",
+ "rdfs:label": "estimatedFlightDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Duration"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:requiredMinAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Audiences defined by a person's minimum age.",
+ "rdfs:label": "requiredMinAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:borrower",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The person that borrows the object being lent.",
+ "rdfs:label": "borrower",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:LendAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:FDAcategoryD",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.",
+ "rdfs:label": "FDAcategoryD",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Podiatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.",
+ "rdfs:label": "Podiatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:billingPeriod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time interval used to compute the invoice.",
+ "rdfs:label": "billingPeriod",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:awards",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Awards won by or for this item.",
+ "rdfs:label": "awards",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:award"
+ }
+ },
+ {
+ "@id": "schema:ReactAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of responding instinctively and emotionally to an object, expressing a sentiment.",
+ "rdfs:label": "ReactAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:MedicalScholarlyArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A scholarly article in the medical domain.",
+ "rdfs:label": "MedicalScholarlyArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:ScholarlyArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:RefundTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several kinds of product return refund types.",
+ "rdfs:label": "RefundTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:OfferForLease",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose\n [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
+ "rdfs:label": "OfferForLease",
+ "rdfs:subClassOf": {
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ }
+ },
+ {
+ "@id": "schema:differentialDiagnosis",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.",
+ "rdfs:label": "differentialDiagnosis",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DDxElement"
+ }
+ },
+ {
+ "@id": "schema:CatholicChurch",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Catholic church.",
+ "rdfs:label": "CatholicChurch",
+ "rdfs:subClassOf": {
+ "@id": "schema:Church"
+ }
+ },
+ {
+ "@id": "schema:ReservationHold",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a reservation on hold pending an update like credit card number or flight changes.",
+ "rdfs:label": "ReservationHold"
+ },
+ {
+ "@id": "schema:Nonprofit501c6",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards.",
+ "rdfs:label": "Nonprofit501c6",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Midwifery",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period (including care of the newborn), besides sexual and reproductive health of women throughout their lives.",
+ "rdfs:label": "Midwifery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:loanTerm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of the loan or credit agreement.",
+ "rdfs:label": "loanTerm",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:duration"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:accessModeSufficient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).",
+ "rdfs:label": "accessModeSufficient",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ItemList"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
+ }
+ },
+ {
+ "@id": "schema:maximumVirtualAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). ",
+ "rdfs:label": "maximumVirtualAttendeeCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:FinancialProduct",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.",
+ "rdfs:label": "FinancialProduct",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:LiveAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "LiveAlbum.",
+ "rdfs:label": "LiveAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:ExhibitionEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...",
+ "rdfs:label": "ExhibitionEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:FullGameAvailability",
+ "@type": "schema:GameAvailabilityEnumeration",
+ "rdfs:comment": "Indicates full game availability.",
+ "rdfs:label": "FullGameAvailability",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
+ },
+ {
+ "@id": "schema:MedicalEntity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The most generic type of entity related to health and the practice of medicine.",
+ "rdfs:label": "MedicalEntity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:byMonthWeek",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month.",
+ "rdfs:label": "byMonthWeek",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2599"
+ }
+ },
+ {
+ "@id": "schema:ResumeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer).",
+ "rdfs:label": "ResumeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:pathophysiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.",
+ "rdfs:label": "pathophysiology",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PhysicalActivity"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ProgramMembership",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.",
+ "rdfs:label": "ProgramMembership",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:guidelineSubject",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The medical conditions, treatments, etc. that are the subject of the guideline.",
+ "rdfs:label": "guidelineSubject",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:attendees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person attending the event.",
+ "rdfs:label": "attendees",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:attendee"
+ }
+ },
+ {
+ "@id": "schema:review",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A review of the item.",
+ "rdfs:label": "review",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ }
+ },
+ {
+ "@id": "schema:DiscoverAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of discovering/finding an object.",
+ "rdfs:label": "DiscoverAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:FindAction"
+ }
+ },
+ {
+ "@id": "schema:children",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A child of the person.",
+ "rdfs:label": "children",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:OfflinePermanently",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: OfflinePermanently. Server is offline and not available.",
+ "rdfs:label": "OfflinePermanently"
+ },
+ {
+ "@id": "schema:dissolutionDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date that this organization was dissolved.",
+ "rdfs:label": "dissolutionDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:CafeOrCoffeeShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A cafe or coffee shop.",
+ "rdfs:label": "CafeOrCoffeeShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:conditionsOfAccess",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\\n\\nFor example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \". ",
+ "rdfs:label": "conditionsOfAccess",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2173"
+ }
+ },
+ {
+ "@id": "schema:ReimbursementCap",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the maximum reimbursement paid by an insurer for the drug.",
+ "rdfs:label": "ReimbursementCap",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:administrationRoute",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A route by which this drug may be administered, e.g. 'oral'.",
+ "rdfs:label": "administrationRoute",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:paymentMethodId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).",
+ "rdfs:label": "paymentMethodId",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DryCleaningOrLaundry",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A dry-cleaning business.",
+ "rdfs:label": "DryCleaningOrLaundry",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:dateReceived",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date/time the message was received if a single recipient exists.",
+ "rdfs:label": "dateReceived",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:healthPlanId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)",
+ "rdfs:label": "healthPlanId",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:ContagiousnessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about contagion mechanisms and contagiousness information over the topic.",
+ "rdfs:label": "ContagiousnessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:interactivityType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.",
+ "rdfs:label": "interactivityType",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:includesAttraction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Attraction located at destination.",
+ "rdfs:label": "includesAttraction",
+ "schema:domainIncludes": {
+ "@id": "schema:TouristDestination"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:TouristAttraction"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RVPark",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.",
+ "rdfs:label": "RVPark",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:LymphaticVessel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.",
+ "rdfs:label": "LymphaticVessel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vessel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ItemAvailability",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible product availability options.",
+ "rdfs:label": "ItemAvailability",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:ExchangeRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that a refund can be done as an exchange for the same product.",
+ "rdfs:label": "ExchangeRefund",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:CharitableIncorporatedOrganization",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization (UK).",
+ "rdfs:label": "CharitableIncorporatedOrganization",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:lodgingUnitType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Textual description of the unit type (including suite vs. room, size of bed, etc.).",
+ "rdfs:label": "lodgingUnitType",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Discontinued",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has been discontinued.",
+ "rdfs:label": "Discontinued"
+ },
+ {
+ "@id": "schema:itemLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "Current location of the item."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "itemLocation"
+ },
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ArchiveComponent"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:medicalSpecialty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical specialty of the provider.",
+ "rdfs:label": "medicalSpecialty",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Physician"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalClinic"
+ },
+ {
+ "@id": "schema:Hospital"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSpecialty"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementNeck",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of neck. Used, for example, to fit shirts.",
+ "rdfs:label": "BodyMeasurementNeck",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:EvidenceLevelA",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Data derived from multiple randomized clinical trials or meta-analyses.",
+ "rdfs:label": "EvidenceLevelA",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:returnPolicyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies an applicable return policy (from an enumeration).",
+ "rdfs:label": "returnPolicyCategory",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MerchantReturnEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:SpeechPathology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The scientific study and treatment of defects, disorders, and malfunctions of speech and voice, as stuttering, lisping, or lalling, and of language disturbances, as aphasia or delayed language acquisition.",
+ "rdfs:label": "SpeechPathology",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An electronic file or document.",
+ "rdfs:label": "DigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:device",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
+ "rdfs:label": "device",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:availableOnDevice"
+ }
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value providing information about the opening hours of a place or a certain service inside a place.\\n\\n\nThe place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\\n\\nIf the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.\n ",
+ "rdfs:label": "OpeningHoursSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:PresentationDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A file containing slides or used for a presentation.",
+ "rdfs:label": "PresentationDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:ProfessionalService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Original definition: \"provider of professional services.\"\\n\\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]],\n [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]],\n [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]].",
+ "rdfs:label": "ProfessionalService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:availableChannel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).",
+ "rdfs:label": "availableChannel",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ServiceChannel"
+ }
+ },
+ {
+ "@id": "schema:Book",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A book.",
+ "rdfs:label": "Book",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:BankOrCreditUnion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Bank or credit union.",
+ "rdfs:label": "BankOrCreditUnion",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:abstract",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An abstract is a short description that summarizes a [[CreativeWork]].",
+ "rdfs:label": "abstract",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/276"
+ }
+ },
+ {
+ "@id": "schema:cholesterolContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of milligrams of cholesterol.",
+ "rdfs:label": "cholesterolContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:numChildren",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of children staying in the unit.",
+ "rdfs:label": "numChildren",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:IngredientsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content discussing ingredients-related aspects of a health topic.",
+ "rdfs:label": "IngredientsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:membershipNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A unique identifier for the membership.",
+ "rdfs:label": "membershipNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:distribution",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A downloadable form of this dataset, at a specific location, in a specific format. This property can be repeated if different variations are available. There is no expectation that different downloadable distributions must contain exactly equivalent information (see also [DCAT](https://www.w3.org/TR/vocab-dcat-3/#Class:Distribution) on this point). Different distributions might include or exclude different subsets of the entire dataset, for example.",
+ "rdfs:label": "distribution",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataDownload"
+ }
+ },
+ {
+ "@id": "schema:valueMinLength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the minimum allowed range for number of characters in a literal value.",
+ "rdfs:label": "valueMinLength",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:guidelineDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date on which this guideline's recommendation was made.",
+ "rdfs:label": "guidelineDate",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:programMembershipUsed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.",
+ "rdfs:label": "programMembershipUsed",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ProgramMembership"
+ }
+ },
+ {
+ "@id": "schema:medicineSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.",
+ "rdfs:label": "medicineSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicineSystem"
+ }
+ },
+ {
+ "@id": "schema:MedicalTrialDesign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Design models for medical trials. Enumerated type.",
+ "rdfs:label": "MedicalTrialDesign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc"
+ }
+ },
+ {
+ "@id": "schema:fileFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.",
+ "rdfs:label": "fileFormat",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:encodingFormat"
+ }
+ },
+ {
+ "@id": "schema:PhysicalTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of progressive physical care and rehabilitation aimed at improving a health condition.",
+ "rdfs:label": "PhysicalTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:interpretedAsClaim",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].",
+ "rdfs:label": "interpretedAsClaim",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:serviceOperator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.",
+ "rdfs:label": "serviceOperator",
+ "schema:domainIncludes": {
+ "@id": "schema:GovernmentService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:broadcastOfEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The event being broadcast such as a sporting event or awards ceremony.",
+ "rdfs:label": "broadcastOfEvent",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:bookingAgent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.",
+ "rdfs:label": "bookingAgent",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:broker"
+ }
+ },
+ {
+ "@id": "schema:itemReviewed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The item that is being reviewed/rated.",
+ "rdfs:label": "itemReviewed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Review"
+ },
+ {
+ "@id": "schema:AggregateRating"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:status",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The status of the study (enumerated).",
+ "rdfs:label": "status",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ },
+ {
+ "@id": "schema:MedicalStudy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalStudyStatus"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:EventStatusType"
+ }
+ ]
+ },
+ {
+ "@id": "schema:returnLabelSource",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned for any reason.",
+ "rdfs:label": "returnLabelSource",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnLabelSourceEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:vehicleInteriorType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.",
+ "rdfs:label": "vehicleInteriorType",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:originatesFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The vasculature the lymphatic structure originates, or afferents, from.",
+ "rdfs:label": "originatesFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:LymphaticVessel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:Drug",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/410942007"
+ },
+ "rdfs:comment": "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge makes a clear difference between them.",
+ "rdfs:label": "Drug",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Substance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:interactionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Action representing the type of interaction. For up votes, +1s, etc. use [[LikeAction]]. For down votes use [[DislikeAction]]. Otherwise, use the most specific Action.",
+ "rdfs:label": "interactionType",
+ "schema:domainIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:hasMap",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "hasMap",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Map"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Season",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media season, e.g. TV, radio, video game etc.",
+ "rdfs:label": "Season",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ },
+ {
+ "@id": "schema:parent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A parent of this person.",
+ "rdfs:label": "parent",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:safetyConsideration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.",
+ "rdfs:label": "safetyConsideration",
+ "schema:domainIncludes": {
+ "@id": "schema:DietarySupplement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EventVenue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An event venue.",
+ "rdfs:label": "EventVenue",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:vehicleEngine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about the engine or engines of the vehicle.",
+ "rdfs:label": "vehicleEngine",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:text",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The textual content of this CreativeWork.",
+ "rdfs:label": "text",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EPRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "EPRelease.",
+ "rdfs:label": "EPRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:fundedItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates something directly or indirectly funded or sponsored through a [[Grant]]. See also [[ownershipFundingInfo]].",
+ "rdfs:label": "fundedItem",
+ "schema:domainIncludes": {
+ "@id": "schema:Grant"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:funding"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ReservationPackage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A group of multiple reservations with common values for all sub-reservations.",
+ "rdfs:label": "ReservationPackage",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:archivedAt",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.",
+ "rdfs:label": "archivedAt",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebPage"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:molecularWeight",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "This is the molecular weight of the entity being described, not of the parent. Units should be included in the form '<Number> <unit>', for example '12 amu' or as '<QuantitativeValue>.",
+ "rdfs:label": "molecularWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:merchant",
+ "@type": "rdf:Property",
+ "rdfs:comment": "'merchant' is an out-dated term for 'seller'.",
+ "rdfs:label": "merchant",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:seller"
+ }
+ },
+ {
+ "@id": "schema:AutoBodyShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Auto body shop.",
+ "rdfs:label": "AutoBodyShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:gtin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin)). GTINs identify trade items, including products and services, using numeric identification codes.\n\nThe GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) express GTINs as URLs (URIs, IRIs, etc.). Details including regular expression examples can be found in, Section 6 of the GS1 URI Syntax specification; see also [schema.org tracking issue](https://github.com/schemaorg/schemaorg/issues/3156#issuecomment-1209522809) for schema.org-specific discussion. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a \"GS1 Digital Link\" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties.\n\nNote also that this is a definition for how to include GTINs in Schema.org data, and not a definition of GTINs in general - see the GS1 documentation for authoritative details.",
+ "rdfs:label": "gtin",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:LegalForceStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible statuses for the legal force of a legislation.",
+ "rdfs:label": "LegalForceStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce"
+ }
+ },
+ {
+ "@id": "schema:jobStartDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date on which a successful applicant for this job would be expected to start work. Choose a specific date in the future or use the jobImmediateStart property to indicate the position is to be filled as soon as possible.",
+ "rdfs:label": "jobStartDate",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2244"
+ }
+ },
+ {
+ "@id": "schema:TypesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Categorization and other types related to a topic.",
+ "rdfs:label": "TypesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:CheckAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.",
+ "rdfs:label": "CheckAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:FindAction"
+ }
+ },
+ {
+ "@id": "schema:StudioAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "StudioAlbum.",
+ "rdfs:label": "StudioAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:iataCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "IATA identifier for an airline or airport.",
+ "rdfs:label": "iataCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Airline"
+ },
+ {
+ "@id": "schema:Airport"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:contactType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.",
+ "rdfs:label": "contactType",
+ "schema:domainIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:title",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The title of the job.",
+ "rdfs:label": "title",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:characterName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.",
+ "rdfs:label": "characterName",
+ "schema:domainIncludes": {
+ "@id": "schema:PerformanceRole"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:dateDeleted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The datetime the item was removed from the DataFeed.",
+ "rdfs:label": "dateDeleted",
+ "schema:domainIncludes": {
+ "@id": "schema:DataFeedItem"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isRelatedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another, somehow related product (or multiple products).",
+ "rdfs:label": "isRelatedTo",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:DisabilitySupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "DisabilitySupport: this is a benefit for disability support.",
+ "rdfs:label": "DisabilitySupport",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:negativeNotes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Provides negative considerations regarding something, most typically in pro/con lists for reviews (alongside [[positiveNotes]]). For symmetry \n\nIn the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described. Since product descriptions \ntend to emphasise positive claims, it may be relatively unusual to find [[negativeNotes]] used in this way. Nevertheless for the sake of symmetry, [[negativeNotes]] can be used on [[Product]].\n\nThe property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most negative is at the beginning of the list).",
+ "rdfs:label": "negativeNotes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Review"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2832"
+ }
+ },
+ {
+ "@id": "schema:StagesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Stages that can be observed from a topic.",
+ "rdfs:label": "StagesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:alternativeHeadline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secondary title of the CreativeWork.",
+ "rdfs:label": "alternativeHeadline",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:assembly",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Library file name, e.g., mscorlib.dll, system.web.dll.",
+ "rdfs:label": "assembly",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:executableLibraryName"
+ }
+ },
+ {
+ "@id": "schema:application",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An application that can complete the request.",
+ "rdfs:label": "application",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:actionApplication"
+ }
+ },
+ {
+ "@id": "schema:creditText",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.",
+ "rdfs:label": "creditText",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2659"
+ }
+ },
+ {
+ "@id": "schema:suggestedMeasurement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A suggested range of body measurements for the intended audience or person, for example inseam between 32 and 34 inches or height between 170 and 190 cm. Typically found on a size chart for wearable products.",
+ "rdfs:label": "suggestedMeasurement",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:eventStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.",
+ "rdfs:label": "eventStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EventStatusType"
+ }
+ },
+ {
+ "@id": "schema:containedIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The basic containment relation between a place and one that contains it.",
+ "rdfs:label": "containedIn",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:containedInPlace"
+ }
+ },
+ {
+ "@id": "schema:LegislationObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific object or file containing a Legislation. Note that the same Legislation can be published in multiple files. For example, a digitally signed PDF, a plain PDF and an HTML version.",
+ "rdfs:label": "LegislationObject",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Legislation"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#Format"
+ }
+ },
+ {
+ "@id": "schema:bankAccountType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of a bank account.",
+ "rdfs:label": "bankAccountType",
+ "schema:domainIncludes": {
+ "@id": "schema:BankAccount"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Airport",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An airport.",
+ "rdfs:label": "Airport",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:trailer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The trailer of a movie or TV/radio series, season, episode, etc.",
+ "rdfs:label": "trailer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:VideoObject"
+ }
+ },
+ {
+ "@id": "schema:documentation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Further documentation describing the Web API in more detail.",
+ "rdfs:label": "documentation",
+ "schema:domainIncludes": {
+ "@id": "schema:WebAPI"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ }
+ },
+ {
+ "@id": "schema:MedicalStudyStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The status of a medical study. Enumerated type.",
+ "rdfs:label": "MedicalStudyStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bioChemInteraction",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A BioChemEntity that is known to interact with this item.",
+ "rdfs:label": "bioChemInteraction",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:naturalProgression",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected progression of the condition if it is not treated and allowed to progress naturally.",
+ "rdfs:label": "naturalProgression",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:paymentStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The status of payment; whether the invoice has been paid or not.",
+ "rdfs:label": "paymentStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PaymentStatusType"
+ }
+ ]
+ },
+ {
+ "@id": "schema:itemOffered",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
+ "rdfs:label": "itemOffered",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:offers"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:AggregateOffer"
+ },
+ {
+ "@id": "schema:Trip"
+ }
+ ]
+ },
+ {
+ "@id": "schema:gameEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The edition of a video game.",
+ "rdfs:label": "gameEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoGame"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:numberOfBedrooms",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].",
+ "rdfs:label": "numberOfBedrooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:intensity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.",
+ "rdfs:label": "intensity",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:UserLikes",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserLikes",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:funding",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].",
+ "rdfs:label": "funding",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:fundedItem"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Grant"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:proprietaryName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Proprietary name given to the diet plan, typically by its originator or creator.",
+ "rdfs:label": "proprietaryName",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:sharedContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.",
+ "rdfs:label": "sharedContent",
+ "schema:domainIncludes": {
+ "@id": "schema:SocialMediaPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:AmpStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices.",
+ "rdfs:label": "AmpStory",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2646"
+ }
+ },
+ {
+ "@id": "schema:collection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The collection target of the action.",
+ "rdfs:label": "collection",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:UpdateAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:targetCollection"
+ }
+ },
+ {
+ "@id": "schema:interactionStatistic",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.",
+ "rdfs:label": "interactionStatistic",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2421"
+ }
+ },
+ {
+ "@id": "schema:CookAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing/preparing food.",
+ "rdfs:label": "CookAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:isPartOfBioChemEntity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "Indicates a BioChemEntity that is (in some sense) a part of this BioChemEntity. ",
+ "rdfs:label": "isPartOfBioChemEntity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:hasBioChemEntityPart"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:MedicalWebPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A web page that provides medical information.",
+ "rdfs:label": "MedicalWebPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:greaterOrEqual",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.",
+ "rdfs:label": "greaterOrEqual",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Throat",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Throat assessment with clinical examination.",
+ "rdfs:label": "Throat",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Urologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.",
+ "rdfs:label": "Urologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:events",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Upcoming or past events associated with this place or organization.",
+ "rdfs:label": "events",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:event"
+ }
+ },
+ {
+ "@id": "schema:StadiumOrArena",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A stadium.",
+ "rdfs:label": "StadiumOrArena",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:SportsActivityLocation"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FDAnotEvaluated",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.",
+ "rdfs:label": "FDAnotEvaluated",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Cardiovascular",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.",
+ "rdfs:label": "Cardiovascular",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:UserComments",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserComments",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:numberOfDoors",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of doors.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfDoors",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:lastReviewed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.",
+ "rdfs:label": "lastReviewed",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:foodEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The specific food event where the action occurred.",
+ "rdfs:label": "foodEvent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CookAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:FoodEvent"
+ }
+ },
+ {
+ "@id": "schema:Lung",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Lung and respiratory system clinical examination.",
+ "rdfs:label": "Lung",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:workExample",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.",
+ "rdfs:label": "workExample",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:exampleOfWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:workPerformed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A work performed in some event, for example a play performed in a TheaterEvent.",
+ "rdfs:label": "workPerformed",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workFeatured"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:ReserveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.",
+ "rdfs:label": "ReserveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlanAction"
+ }
+ },
+ {
+ "@id": "schema:OrderInTransit",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order is in transit.",
+ "rdfs:label": "OrderInTransit"
+ },
+ {
+ "@id": "schema:BusinessEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Business event.",
+ "rdfs:label": "BusinessEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:identifyingExam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A physical examination that can identify this sign.",
+ "rdfs:label": "identifyingExam",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalSign"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PhysicalExam"
+ }
+ },
+ {
+ "@id": "schema:Residence",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The place where a person lives.",
+ "rdfs:label": "Residence",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:includedInDataCatalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A data catalog which contains this dataset.",
+ "rdfs:label": "includedInDataCatalog",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataCatalog"
+ }
+ },
+ {
+ "@id": "schema:BroadcastChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.",
+ "rdfs:label": "BroadcastChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:MusicComposition",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A musical composition.",
+ "rdfs:label": "MusicComposition",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:WinAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of achieving victory in a competitive activity.",
+ "rdfs:label": "WinAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AchieveAction"
+ }
+ },
+ {
+ "@id": "schema:currentExchangeRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current price of a currency.",
+ "rdfs:label": "currentExchangeRate",
+ "schema:domainIncludes": {
+ "@id": "schema:ExchangeRateSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:dependencies",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Prerequisites needed to fulfill steps in article.",
+ "rdfs:label": "dependencies",
+ "schema:domainIncludes": {
+ "@id": "schema:TechArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:SalePrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents a sale price (usually active for a limited period) of an offered product.",
+ "rdfs:label": "SalePrice",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:duration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "duration",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:Audiobook"
+ },
+ {
+ "@id": "schema:MusicRecording"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:MusicRelease"
+ },
+ {
+ "@id": "schema:QuantitativeValueDistribution"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ ]
+ },
+ {
+ "@id": "schema:relevantOccupation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Occupation for the JobPosting.",
+ "rdfs:label": "relevantOccupation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Occupation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:jobLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A (typically single) geographic location associated with the job position.",
+ "rdfs:label": "jobLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:volumeNumber",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/volume"
+ },
+ "rdfs:comment": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".",
+ "rdfs:label": "volumeNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationVolume"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:HowToTip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).",
+ "rdfs:label": "HowToTip",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:torque",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The torque (turning force) of the vehicle's engine.\\n\\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\\n\\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "torque",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:publishedOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A broadcast service associated with the publication event.",
+ "rdfs:label": "publishedOn",
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastService"
+ }
+ },
+ {
+ "@id": "schema:Longitudinal",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.",
+ "rdfs:label": "Longitudinal",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Hackathon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event.",
+ "rdfs:label": "Hackathon",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2526"
+ }
+ },
+ {
+ "@id": "schema:algorithm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The algorithm or rules to follow to compute the score.",
+ "rdfs:label": "algorithm",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskScore"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:legislationLegalValue",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#legal_value"
+ },
+ "rdfs:comment": "The legal value of this legislation file. The same legislation can be written in multiple files with different legal values. Typically a digitally signed PDF have a \"stronger\" legal value than the HTML file of the same act.",
+ "rdfs:label": "legislationLegalValue",
+ "schema:domainIncludes": {
+ "@id": "schema:LegislationObject"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:LegalValueLevel"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#legal_value"
+ }
+ },
+ {
+ "@id": "schema:associatedClaimReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated [[ClaimReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].",
+ "rdfs:label": "associatedClaimReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:associatedReview"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:StatisticalPopulation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A StatisticalPopulation is a set of instances of a certain given type that satisfy some set of constraints. The property [[populationType]] is used to specify the type. Any property that can be used on instances of that type can appear on the statistical population. For example, a [[StatisticalPopulation]] representing all [[Person]]s with a [[homeLocation]] of East Podunk California would be described by applying the appropriate [[homeLocation]] and [[populationType]] properties to a [[StatisticalPopulation]] item that stands for that set of people.\nThe properties [[numConstraints]] and [[constrainingProperty]] are used to specify which of the populations properties are used to specify the population. Note that the sense of \"population\" used here is the general sense of a statistical\npopulation, and does not imply that the population consists of people. For example, a [[populationType]] of [[Event]] or [[NewsArticle]] could be used. See also [[Observation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ",
+ "rdfs:label": "StatisticalPopulation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:answerExplanation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ",
+ "rdfs:label": "answerExplanation",
+ "schema:domainIncludes": {
+ "@id": "schema:Answer"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Comment"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2636"
+ }
+ },
+ {
+ "@id": "schema:WriteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of authoring written creative content.",
+ "rdfs:label": "WriteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:HowToSection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).",
+ "rdfs:label": "HowToSection",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ListItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MusicReleaseFormatType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Format of this release (the type of recording media used, i.e. compact disc, digital media, LP, etc.).",
+ "rdfs:label": "MusicReleaseFormatType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:FinancialService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Financial services business.",
+ "rdfs:label": "FinancialService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:HVACBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A business that provides Heating, Ventilation and Air Conditioning services.",
+ "rdfs:label": "HVACBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:RepaymentSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing repayment.",
+ "rdfs:label": "RepaymentSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RelatedTopicsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Other prominent or relevant topics tied to the main topic.",
+ "rdfs:label": "RelatedTopicsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:seeks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to products or services sought by the organization or person (demand).",
+ "rdfs:label": "seeks",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Demand"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:UserPlusOnes",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPlusOnes",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:employees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "People working for this organization.",
+ "rdfs:label": "employees",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:employee"
+ }
+ },
+ {
+ "@id": "schema:Gynecologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.",
+ "rdfs:label": "Gynecologic",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:diagnosis",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process.",
+ "rdfs:label": "diagnosis",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DDxElement"
+ },
+ {
+ "@id": "schema:Patient"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
+ }
+ },
+ {
+ "@id": "schema:mobileUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The [[mobileUrl]] property is provided for specific situations in which data consumers need to determine whether one of several provided URLs is a dedicated 'mobile site'.\n\nTo discourage over-use, and reflecting intial usecases, the property is expected only on [[Product]] and [[Offer]], rather than [[Thing]]. The general trend in web technology is towards [responsive design](https://en.wikipedia.org/wiki/Responsive_web_design) in which content can be flexibly adapted to a wide range of browsing environments. Pages and sites referenced with the long-established [[url]] property should ideally also be usable on a wide variety of devices, including mobile phones. In most cases, it would be pointless and counter productive to attempt to update all [[url]] markup to use [[mobileUrl]] for more mobile-oriented pages. The property is intended for the case when items (primarily [[Product]] and [[Offer]]) have extra URLs hosted on an additional \"mobile site\" alongside the main one. It should not be taken as an endorsement of this publication style.\n ",
+ "rdfs:label": "mobileUrl",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3134"
+ }
+ },
+ {
+ "@id": "schema:requiredQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The required quantity of the item(s).",
+ "rdfs:label": "requiredQuantity",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToItem"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:about",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The subject matter of the content.",
+ "rdfs:label": "about",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CommunicateAction"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:subjectOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
+ }
+ },
+ {
+ "@id": "schema:hasEnergyConsumptionDetails",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the energy efficiency Category (also known as \"class\" or \"rating\") for a product according to an international energy efficiency standard.",
+ "rdfs:label": "hasEnergyConsumptionDetails",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnNotPermitted",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that product returns are not permitted.",
+ "rdfs:label": "MerchantReturnNotPermitted",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:expressedIn",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Tissue, organ, biological sample, etc in which activity of this gene has been observed experimentally. For example brain, digestive system.",
+ "rdfs:label": "expressedIn",
+ "schema:domainIncludes": {
+ "@id": "schema:Gene"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:weight",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The weight of the product or person.",
+ "rdfs:label": "weight",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:OrderPickupAvailable",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing availability of an order for pickup.",
+ "rdfs:label": "OrderPickupAvailable"
+ },
+ {
+ "@id": "schema:DeliveryEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An event involving the delivery of an item.",
+ "rdfs:label": "DeliveryEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:LimitedByGuaranteeCharity",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee (UK).",
+ "rdfs:label": "LimitedByGuaranteeCharity",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ComputerLanguage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type.",
+ "rdfs:label": "ComputerLanguage",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementCup",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the cup, for example of a bra",
+ "rdfs:label": "WearableMeasurementCup",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:PeopleAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics belonging to people, e.g. who compose an item's target audience.",
+ "rdfs:label": "PeopleAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:ReportedDoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A patient-reported or observed dosing schedule for a drug or supplement.",
+ "rdfs:label": "ReportedDoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:composer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person or organization who wrote a composition, or who is the composer of a work performed at some event.",
+ "rdfs:label": "composer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:MusicComposition"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Motorcycle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.",
+ "rdfs:label": "Motorcycle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:clinicalPharmacology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
+ "rdfs:label": "clinicalPharmacology",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c21",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts.",
+ "rdfs:label": "Nonprofit501c21",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:postalCodePrefix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A defined range of postal codes indicated by a common textual prefix. Used for non-numeric systems such as UK.",
+ "rdfs:label": "postalCodePrefix",
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:FollowAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\\n\\nRelated actions:\\n\\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it).",
+ "rdfs:label": "FollowAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:shippingDetails",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates information about the shipping policies and options associated with an [[Offer]].",
+ "rdfs:label": "shippingDetails",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OfferShippingDetails"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:VideoGame",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.",
+ "rdfs:label": "VideoGame",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:SoftwareApplication"
+ },
+ {
+ "@id": "schema:Game"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OpinionNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[OpinionNewsArticle]] is a [[NewsArticle]] that primarily expresses opinions rather than journalistic reporting of news and events. For example, a [[NewsArticle]] consisting of a column or [[Blog]]/[[BlogPosting]] entry in the Opinions section of a news publication. ",
+ "rdfs:label": "OpinionNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MapCategoryType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enumeration of several kinds of Map.",
+ "rdfs:label": "MapCategoryType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:NGO",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Organization: Non-governmental Organization.",
+ "rdfs:label": "NGO",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:BusStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bus station.",
+ "rdfs:label": "BusStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:Substance",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/105590001"
+ },
+ "rdfs:comment": "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.",
+ "rdfs:label": "Substance",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:arrivalStation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The station where the train trip ends.",
+ "rdfs:label": "arrivalStation",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:TrainStation"
+ }
+ },
+ {
+ "@id": "schema:TrainStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A train station.",
+ "rdfs:label": "TrainStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:SportingGoodsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sporting goods store.",
+ "rdfs:label": "SportingGoodsStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:UnRegisterAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of un-registering from a service.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: antonym of UnRegisterAction.\\n* [[LeaveAction]]: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you were previously registered, rather than leaving a team/group of people.",
+ "rdfs:label": "UnRegisterAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:unnamedSourcesPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.",
+ "rdfs:label": "unnamedSourcesPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:educationRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Educational background needed for the position or Occupation.",
+ "rdfs:label": "educationRequirements",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:Occupation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DoubleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.",
+ "rdfs:label": "DoubleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:salaryUponCompletion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected salary upon completing the training.",
+ "rdfs:label": "salaryUponCompletion",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmountDistribution"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:ToyStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A toy store.",
+ "rdfs:label": "ToyStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:UnemploymentSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "UnemploymentSupport: this is a benefit for unemployment support.",
+ "rdfs:label": "UnemploymentSupport",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:MedicalSign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.",
+ "rdfs:label": "MedicalSign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalSignOrSymptom"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MovieSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A series of movies. Included movies can be indicated with the hasPart property.",
+ "rdfs:label": "MovieSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:claimInterpreter",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[Claim]] interpreted from [[MediaObject]] content\n sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].",
+ "rdfs:label": "claimInterpreter",
+ "schema:domainIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:vehicleInteriorColor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The color or color combination of the interior of the vehicle.",
+ "rdfs:label": "vehicleInteriorColor",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:affectedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Drugs that affect the test's results.",
+ "rdfs:label": "affectedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:realEstateAgent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The real estate agent involved in the action.",
+ "rdfs:label": "realEstateAgent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:RentAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RealEstateAgent"
+ }
+ },
+ {
+ "@id": "schema:Car",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A car is a wheeled, self-powered motor vehicle used for transportation.",
+ "rdfs:label": "Car",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:subOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.",
+ "rdfs:label": "subOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:parentOrganization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:SoldOut",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has sold out.",
+ "rdfs:label": "SoldOut"
+ },
+ {
+ "@id": "schema:issueNumber",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/issue"
+ },
+ "rdfs:comment": "Identifies the issue of publication; for example, \"iii\" or \"2\".",
+ "rdfs:label": "issueNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationIssue"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:encodings",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object that encodes this CreativeWork.",
+ "rdfs:label": "encodings",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:encoding"
+ }
+ },
+ {
+ "@id": "schema:recipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The participant who is at the receiving end of the action.",
+ "rdfs:label": "recipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TipAction"
+ },
+ {
+ "@id": "schema:CommunicateAction"
+ },
+ {
+ "@id": "schema:PayAction"
+ },
+ {
+ "@id": "schema:DonateAction"
+ },
+ {
+ "@id": "schema:ReturnAction"
+ },
+ {
+ "@id": "schema:GiveAction"
+ },
+ {
+ "@id": "schema:Message"
+ },
+ {
+ "@id": "schema:SendAction"
+ },
+ {
+ "@id": "schema:AuthorizeAction"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Physiotherapy",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery.",
+ "rdfs:label": "Physiotherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:musicCompositionForm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of composition (e.g. overture, sonata, symphony, etc.).",
+ "rdfs:label": "musicCompositionForm",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Pond",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A pond.",
+ "rdfs:label": "Pond",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:fileSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.",
+ "rdfs:label": "fileSize",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:foundingLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the Organization was founded.",
+ "rdfs:label": "foundingLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:PropertyValueSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Property value specification.",
+ "rdfs:label": "PropertyValueSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ }
+ },
+ {
+ "@id": "schema:BorrowAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\\n\\nRelated actions:\\n\\n* [[LendAction]]: Reciprocal of BorrowAction.",
+ "rdfs:label": "BorrowAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:HinduDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Hindu dietary practices, in particular, beef-free.",
+ "rdfs:label": "HinduDiet"
+ },
+ {
+ "@id": "schema:Hematologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.",
+ "rdfs:label": "Hematologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:departureBoatTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The terminal or port from which the boat departs.",
+ "rdfs:label": "departureBoatTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:BoatTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BoatTerminal"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:requiresSubscription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates if use of the media require a subscription (either paid or free). Allowed values are ```true``` or ```false``` (note that an earlier version had 'yes', 'no').",
+ "rdfs:label": "requiresSubscription",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaSubscription"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ },
+ {
+ "@id": "schema:tool",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
+ "rdfs:label": "tool",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToDirection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:HowToTool"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:LowSaltDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced sodium intake.",
+ "rdfs:label": "LowSaltDiet"
+ },
+ {
+ "@id": "schema:numberOfAvailableAccommodationUnits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the number of available accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAccommodationUnits]].",
+ "rdfs:label": "numberOfAvailableAccommodationUnits",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ApartmentComplex"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:XPathType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Text representing an XPath (typically but not necessarily version 1.0).",
+ "rdfs:label": "XPathType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1672"
+ }
+ },
+ {
+ "@id": "schema:SingleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.",
+ "rdfs:label": "SingleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:funder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
+ "rdfs:label": "funder",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:sponsor"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Grant"
+ },
+ {
+ "@id": "schema:MonetaryGrant"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RadioChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup.",
+ "rdfs:label": "RadioChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:BroadcastChannel"
+ }
+ },
+ {
+ "@id": "schema:Thing",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The most generic type of item.",
+ "rdfs:label": "Thing"
+ },
+ {
+ "@id": "schema:amount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of money.",
+ "rdfs:label": "amount",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MonetaryGrant"
+ },
+ {
+ "@id": "schema:InvestmentOrDeposit"
+ },
+ {
+ "@id": "schema:LoanOrCredit"
+ },
+ {
+ "@id": "schema:MoneyTransfer"
+ },
+ {
+ "@id": "schema:DatedMoneySpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoOverlaps",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoOverlaps",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SingleRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "SingleRelease.",
+ "rdfs:label": "SingleRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemAU",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Australian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemAU",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:UKTrust",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "UKTrust: Non-profit type referring to a UK trust.",
+ "rdfs:label": "UKTrust",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ImageObject",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcmitype:Image"
+ },
+ "rdfs:comment": "An image file.",
+ "rdfs:label": "ImageObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:iso6523Code",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ",
+ "rdfs:label": "iso6523Code",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2915"
+ }
+ },
+ {
+ "@id": "schema:BookFormatType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The publication format of the book.",
+ "rdfs:label": "BookFormatType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:PaidLeave",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "PaidLeave: this is a benefit for paid leave.",
+ "rdfs:label": "PaidLeave",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:prescriptionStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the status of drug prescription, e.g. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc.",
+ "rdfs:label": "prescriptionStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DrugPrescriptionStatus"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EditedOrCroppedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'edited or cropped content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'edited or cropped content': The video has been edited or rearranged. This category applies to time edits, including editing multiple videos together to alter the story being told or editing out large portions from a video.\n\nFor an [[ImageObject]] to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[ImageObject]] with embedded text to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[AudioObject]] to be 'edited or cropped content': The audio has been edited or rearranged. This category applies to time edits, including editing multiple audio clips together to alter the story being told or editing out large portions from the recording.\n",
+ "rdfs:label": "EditedOrCroppedContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c12",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c12: Non-profit type referring to Benevolent Life Insurance Associations, Mutual Ditch or Irrigation Companies, Mutual or Cooperative Telephone Companies.",
+ "rdfs:label": "Nonprofit501c12",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:accommodationCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Category of an [[Accommodation]], following real estate conventions, e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).",
+ "rdfs:label": "accommodationCategory",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:category"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:VitalSign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Vital signs are measures of various physiological functions in order to assess the most basic body functions.",
+ "rdfs:label": "VitalSign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalSign"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasCourse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program.",
+ "rdfs:label": "hasCourse",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Course"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2483"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemMX",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Mexican size system for wearables.",
+ "rdfs:label": "WearableSizeSystemMX",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:GardenStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A garden store.",
+ "rdfs:label": "GardenStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:bioChemSimilarity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A similar BioChemEntity, e.g., obtained by fingerprint similarity algorithms.",
+ "rdfs:label": "bioChemSimilarity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:SearchRescueOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Search and Rescue organization of some kind.",
+ "rdfs:label": "SearchRescueOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3052"
+ }
+ },
+ {
+ "@id": "schema:TherapeuticProcedure",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/277132007"
+ },
+ "rdfs:comment": "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.",
+ "rdfs:label": "TherapeuticProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:diversityPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.",
+ "rdfs:label": "diversityPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BrainStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.",
+ "rdfs:label": "BrainStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:assemblyVersion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Associated product/technology version. E.g., .NET Framework 4.5.",
+ "rdfs:label": "assemblyVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:TreatmentsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Treatments or related therapies for a Topic.",
+ "rdfs:label": "TreatmentsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:drug",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifying a drug or medicine used in a medication procedure.",
+ "rdfs:label": "drug",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ },
+ {
+ "@id": "schema:DrugClass"
+ },
+ {
+ "@id": "schema:Patient"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:Recipe",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail.",
+ "rdfs:label": "Recipe",
+ "rdfs:subClassOf": {
+ "@id": "schema:HowTo"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupMaternity",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Maternity\" for wearables.",
+ "rdfs:label": "WearableSizeGroupMaternity",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ReplaceAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of editing a recipient by replacing an old object with a new object.",
+ "rdfs:label": "ReplaceAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UpdateAction"
+ }
+ },
+ {
+ "@id": "schema:Code",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
+ "rdfs:label": "Code",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:SoftwareSourceCode"
+ }
+ },
+ {
+ "@id": "schema:video",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An embedded video object.",
+ "rdfs:label": "video",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:Clip"
+ }
+ ]
+ },
+ {
+ "@id": "schema:median",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The median value.",
+ "rdfs:label": "median",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c16",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.",
+ "rdfs:label": "Nonprofit501c16",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:SizeSystemMetric",
+ "@type": "schema:SizeSystemEnumeration",
+ "rdfs:comment": "Metric size system.",
+ "rdfs:label": "SizeSystemMetric",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ChildCare",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Childcare center.",
+ "rdfs:label": "ChildCare",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:LocationFeatureSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Specifies a location feature by providing a structured value representing a feature of an accommodation as a property-value pair of varying degrees of formality.",
+ "rdfs:label": "LocationFeatureSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PropertyValue"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:percentile90",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 90th percentile value.",
+ "rdfs:label": "percentile90",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:GovernmentOffice",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A government office—for example, an IRS or DMV office.",
+ "rdfs:label": "GovernmentOffice",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:RemixAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "RemixAlbum.",
+ "rdfs:label": "RemixAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Date",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "Date"
+ },
+ {
+ "@id": "schema:OTC",
+ "@type": "schema:DrugPrescriptionStatus",
+ "rdfs:comment": "The character of a medical substance, typically a medicine, of being available over the counter or not.",
+ "rdfs:label": "OTC",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasMerchantReturnPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a MerchantReturnPolicy that may be applicable.",
+ "rdfs:label": "hasMerchantReturnPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:Taxon",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "A set of organisms asserted to represent a natural cohesive biological unit.",
+ "rdfs:label": "Taxon",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:cvdCollectionDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "collectiondate - Date for which patient counts are reported.",
+ "rdfs:label": "cvdCollectionDate",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:lesserOrEqual",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.",
+ "rdfs:label": "lesserOrEqual",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:AccountingService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Accountancy business.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).\n ",
+ "rdfs:label": "AccountingService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:videoFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).",
+ "rdfs:label": "videoFormat",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BroadcastEvent"
+ },
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:ScreeningEvent"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EventScheduled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default.",
+ "rdfs:label": "EventScheduled"
+ },
+ {
+ "@id": "schema:Vessel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.",
+ "rdfs:label": "Vessel",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:recordLabel",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/mo/label"
+ },
+ "rdfs:comment": "The label that issued the release.",
+ "rdfs:label": "recordLabel",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:associatedPathophysiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.",
+ "rdfs:label": "associatedPathophysiology",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementSleeve",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the sleeve length, for example of a shirt",
+ "rdfs:label": "WearableMeasurementSleeve",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ListPrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the list price (the price a product is actually advertised for) of an offered product.",
+ "rdfs:label": "ListPrice",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:CommunicateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.",
+ "rdfs:label": "CommunicateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:WebApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web applications.",
+ "rdfs:label": "WebApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:LodgingBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A lodging business, such as a motel, hotel, or inn.",
+ "rdfs:label": "LodgingBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Suspended",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Suspended.",
+ "rdfs:label": "Suspended",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Subscription",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the subscription pricing component of the total price for an offered product.",
+ "rdfs:label": "Subscription",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:FreeReturn",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that product returns are free of charge for the customer.",
+ "rdfs:label": "FreeReturn",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:isPartOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.",
+ "rdfs:label": "isPartOf",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HowToTool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tool used (but not consumed) when performing instructions for how to achieve a result.",
+ "rdfs:label": "HowToTool",
+ "rdfs:subClassOf": {
+ "@id": "schema:HowToItem"
+ }
+ },
+ {
+ "@id": "schema:InvestmentFund",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A company or fund that gathers capital from a number of investors to create a pool of money that is then re-invested into stocks, bonds and other assets.",
+ "rdfs:label": "InvestmentFund",
+ "rdfs:subClassOf": {
+ "@id": "schema:InvestmentOrDeposit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoEquals",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship).",
+ "rdfs:label": "geoEquals",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:sportsEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The sports event where this action occurred.",
+ "rdfs:label": "sportsEvent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SportsEvent"
+ }
+ },
+ {
+ "@id": "schema:FailedActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.",
+ "rdfs:label": "FailedActionStatus"
+ },
+ {
+ "@id": "schema:RealEstateAgent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A real-estate agent.",
+ "rdfs:label": "RealEstateAgent",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:AdvertiserContentArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content.",
+ "rdfs:label": "AdvertiserContentArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Drawing",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A picture or diagram made with a pencil, pen, or crayon rather than paint.",
+ "rdfs:label": "Drawing",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:providesService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The service provided by this channel.",
+ "rdfs:label": "providesService",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:prescribingInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to prescribing information for the drug.",
+ "rdfs:label": "prescribingInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:RegisterAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of registering to be a user of a service, product or web page.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\\n* [[FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.",
+ "rdfs:label": "RegisterAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:pregnancyWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.",
+ "rdfs:label": "pregnancyWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:CommunityHealth",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas.",
+ "rdfs:label": "CommunityHealth",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:businessFunction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.",
+ "rdfs:label": "businessFunction",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:BusinessFunction"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:instrument",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The object that helped the agent perform the action. E.g. John wrote a book with *a pen*.",
+ "rdfs:label": "instrument",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:birthDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date of birth.",
+ "rdfs:label": "birthDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:pattern",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.",
+ "rdfs:label": "pattern",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:MortgageLoan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A loan in which property or real estate is used as collateral. (A loan securitized against some real estate.)",
+ "rdfs:label": "MortgageLoan",
+ "rdfs:subClassOf": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:CorrectionComment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[comment]] that corrects [[CreativeWork]].",
+ "rdfs:label": "CorrectionComment",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
+ }
+ },
+ {
+ "@id": "schema:Periodical",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.org/ontology/bibo/Periodical"
+ },
+ "rdfs:comment": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended to continue indefinitely, such as a magazine, scholarly journal, or newspaper.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "Periodical",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:verificationFactCheckingPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].",
+ "rdfs:label": "verificationFactCheckingPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:monthlyMinimumRepaymentAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month.",
+ "rdfs:label": "monthlyMinimumRepaymentAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BusStop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bus stop.",
+ "rdfs:label": "BusStop",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:offersPrescriptionByMail",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether prescriptions can be delivered by mail.",
+ "rdfs:label": "offersPrescriptionByMail",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanFormulary"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:OfficeEquipmentStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An office equipment store.",
+ "rdfs:label": "OfficeEquipmentStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:touristType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Attraction suitable for type(s) of tourist. E.g. children, visitors from a particular country, etc. ",
+ "rdfs:label": "touristType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TouristDestination"
+ },
+ {
+ "@id": "schema:TouristAttraction"
+ },
+ {
+ "@id": "schema:TouristTrip"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:editor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the Person who edited the CreativeWork.",
+ "rdfs:label": "editor",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:MisconceptionsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about common misconceptions and myths that are related to a topic.",
+ "rdfs:label": "MisconceptionsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:governmentBenefitsInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.",
+ "rdfs:label": "governmentBenefitsInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:GovernmentService"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:calories",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of calories.",
+ "rdfs:label": "calories",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Energy"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementHeight",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the height, for example the heel height of a shoe",
+ "rdfs:label": "WearableMeasurementHeight",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:unitCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.",
+ "rdfs:label": "unitCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ {
+ "@id": "schema:UnitPriceSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Church",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A church.",
+ "rdfs:label": "Church",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:countriesNotSupported",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "countriesNotSupported",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PrependAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of inserting at the beginning if an ordered collection.",
+ "rdfs:label": "PrependAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InsertAction"
+ }
+ },
+ {
+ "@id": "schema:Appearance",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Appearance assessment with clinical examination.",
+ "rdfs:label": "Appearance",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:dateModified",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.",
+ "rdfs:label": "dateModified",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:translationOfWork",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.",
+ "rdfs:label": "translationOfWork",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:workTranslation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:SkiResort",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A ski resort.",
+ "rdfs:label": "SkiResort",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:SportsActivityLocation"
+ },
+ {
+ "@id": "schema:Resort"
+ }
+ ]
+ },
+ {
+ "@id": "schema:legalStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The drug or supplement's legal status, including any controlled substance schedules that apply.",
+ "rdfs:label": "legalStatus",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DrugLegalStatus"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:printColumn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of the column in which the NewsArticle appears in the print edition.",
+ "rdfs:label": "printColumn",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:occupancy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person",
+ "rdfs:label": "occupancy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HotelRoom"
+ },
+ {
+ "@id": "schema:Suite"
+ },
+ {
+ "@id": "schema:Apartment"
+ },
+ {
+ "@id": "schema:SingleFamilyResidence"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:billingDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property).",
+ "rdfs:label": "billingDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Duration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:hasRepresentation",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A common representation such as a protein sequence or chemical structure for this entity. For images use schema.org/image.",
+ "rdfs:label": "hasRepresentation",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:creativeWorkStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.",
+ "rdfs:label": "creativeWorkStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/987"
+ }
+ },
+ {
+ "@id": "schema:PriceTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates different price types, for example list price, invoice price, and sale price.",
+ "rdfs:label": "PriceTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:isBasedOnUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.",
+ "rdfs:label": "isBasedOnUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:isBasedOn"
+ }
+ },
+ {
+ "@id": "schema:MedicalTrial",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical trial is a type of medical study that uses a scientific process to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.",
+ "rdfs:label": "MedicalTrial",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:HowTo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Instructions that explain how to achieve a result by performing a sequence of steps.",
+ "rdfs:label": "HowTo",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c7",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs.",
+ "rdfs:label": "Nonprofit501c7",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:eligibilityToWorkRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.",
+ "rdfs:label": "eligibilityToWorkRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ }
+ },
+ {
+ "@id": "schema:DanceGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.",
+ "rdfs:label": "DanceGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:PerformingGroup"
+ }
+ },
+ {
+ "@id": "schema:isFamilyFriendly",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether this content is family friendly.",
+ "rdfs:label": "isFamilyFriendly",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:blogPosts",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a post that is part of a [[Blog]]. Note that historically, what we term a \"Blog\" was once known as a \"weblog\", and that what we term a \"BlogPosting\" is now often colloquially referred to as a \"blog\".",
+ "rdfs:label": "blogPosts",
+ "schema:domainIncludes": {
+ "@id": "schema:Blog"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BlogPosting"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:blogPost"
+ }
+ },
+ {
+ "@id": "schema:hasBioPolymerSequence",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "A symbolic representation of a BioChemEntity. For example, a nucleotide sequence of a Gene or an amino acid sequence of a Protein.",
+ "rdfs:label": "hasBioPolymerSequence",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Protein"
+ },
+ {
+ "@id": "schema:Gene"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:addressCountry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1).",
+ "rdfs:label": "addressCountry",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Country"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:Photograph",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A photograph.",
+ "rdfs:label": "Photograph",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:HousePainter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A house painting service.",
+ "rdfs:label": "HousePainter",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:tissueSample",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of tissue sample required for the test.",
+ "rdfs:label": "tissueSample",
+ "schema:domainIncludes": {
+ "@id": "schema:PathologyTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:infectiousAgent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The actual infectious agent, such as a specific bacterium.",
+ "rdfs:label": "infectiousAgent",
+ "schema:domainIncludes": {
+ "@id": "schema:InfectiousDisease"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:driveWheelConfiguration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.",
+ "rdfs:label": "driveWheelConfiguration",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DriveWheelConfigurationValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:leaseLength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property.",
+ "rdfs:label": "leaseLength",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:RealEstateListing"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Duration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:OrderProblem",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that there is a problem with the order.",
+ "rdfs:label": "OrderProblem"
+ },
+ {
+ "@id": "schema:gtin12",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin12",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:operatingSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Operating systems supported (Windows 7, OS X 10.6, Android 1.6).",
+ "rdfs:label": "operatingSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:sizeSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The size system used to identify a product's size. Typically either a standard (for example, \"GS1\" or \"ISO-EN13402\"), country code (for example \"US\" or \"JP\"), or a measuring system (for example \"Metric\" or \"Imperial\").",
+ "rdfs:label": "sizeSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:SizeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:SizeSystemEnumeration"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501a",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations.",
+ "rdfs:label": "Nonprofit501a",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:exifData",
+ "@type": "rdf:Property",
+ "rdfs:comment": "exif data for this object.",
+ "rdfs:label": "exifData",
+ "schema:domainIncludes": {
+ "@id": "schema:ImageObject"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:estimatedSalary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.",
+ "rdfs:label": "estimatedSalary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:MonetaryAmountDistribution"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:DiscussionForumPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A posting to a discussion forum.",
+ "rdfs:label": "DiscussionForumPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:SocialMediaPosting"
+ }
+ },
+ {
+ "@id": "schema:CohortStudy",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.",
+ "rdfs:label": "CohortStudy",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:numberOfAccommodationUnits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the total (available plus unavailable) number of accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAvailableAccommodationUnits]].",
+ "rdfs:label": "numberOfAccommodationUnits",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ApartmentComplex"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:Wednesday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Tuesday and Thursday.",
+ "rdfs:label": "Wednesday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q128"
+ }
+ },
+ {
+ "@id": "schema:landlord",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The owner of the real estate property.",
+ "rdfs:label": "landlord",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:RentAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:UnclassifiedAdultConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is suitable only for adults, without indicating why. Due to widespread use of \"adult\" as a euphemism for \"sexual\", many such items are likely suited also for the SexualContentConsideration code.",
+ "rdfs:label": "UnclassifiedAdultConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:featureList",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Features or modules provided by this application (and possibly required by other applications).",
+ "rdfs:label": "featureList",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:openingHours",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>.",
+ "rdfs:label": "openingHours",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LocalBusiness"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:maps",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "maps",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:hasMap"
+ }
+ },
+ {
+ "@id": "schema:TransitMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A transit map.",
+ "rdfs:label": "TransitMap"
+ },
+ {
+ "@id": "schema:serviceAudience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The audience eligible for this service.",
+ "rdfs:label": "serviceAudience",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Audience"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:audience"
+ }
+ },
+ {
+ "@id": "schema:RealEstateListing",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell).\n The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]].\n ",
+ "rdfs:label": "RealEstateListing",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ }
+ },
+ {
+ "@id": "schema:SellAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.",
+ "rdfs:label": "SellAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:ShareAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of distributing content to people for their amusement or edification.",
+ "rdfs:label": "ShareAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:Bakery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bakery.",
+ "rdfs:label": "Bakery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:isAccessibleForFree",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.",
+ "rdfs:label": "isAccessibleForFree",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:isSimilarTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another, functionally similar product (or multiple products).",
+ "rdfs:label": "isSimilarTo",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:WholesaleStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A wholesale store.",
+ "rdfs:label": "WholesaleStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:RejectAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n* [[AcceptAction]]: The antonym of RejectAction.",
+ "rdfs:label": "RejectAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:cvdNumTotBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numtotbeds - ALL HOSPITAL BEDS: Total number of all inpatient and outpatient beds, including all staffed, ICU, licensed, and overflow (surge) beds used for inpatients or outpatients.",
+ "rdfs:label": "cvdNumTotBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:WarrantyScope",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A range of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Labor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n ",
+ "rdfs:label": "WarrantyScope",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:ticketToken",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.",
+ "rdfs:label": "ticketToken",
+ "schema:domainIncludes": {
+ "@id": "schema:Ticket"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:expectedArrivalFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The earliest date the package may arrive.",
+ "rdfs:label": "expectedArrivalFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:diet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The diet used in this action.",
+ "rdfs:label": "diet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Diet"
+ }
+ },
+ {
+ "@id": "schema:SpeakableSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A SpeakableSpecification indicates (typically via [[xpath]] or [[cssSelector]]) sections of a document that are highlighted as particularly [[speakable]]. Instances of this type are expected to be used primarily as values of the [[speakable]] property.",
+ "rdfs:label": "SpeakableSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ }
+ },
+ {
+ "@id": "schema:DepartmentStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A department store.",
+ "rdfs:label": "DepartmentStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:numberOfLoanPayments",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of payments contractually required at origination to repay the loan. For monthly paying loans this is the number of months from the contractual first payment date to the maturity date.",
+ "rdfs:label": "numberOfLoanPayments",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:deathDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date of death.",
+ "rdfs:label": "deathDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:GasStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A gas station.",
+ "rdfs:label": "GasStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:PlanAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of planning the execution of an event/task/action/reservation/plan to a future date.",
+ "rdfs:label": "PlanAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:broadcastTimezone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts.",
+ "rdfs:label": "broadcastTimezone",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:relatedLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link related to this web page, for example to other related web pages.",
+ "rdfs:label": "relatedLink",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:author",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.",
+ "rdfs:label": "author",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Rating"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ratingExplanation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with \"fact check\" markup using [[ClaimReview]].",
+ "rdfs:label": "ratingExplanation",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2300"
+ }
+ },
+ {
+ "@id": "schema:additionalName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An additional name for a Person, can be used for a middle name.",
+ "rdfs:label": "additionalName",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:alternateName"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:starRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).",
+ "rdfs:label": "starRating",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FoodEstablishment"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:MotorcycleDealer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorcycle dealer.",
+ "rdfs:label": "MotorcycleDealer",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:MedicalOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical organization (physical or not), such as hospital, institution or clinic.",
+ "rdfs:label": "MedicalOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:secondaryPrevention",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.",
+ "rdfs:label": "secondaryPrevention",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:regionsAllowed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166).",
+ "rdfs:label": "regionsAllowed",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:OfferCatalog",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.",
+ "rdfs:label": "OfferCatalog",
+ "rdfs:subClassOf": {
+ "@id": "schema:ItemList"
+ }
+ },
+ {
+ "@id": "schema:educationalCredentialAwarded",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.",
+ "rdfs:label": "educationalCredentialAwarded",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Course"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:infectiousAgentClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The class of infectious agent (bacteria, prion, etc.) that causes the disease.",
+ "rdfs:label": "infectiousAgentClass",
+ "schema:domainIncludes": {
+ "@id": "schema:InfectiousDisease"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:InfectiousAgentClass"
+ }
+ },
+ {
+ "@id": "schema:GeneralContractor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A general contractor.",
+ "rdfs:label": "GeneralContractor",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:Online",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: Online. Server is available.",
+ "rdfs:label": "Online"
+ },
+ {
+ "@id": "schema:printEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The edition of the print product in which the NewsArticle appears.",
+ "rdfs:label": "printEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Observation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Instances of the class [[Observation]] are used to specify observations about an entity (which may or may not be an instance of a [[StatisticalPopulation]]), at a particular time. The principal properties of an [[Observation]] are [[observedNode]], [[measuredProperty]], [[measuredValue]] (or [[median]], etc.) and [[observationDate]] ([[measuredProperty]] properties can, but need not always, be W3C RDF Data Cube \"measure properties\", as in the [lifeExpectancy example](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).\nSee also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ",
+ "rdfs:label": "Observation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:contentUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Actual bytes of the media object, for example the image file or video file.",
+ "rdfs:label": "contentUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:step",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.",
+ "rdfs:label": "step",
+ "schema:domainIncludes": {
+ "@id": "schema:HowTo"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:HowToSection"
+ },
+ {
+ "@id": "schema:HowToStep"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:validIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area where a permit or similar thing is valid.",
+ "rdfs:label": "validIn",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Permit"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:artMedium",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The material used. (E.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)",
+ "rdfs:label": "artMedium",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:material"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberOfAxles",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of axles.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfAxles",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:CategoryCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Category Code.",
+ "rdfs:label": "CategoryCode",
+ "rdfs:subClassOf": {
+ "@id": "schema:DefinedTerm"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:DrinkAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of swallowing liquids.",
+ "rdfs:label": "DrinkAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:loanPaymentFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Frequency of payments due, i.e. number of months between payments. This is defined as a frequency, i.e. the reciprocal of a period of time.",
+ "rdfs:label": "loanPaymentFrequency",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:unsaturatedFatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of unsaturated fat.",
+ "rdfs:label": "unsaturatedFatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:PlayAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, competition or exercise.\\n\\nRelated actions:\\n\\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.",
+ "rdfs:label": "PlayAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:typicalCreditsPerTerm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of credits or units a full-time student would be expected to take in 1 term however 'term' is defined by the institution.",
+ "rdfs:label": "typicalCreditsPerTerm",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:StructuredValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:applicableCountry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A country where a particular merchant return policy applies to, for example the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "applicableCountry",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Country"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3001"
+ }
+ },
+ {
+ "@id": "schema:scheduledTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time the object is scheduled to.",
+ "rdfs:label": "scheduledTime",
+ "schema:domainIncludes": {
+ "@id": "schema:PlanAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c28",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts.",
+ "rdfs:label": "Nonprofit501c28",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:object",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). E.g. John read *a book*.",
+ "rdfs:label": "object",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:Report",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Report generated by governmental or non-governmental organization.",
+ "rdfs:label": "Report",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:contentReferenceTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.",
+ "rdfs:label": "contentReferenceTime",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1050"
+ }
+ },
+ {
+ "@id": "schema:sizeGroup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The size group (also known as \"size type\") for a product's size. Size groups are common in the fashion industry to define size segments and suggested audiences for wearable products. Multiple values can be combined, for example \"men's big and tall\", \"petite maternity\" or \"regular\"",
+ "rdfs:label": "sizeGroup",
+ "schema:domainIncludes": {
+ "@id": "schema:SizeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SizeGroupEnumeration"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:biologicalRole",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A role played by the BioChemEntity within a biological context.",
+ "rdfs:label": "biologicalRole",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ }
+ },
+ {
+ "@id": "schema:OriginalShippingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay the original shipping costs when returning a product.",
+ "rdfs:label": "OriginalShippingFees",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:DaySpa",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A day spa.",
+ "rdfs:label": "DaySpa",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:event",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Upcoming or past event associated with this place, organization, or action.",
+ "rdfs:label": "event",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PlayAction"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:InviteAction"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:LeaveAction"
+ },
+ {
+ "@id": "schema:InformAction"
+ },
+ {
+ "@id": "schema:JoinAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:servesCuisine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The cuisine of the restaurant.",
+ "rdfs:label": "servesCuisine",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:duns",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
+ "rdfs:label": "duns",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:performerIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Event that this person is a performer or participant in.",
+ "rdfs:label": "performerIn",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:inChIKey",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "InChIKey is a hashed version of the full InChI (using the SHA-256 algorithm).",
+ "rdfs:label": "inChIKey",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:carrier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.",
+ "rdfs:label": "carrier",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ParcelDelivery"
+ },
+ {
+ "@id": "schema:Flight"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:provider"
+ }
+ },
+ {
+ "@id": "schema:photo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A photograph of this place.",
+ "rdfs:label": "photo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:image"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Photograph"
+ },
+ {
+ "@id": "schema:ImageObject"
+ }
+ ]
+ },
+ {
+ "@id": "schema:correction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.",
+ "rdfs:label": "correction",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CorrectionComment"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
+ }
+ ]
+ },
+ {
+ "@id": "schema:iupacName",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "Systematic method of naming chemical compounds as recommended by the International Union of Pure and Applied Chemistry (IUPAC).",
+ "rdfs:label": "iupacName",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Geriatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.",
+ "rdfs:label": "Geriatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:returnMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return method offered, specified from an enumeration.",
+ "rdfs:label": "returnMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnMethodEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:supplyTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The area to which the artery supplies blood.",
+ "rdfs:label": "supplyTo",
+ "schema:domainIncludes": {
+ "@id": "schema:Artery"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:alumni",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Alumni of an organization.",
+ "rdfs:label": "alumni",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:EducationalOrganization"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:alumniOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:AppendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of inserting at the end if an ordered collection.",
+ "rdfs:label": "AppendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InsertAction"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupWomens",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Womens\" for wearables.",
+ "rdfs:label": "WearableSizeGroupWomens",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Occupation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A profession, may involve prolonged training and/or a formal qualification.",
+ "rdfs:label": "Occupation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:VisualArtwork",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A work of art that is primarily visual in character.",
+ "rdfs:label": "VisualArtwork",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass"
+ }
+ },
+ {
+ "@id": "schema:sdDatePublished",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]",
+ "rdfs:label": "sdDatePublished",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
+ }
+ },
+ {
+ "@id": "schema:suggestedGender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The suggested gender of the intended person or audience, for example \"male\", \"female\", or \"unisex\".",
+ "rdfs:label": "suggestedGender",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GenderType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ethicsPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.",
+ "rdfs:label": "ethicsPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:NewsMediaOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ },
+ {
+ "@id": "schema:adverseOutcome",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or otherwise life-threatening or requiring immediate medical attention), tag it as a seriousAdverseOutcome instead.",
+ "rdfs:label": "adverseOutcome",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ {
+ "@id": "schema:MedicalDevice"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:molecularFormula",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "The empirical formula is the simplest whole number ratio of all the atoms in a molecule.",
+ "rdfs:label": "molecularFormula",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:populationType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the populationType common to all members of a [[StatisticalPopulation]].",
+ "rdfs:label": "populationType",
+ "schema:domainIncludes": {
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Class"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:RadiationTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of care using radiation aimed at improving a health condition.",
+ "rdfs:label": "RadiationTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:leiCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.",
+ "rdfs:label": "leiCode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BodyMeasurementHeight",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Body height (measured between crown of head and soles of feet). Used, for example, to fit jackets.",
+ "rdfs:label": "BodyMeasurementHeight",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:OfferShippingDetails",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "OfferShippingDetails represents information about shipping destinations.\n\nMultiple of these entities can be used to represent different shipping rates for different destinations:\n\nOne entity for Alaska/Hawaii. A different one for continental US. A different one for all France.\n\nMultiple of these entities can be used to represent different shipping costs and delivery times.\n\nTwo entities that are identical but differ in rate and time:\n\nE.g. Cheaper and slower: $5 in 5-7 days\nor Fast and expensive: $15 in 1-2 days.",
+ "rdfs:label": "OfferShippingDetails",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c5",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations.",
+ "rdfs:label": "Nonprofit501c5",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c25",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents.",
+ "rdfs:label": "Nonprofit501c25",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:MedicalResearcher",
+ "@type": "schema:MedicalAudienceType",
+ "rdfs:comment": "Medical researchers.",
+ "rdfs:label": "MedicalResearcher",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:error",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For failed actions, more information on the cause of the failure.",
+ "rdfs:label": "error",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:transmissionMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.",
+ "rdfs:label": "transmissionMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:InfectiousDisease"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:postalCodeRange",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A defined range of postal codes.",
+ "rdfs:label": "postalCodeRange",
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalCodeRangeSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:RadioSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.",
+ "rdfs:label": "RadioSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:MedicalSymptom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.",
+ "rdfs:label": "MedicalSymptom",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalSignOrSymptom"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:sugarContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of sugar.",
+ "rdfs:label": "sugarContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c1",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c1: Non-profit type referring to Corporations Organized Under Act of Congress, including Federal Credit Unions and National Farm Loan Associations.",
+ "rdfs:label": "Nonprofit501c1",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:breadcrumb",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A set of links that can help a user understand and navigate a website hierarchy.",
+ "rdfs:label": "breadcrumb",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BreadcrumbList"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SteeringPositionValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A value indicating a steering position.",
+ "rdfs:label": "SteeringPositionValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:APIReference",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Reference documentation for application programming interfaces (APIs).",
+ "rdfs:label": "APIReference",
+ "rdfs:subClassOf": {
+ "@id": "schema:TechArticle"
+ }
+ },
+ {
+ "@id": "schema:Fungus",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic fungus.",
+ "rdfs:label": "Fungus",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskScore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.",
+ "rdfs:label": "MedicalRiskScore",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:priceComponent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node.",
+ "rdfs:label": "priceComponent",
+ "schema:domainIncludes": {
+ "@id": "schema:CompoundPriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:CreativeWorkSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as TV, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n\t ",
+ "rdfs:label": "CreativeWorkSeries",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Series"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Hotel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hotel is an establishment that provides lodging paid on a short-term basis (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Hotel",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:quarantineGuidelines",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Guidelines about quarantine rules, e.g. in the context of a pandemic.",
+ "rdfs:label": "quarantineGuidelines",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:travelBans",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about travel bans, e.g. in the context of a pandemic.",
+ "rdfs:label": "travelBans",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:AskAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n* [[ReplyAction]]: Appears generally as a response to AskAction.",
+ "rdfs:label": "AskAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:target",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a target EntryPoint, or url, for an Action.",
+ "rdfs:label": "target",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:EntryPoint"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MediaGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Media gallery page. A mixed-media page that can contain media such as images, videos, and other multimedia.",
+ "rdfs:label": "MediaGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:CollectionPage"
+ }
+ },
+ {
+ "@id": "schema:validThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.",
+ "rdfs:label": "validThrough",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:SizeGroupEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size groups for various product categories.",
+ "rdfs:label": "SizeGroupEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementHand",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum hand girth (measured over the knuckles of the open right hand excluding thumb, fingers together). Used, for example, to fit gloves.",
+ "rdfs:label": "BodyMeasurementHand",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:SchoolDistrict",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A School District is an administrative area for the administration of schools.",
+ "rdfs:label": "SchoolDistrict",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2500"
+ }
+ },
+ {
+ "@id": "schema:comment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Comments, typically from users.",
+ "rdfs:label": "comment",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:RsvpAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Comment"
+ }
+ },
+ {
+ "@id": "schema:trialDesign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifics about the trial design (enumerated).",
+ "rdfs:label": "trialDesign",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTrial"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTrialDesign"
+ }
+ },
+ {
+ "@id": "schema:LinkRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Role that represents a Web link, e.g. as expressed via the 'url' property. Its linkRelationship property can indicate URL-based and plain textual link types, e.g. those in IANA link registry or others such as 'amphtml'. This structure provides a placeholder where details from HTML's link element can be represented outside of HTML, e.g. in JSON-LD feeds.",
+ "rdfs:label": "LinkRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1045"
+ }
+ },
+ {
+ "@id": "schema:TVEpisode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A TV episode which can be part of a series or season.",
+ "rdfs:label": "TVEpisode",
+ "rdfs:subClassOf": {
+ "@id": "schema:Episode"
+ }
+ },
+ {
+ "@id": "schema:productID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The product identifier, such as ISBN. For example: ``` meta itemprop=\"productID\" content=\"isbn:123-456-789\" ```.",
+ "rdfs:label": "productID",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:productionCompany",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The production company or studio responsible for the item, e.g. series, video game, episode etc.",
+ "rdfs:label": "productionCompany",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:FMRadioChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio channel that uses FM.",
+ "rdfs:label": "FMRadioChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:RadioChannel"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:codingSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The coding system, e.g. 'ICD-10'.",
+ "rdfs:label": "codingSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCode"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:countryOfOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The country of origin of something, including products as well as creative works such as movie and TV content.\n\nIn the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.\n\nIn the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.",
+ "rdfs:label": "countryOfOrigin",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:TVSeason"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Country"
+ }
+ },
+ {
+ "@id": "schema:WritePermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to write or edit the document.",
+ "rdfs:label": "WritePermission"
+ },
+ {
+ "@id": "schema:subEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.",
+ "rdfs:label": "subEvent",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:superEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:activityDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Length of time to engage in the activity.",
+ "rdfs:label": "activityDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Duration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:vatID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Value-added Tax ID of the organization or person.",
+ "rdfs:label": "vatID",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:engineType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of engine or engines powering the vehicle.",
+ "rdfs:label": "engineType",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:cvdFacilityCounty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Name of the County of the NHSN facility that this data record applies to. Use [[cvdFacilityId]] to identify the facility. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.",
+ "rdfs:label": "cvdFacilityCounty",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:Menu",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured representation of food or drink items available from a FoodEstablishment.",
+ "rdfs:label": "Menu",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:vehicleSeatingCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons.",
+ "rdfs:label": "vehicleSeatingCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Clip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short TV or radio program or a segment/part of a program.",
+ "rdfs:label": "Clip",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:DownloadAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of downloading an object.",
+ "rdfs:label": "DownloadAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:UserTweets",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserTweets",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:hasDefinedTerm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A Defined Term contained in this term set.",
+ "rdfs:label": "hasDefinedTerm",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Taxon"
+ },
+ {
+ "@id": "schema:DefinedTermSet"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:PaymentStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.",
+ "rdfs:label": "PaymentStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:valueName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.",
+ "rdfs:label": "valueName",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:credentialCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term.",
+ "rdfs:label": "credentialCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:Anesthesia",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to study of anesthetics and their application.",
+ "rdfs:label": "Anesthesia",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:overdosage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.",
+ "rdfs:label": "overdosage",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemCN",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Chinese size system for wearables.",
+ "rdfs:label": "WearableSizeSystemCN",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:serviceSmsNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number to access the service by text message.",
+ "rdfs:label": "serviceSmsNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ }
+ },
+ {
+ "@id": "schema:VinylFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "VinylFormat.",
+ "rdfs:label": "VinylFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:procedure",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the procedure involved in setting up, using, and/or installing the device.",
+ "rdfs:label": "procedure",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalDevice"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:FourWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.",
+ "rdfs:label": "FourWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:webFeed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom.",
+ "rdfs:label": "webFeed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ {
+ "@id": "schema:PodcastSeries"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DataFeed"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
+ },
+ {
+ "@id": "schema:partOfInvoice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The order is being paid as part of the referenced Invoice.",
+ "rdfs:label": "partOfInvoice",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Invoice"
+ }
+ },
+ {
+ "@id": "schema:availableService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical service available from this provider.",
+ "rdfs:label": "availableService",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Physician"
+ },
+ {
+ "@id": "schema:Hospital"
+ },
+ {
+ "@id": "schema:MedicalClinic"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalTherapy"
+ },
+ {
+ "@id": "schema:MedicalTest"
+ },
+ {
+ "@id": "schema:MedicalProcedure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PerformingArtsTheater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A theater or other performing art center.",
+ "rdfs:label": "PerformingArtsTheater",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:availableTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A diagnostic test or procedure offered by this lab.",
+ "rdfs:label": "availableTest",
+ "schema:domainIncludes": {
+ "@id": "schema:DiagnosticLab"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
+ }
+ },
+ {
+ "@id": "schema:MedicalDevicePurpose",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Categories of medical devices, organized by the purpose or intended use of the device.",
+ "rdfs:label": "MedicalDevicePurpose",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Zoo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A zoo.",
+ "rdfs:label": "Zoo",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:BasicIncome",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "BasicIncome: this is a benefit for basic income.",
+ "rdfs:label": "BasicIncome",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:Flexibility",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged in to improve joint and muscle flexibility.",
+ "rdfs:label": "Flexibility",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:JoinAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent joins an event/group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.",
+ "rdfs:label": "JoinAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:IceCreamShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An ice cream shop.",
+ "rdfs:label": "IceCreamShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:applicationSuite",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of the application suite to which the application belongs (e.g. Excel belongs to Office).",
+ "rdfs:label": "applicationSuite",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:HinduTemple",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Hindu temple.",
+ "rdfs:label": "HinduTemple",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:hasAdultConsideration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Used to tag an item to be intended or suitable for consumption or use by adults only.",
+ "rdfs:label": "hasAdultConsideration",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdultOrientedEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:encodesCreativeWork",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CreativeWork encoded by this media object.",
+ "rdfs:label": "encodesCreativeWork",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:encoding"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:timeRequired",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.",
+ "rdfs:label": "timeRequired",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:signOrSymptom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.",
+ "rdfs:label": "signOrSymptom",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSignOrSymptom"
+ }
+ },
+ {
+ "@id": "schema:significantLinks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
+ "rdfs:label": "significantLinks",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:significantLink"
+ }
+ },
+ {
+ "@id": "schema:diseasePreventionInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about disease prevention.",
+ "rdfs:label": "diseasePreventionInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:broadcastFrequencyValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The frequency in MHz for a particular broadcast.",
+ "rdfs:label": "broadcastFrequencyValue",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastFrequencySpecification"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:NarcoticConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item is a narcotic as defined by the [1961 UN convention](https://www.incb.org/incb/en/narcotic-drugs/Yellowlist/yellow-list.html), for example marijuana or heroin.",
+ "rdfs:label": "NarcoticConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:CancelAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of asserting that a future event/action is no longer going to happen.\\n\\nRelated actions:\\n\\n* [[ConfirmAction]]: The antonym of CancelAction.",
+ "rdfs:label": "CancelAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlanAction"
+ }
+ },
+ {
+ "@id": "schema:RadioSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Season dedicated to radio broadcast and associated online delivery.",
+ "rdfs:label": "RadioSeason",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ },
+ {
+ "@id": "schema:Dentist",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A dentist.",
+ "rdfs:label": "Dentist",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:LocalBusiness"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WebPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.",
+ "rdfs:label": "WebPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c11",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations.",
+ "rdfs:label": "Nonprofit501c11",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:costOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.",
+ "rdfs:label": "costOrigin",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DrugClass",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.",
+ "rdfs:label": "DrugClass",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Musculoskeletal",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.",
+ "rdfs:label": "Musculoskeletal",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:episodes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An episode of a TV/radio series or season.",
+ "rdfs:label": "episodes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Episode"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:episode"
+ }
+ },
+ {
+ "@id": "schema:numberOfPreviousOwners",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of owners of the vehicle, including the current one.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfPreviousOwners",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Game",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.",
+ "rdfs:label": "Game",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:CityHall",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A city hall.",
+ "rdfs:label": "CityHall",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:requiredMaxAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Audiences defined by a person's maximum age.",
+ "rdfs:label": "requiredMaxAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:PharmacySpecialty",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The practice or art and science of preparing and dispensing drugs and medicines.",
+ "rdfs:label": "PharmacySpecialty",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:subStageSuffix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The substage, e.g. 'a' for Stage IIIa.",
+ "rdfs:label": "subStageSuffix",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalConditionStage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:significance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.",
+ "rdfs:label": "significance",
+ "schema:domainIncludes": {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:numConstraints",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the number of constraints (not counting [[populationType]]) defined for a particular [[StatisticalPopulation]]. This helps applications understand if they have access to a sufficiently complete description of a [[StatisticalPopulation]].",
+ "rdfs:label": "numConstraints",
+ "schema:domainIncludes": {
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:partOfSeason",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The season to which this episode belongs.",
+ "rdfs:label": "partOfSeason",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:Clip"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ },
+ {
+ "@id": "schema:HowToDirection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A direction indicating a single action to do in the instructions for how to achieve a result.",
+ "rdfs:label": "HowToDirection",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ListItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MoveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.",
+ "rdfs:label": "MoveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:BuyAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.",
+ "rdfs:label": "BuyAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501e",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations.",
+ "rdfs:label": "Nonprofit501e",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:knowsLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).",
+ "rdfs:label": "knowsLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Language"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HearingImpairedSupported",
+ "@type": "schema:ContactPointOption",
+ "rdfs:comment": "Uses devices to support users with hearing impairments.",
+ "rdfs:label": "HearingImpairedSupported"
+ },
+ {
+ "@id": "schema:Nonprofit501c3",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c3: Non-profit type referring to Religious, Educational, Charitable, Scientific, Literary, Testing for Public Safety, Fostering National or International Amateur Sports Competition, or Prevention of Cruelty to Children or Animals Organizations.",
+ "rdfs:label": "Nonprofit501c3",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Manuscript",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A book, document, or piece of music written by hand rather than typed or printed.",
+ "rdfs:label": "Manuscript",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:CompilationAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "CompilationAlbum.",
+ "rdfs:label": "CompilationAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:BookSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A series of books. Included books can be indicated with the hasPart property.",
+ "rdfs:label": "BookSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:typicalAgeRange",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical expected age range, e.g. '7-9', '11-'.",
+ "rdfs:label": "typicalAgeRange",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:recommendationStrength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Strength of the guideline's recommendation (e.g. 'class I').",
+ "rdfs:label": "recommendationStrength",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuidelineRecommendation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:postalCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The postal code. For example, 94043.",
+ "rdfs:label": "postalCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PostalAddress"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:GeoShape"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19Died",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location.",
+ "rdfs:label": "cvdNumC19Died",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:ReturnAtKiosk",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be made at a kiosk.",
+ "rdfs:label": "ReturnAtKiosk",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:totalPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "totalPrice",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:Ticket"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TouristDestination",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist destination. In principle any [[Place]] can be a [[TouristDestination]] from a [[City]], Region or [[Country]] to an [[AmusementPark]] or [[Hotel]]. This Type can be used on its own to describe a general [[TouristDestination]], or be used as an [[additionalType]] to add tourist relevant properties to any other [[Place]]. A [[TouristDestination]] is defined as a [[Place]] that contains, or is colocated with, one or more [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.\n (See examples below.)",
+ "rdfs:label": "TouristDestination",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:liveBlogUpdate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An update to the LiveBlog.",
+ "rdfs:label": "liveBlogUpdate",
+ "schema:domainIncludes": {
+ "@id": "schema:LiveBlogPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BlogPosting"
+ }
+ },
+ {
+ "@id": "schema:businessDays",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Days of the week when the merchant typically operates, indicated via opening hours markup.",
+ "rdfs:label": "businessDays",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:RsvpResponseType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.",
+ "rdfs:label": "RsvpResponseType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:RadioBroadcastService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A delivery service through which radio content is provided via broadcast over the air or online.",
+ "rdfs:label": "RadioBroadcastService",
+ "rdfs:subClassOf": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
+ }
+ },
+ {
+ "@id": "schema:NonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.",
+ "rdfs:label": "NonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:MusicStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music store.",
+ "rdfs:label": "MusicStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:catalogNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The catalog number for the release.",
+ "rdfs:label": "catalogNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:alignmentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.",
+ "rdfs:label": "alignmentType",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:containedInPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The basic containment relation between a place and one that contains it.",
+ "rdfs:label": "containedInPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:containsPlace"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:genre",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Genre of the creative work, broadcast channel or group.",
+ "rdfs:label": "genre",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BroadcastChannel"
+ },
+ {
+ "@id": "schema:MusicGroup"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:itemListOrder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type of ordering (e.g. Ascending, Descending, Unordered).",
+ "rdfs:label": "itemListOrder",
+ "schema:domainIncludes": {
+ "@id": "schema:ItemList"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemListOrderType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:returnShippingFeesAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Amount of shipping costs for product returns (for any reason). Applicable when property [[returnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "returnShippingFeesAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:InstallAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of installing an application.",
+ "rdfs:label": "InstallAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:Nursing",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A health profession of a person formally educated and trained in the care of the sick or infirm person.",
+ "rdfs:label": "Nursing",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:targetCollection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The collection target of the action.",
+ "rdfs:label": "targetCollection",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:UpdateAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:Message",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single message from a sender to one or more organizations or people.",
+ "rdfs:label": "Message",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:educationalRole",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An educationalRole of an EducationalAudience.",
+ "rdfs:label": "educationalRole",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:isInvolvedInBiologicalProcess",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Biological process this BioChemEntity is involved in; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "isInvolvedInBiologicalProcess",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:maximumEnrollment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The maximum number of students who may be enrolled in the program.",
+ "rdfs:label": "maximumEnrollment",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:BarOrPub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bar or pub.",
+ "rdfs:label": "BarOrPub",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:trainName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of the train (e.g. The Orient Express).",
+ "rdfs:label": "trainName",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:utterances",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].",
+ "rdfs:label": "utterances",
+ "schema:domainIncludes": {
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:IndividualProduct",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single, identifiable product instance (e.g. a laptop with a particular serial number).",
+ "rdfs:label": "IndividualProduct",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:suggestedAnswer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.",
+ "rdfs:label": "suggestedAnswer",
+ "schema:domainIncludes": {
+ "@id": "schema:Question"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Answer"
+ },
+ {
+ "@id": "schema:ItemList"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SportsTeam",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Organization: Sports team.",
+ "rdfs:label": "SportsTeam",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsOrganization"
+ }
+ },
+ {
+ "@id": "schema:purchaseDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date the item, e.g. vehicle, was purchased by the current owner.",
+ "rdfs:label": "purchaseDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Vehicle"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:NewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.\n\nA more detailed overview of [schema.org News markup](/docs/news.html) is also available.\n",
+ "rdfs:label": "NewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HairSalon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hair salon.",
+ "rdfs:label": "HairSalon",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:UseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of applying an object to its intended purpose.",
+ "rdfs:label": "UseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:reservedTicket",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A ticket associated with the reservation.",
+ "rdfs:label": "reservedTicket",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Ticket"
+ }
+ },
+ {
+ "@id": "schema:httpMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.",
+ "rdfs:label": "httpMethod",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:SoundtrackAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "SoundtrackAlbum.",
+ "rdfs:label": "SoundtrackAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:HowToStep",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.",
+ "rdfs:label": "HowToStep",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ListItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HardwareStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hardware store.",
+ "rdfs:label": "HardwareStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Virus",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic virus that causes viral infection.",
+ "rdfs:label": "Virus",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:EndorsementRating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \"critic's pick\" blog, a\n\"Like\" or \"+1\" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by\nsome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].\n\nAn [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,\nendorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.\n",
+ "rdfs:label": "EndorsementRating",
+ "rdfs:subClassOf": {
+ "@id": "schema:Rating"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1293"
+ }
+ },
+ {
+ "@id": "schema:Brewery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Brewery.",
+ "rdfs:label": "Brewery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:Country",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A country.",
+ "rdfs:label": "Country",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:BoatTerminal",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A terminal for boats, ships, and other water vessels.",
+ "rdfs:label": "BoatTerminal",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:Play",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A play is a form of literature, usually consisting of dialogue between characters, intended for theatrical performance rather than just reading. Note: A performance of a Play would be a [[TheaterEvent]] or [[BroadcastEvent]] - the *Play* being the [[workPerformed]].",
+ "rdfs:label": "Play",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1816"
+ }
+ },
+ {
+ "@id": "schema:producer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).",
+ "rdfs:label": "producer",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ParkingFacility",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A parking lot or other parking facility.",
+ "rdfs:label": "ParkingFacility",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:MedicalDevice",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/63653004"
+ },
+ "rdfs:comment": "Any object used in a medical capacity, such as to diagnose or treat a patient.",
+ "rdfs:label": "MedicalDevice",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Winery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A winery.",
+ "rdfs:label": "Winery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:targetPopulation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.",
+ "rdfs:label": "targetPopulation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DoseSchedule"
+ },
+ {
+ "@id": "schema:DietarySupplement"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:CheckOutAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check-in) or place (e.g. hotel).\\n\\nRelated actions:\\n\\n* [[CheckInAction]]: The antonym of CheckOutAction.\\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.",
+ "rdfs:label": "CheckOutAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:programType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of educational or occupational program. For example, classroom, internship, alternance, etc.",
+ "rdfs:label": "programType",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ }
+ },
+ {
+ "@id": "schema:coverageStartTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.",
+ "rdfs:label": "coverageStartTime",
+ "schema:domainIncludes": {
+ "@id": "schema:LiveBlogPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:ArchiveOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "ArchiveOrganization"
+ },
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:bodyType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).",
+ "rdfs:label": "bodyType",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:PaymentPastDue",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment is due and considered late.",
+ "rdfs:label": "PaymentPastDue"
+ },
+ {
+ "@id": "schema:musicGroupMember",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A member of a music group—for example, John, Paul, George, or Ringo.",
+ "rdfs:label": "musicGroupMember",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicGroup"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:member"
+ }
+ },
+ {
+ "@id": "schema:workPresented",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The movie presented during this event.",
+ "rdfs:label": "workPresented",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workFeatured"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ScreeningEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Movie"
+ }
+ },
+ {
+ "@id": "schema:LoanOrCredit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges.",
+ "rdfs:label": "LoanOrCredit",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:associatedDisease",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Disease associated to this BioChemEntity. Such disease can be a MedicalCondition or a URL. If you want to add an evidence supporting the association, please use PropertyValue.",
+ "rdfs:label": "associatedDisease",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalCondition"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:StatusEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Lists or enumerations dealing with status types.",
+ "rdfs:label": "StatusEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2604"
+ }
+ },
+ {
+ "@id": "schema:GroceryStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A grocery store.",
+ "rdfs:label": "GroceryStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:applicationSubCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Subcategory of the application, e.g. 'Arcade Game'.",
+ "rdfs:label": "applicationSubCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:includesObject",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].",
+ "rdfs:label": "includesObject",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ProductCollection"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:schemaVersion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to\n indicate the use of a specific schema.org release, e.g. ```10.0``` as a simple string, or more explicitly via URL, ```https://schema.org/docs/releases.html#v10.0```. There may be situations in which other schemas might usefully be referenced this way, e.g. ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/``` but this has not been carefully explored in the community.",
+ "rdfs:label": "schemaVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EffectivenessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the effectiveness-related aspects of a health topic.",
+ "rdfs:label": "EffectivenessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:audience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An intended audience, i.e. a group for whom something was created.",
+ "rdfs:label": "audience",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:PlayAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:parentItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The parent of a question, answer or item in general.",
+ "rdfs:label": "parentItem",
+ "schema:domainIncludes": {
+ "@id": "schema:Comment"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Comment"
+ }
+ },
+ {
+ "@id": "schema:gamePlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The electronic systems used to play video games.",
+ "rdfs:label": "gamePlatform",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OccupationalTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems.",
+ "rdfs:label": "OccupationalTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:VenueMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A venue map (e.g. for malls, auditoriums, museums, etc.).",
+ "rdfs:label": "VenueMap"
+ },
+ {
+ "@id": "schema:courseCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).",
+ "rdfs:label": "courseCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Course"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EventMovedOnline",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online.",
+ "rdfs:label": "EventMovedOnline"
+ },
+ {
+ "@id": "schema:functionalClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The degree of mobility the joint allows.",
+ "rdfs:label": "functionalClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Joint"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalEntity"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Barcode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An image of a visual machine-readable code such as a barcode or QR code.",
+ "rdfs:label": "Barcode",
+ "rdfs:subClassOf": {
+ "@id": "schema:ImageObject"
+ }
+ },
+ {
+ "@id": "schema:VeterinaryCare",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A vet's office.",
+ "rdfs:label": "VeterinaryCare",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:encoding",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.",
+ "rdfs:label": "encoding",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:encodesCreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:ingredients",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
+ "rdfs:label": "ingredients",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:supply"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:recipeIngredient"
+ }
+ },
+ {
+ "@id": "schema:BeautySalon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Beauty salon.",
+ "rdfs:label": "BeautySalon",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:Vehicle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.",
+ "rdfs:label": "Vehicle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ }
+ },
+ {
+ "@id": "schema:WebSite",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.",
+ "rdfs:label": "WebSite",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Place",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Entities that have a somewhat fixed, physical extension.",
+ "rdfs:label": "Place",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:correctionsPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.",
+ "rdfs:label": "correctionsPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:UserInteraction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserInteraction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:Electrician",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An electrician.",
+ "rdfs:label": "Electrician",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryE",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryE",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:publisherImprint",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The publishing division which published the comic.",
+ "rdfs:label": "publisherImprint",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:BusinessEntityType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Business\\n* http://purl.org/goodrelations/v1#Enduser\\n* http://purl.org/goodrelations/v1#PublicInstitution\\n* http://purl.org/goodrelations/v1#Reseller\n\t ",
+ "rdfs:label": "BusinessEntityType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:attendee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization attending the event.",
+ "rdfs:label": "attendee",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:possibleTreatment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A possible treatment to address this condition, sign or symptom.",
+ "rdfs:label": "possibleTreatment",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalSignOrSymptom"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:ReturnAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).",
+ "rdfs:label": "ReturnAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:PerformanceRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.",
+ "rdfs:label": "PerformanceRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ }
+ },
+ {
+ "@id": "schema:MedicalBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include different businesses run by health professionals.",
+ "rdfs:label": "MedicalBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalClinic",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well.",
+ "rdfs:label": "MedicalClinic",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalBusiness"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Protein",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Protein is here used in its widest possible definition, as classes of amino acid based molecules. Amyloid-beta Protein in human (UniProt P05067), eukaryota (e.g. an OrthoDB group) or even a single molecule that one can point to are all of type schema:Protein. A protein can thus be a subclass of another protein, e.g. schema:Protein as a UniProt record can have multiple isoforms inside it which would also be schema:Protein. They can be imagined, synthetic, hypothetical or naturally occurring.",
+ "rdfs:label": "Protein",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:normalRange",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Range of acceptable values for a typical patient, when applicable.",
+ "rdfs:label": "normalRange",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TrackAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent tracks an object for updates.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects.",
+ "rdfs:label": "TrackAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:FindAction"
+ }
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The price for the delivery of an offer using a particular delivery method.",
+ "rdfs:label": "DeliveryChargeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:departureAirport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The airport where the flight originates.",
+ "rdfs:label": "departureAirport",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Airport"
+ }
+ },
+ {
+ "@id": "schema:ComicIssue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Individual comic issues are serially published as\n \tpart of a larger series. For the sake of consistency, even one-shot issues\n \tbelong to a series comprised of a single issue. All comic issues can be\n \tuniquely identified by: the combination of the name and volume number of the\n \tseries to which the issue belongs; the issue number; and the variant\n \tdescription of the issue (if any).",
+ "rdfs:label": "ComicIssue",
+ "rdfs:subClassOf": {
+ "@id": "schema:PublicationIssue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bodyLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Location in the body of the anatomical structure.",
+ "rdfs:label": "bodyLocation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:medicalAudience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Medical audience for page.",
+ "rdfs:label": "medicalAudience",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalWebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MedicalAudience"
+ },
+ {
+ "@id": "schema:MedicalAudienceType"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AgreeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "AgreeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:ActiveNotRecruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Active, but not recruiting new participants.",
+ "rdfs:label": "ActiveNotRecruiting",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Tuesday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Monday and Wednesday.",
+ "rdfs:label": "Tuesday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q127"
+ }
+ },
+ {
+ "@id": "schema:messageAttachment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CreativeWork attached to the message.",
+ "rdfs:label": "messageAttachment",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:itemDefectReturnShippingFeesAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Amount of shipping costs for defect product returns. Applicable when property [[itemDefectReturnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "itemDefectReturnShippingFeesAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:Protozoa",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Single-celled organism that causes an infection.",
+ "rdfs:label": "Protozoa",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LeisureTimeActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.",
+ "rdfs:label": "LeisureTimeActivity",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AcceptAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of committing to/adopting an object.\\n\\nRelated actions:\\n\\n* [[RejectAction]]: The antonym of AcceptAction.",
+ "rdfs:label": "AcceptAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:duringMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object representing the circumstances while performing this direction.",
+ "rdfs:label": "duringMedia",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToDirection"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Permit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permit issued by an organization, e.g. a parking pass.",
+ "rdfs:label": "Permit",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c27",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations.",
+ "rdfs:label": "Nonprofit501c27",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:EventStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.",
+ "rdfs:label": "EventStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:namedPosition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.",
+ "rdfs:label": "namedPosition",
+ "schema:domainIncludes": {
+ "@id": "schema:Role"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:roleName"
+ }
+ },
+ {
+ "@id": "schema:AlcoholConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item contains alcohol or promotes alcohol consumption.",
+ "rdfs:label": "AlcoholConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:maxValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The upper value of some characteristic or property.",
+ "rdfs:label": "maxValue",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:logo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated logo.",
+ "rdfs:label": "logo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:image"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:CDCPMDRecord",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n definitions used as the source here.\n ",
+ "rdfs:label": "CDCPMDRecord",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:MensClothingStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A men's clothing store.",
+ "rdfs:label": "MensClothingStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:geoCrosses",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCrosses",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Room",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Room",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:CollegeOrUniversity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A college, university, or other third-level educational institution.",
+ "rdfs:label": "CollegeOrUniversity",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:passengerPriorityStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).",
+ "rdfs:label": "passengerPriorityStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberOfPlayers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicate how many people can play this game (minimum, maximum, or range).",
+ "rdfs:label": "numberOfPlayers",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Game"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:biomechnicalClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The biomechanical properties of the bone.",
+ "rdfs:label": "biomechnicalClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Joint"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:reservationId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A unique identifier for the reservation.",
+ "rdfs:label": "reservationId",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:SheetMusic",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Printed music, as opposed to performed or recorded music.",
+ "rdfs:label": "SheetMusic",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:signDetected",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sign detected by the test.",
+ "rdfs:label": "signDetected",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSign"
+ }
+ },
+ {
+ "@id": "schema:doseValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The value of the dose, e.g. 500.",
+ "rdfs:label": "doseValue",
+ "schema:domainIncludes": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:archiveHeld",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]]."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "archiveHeld"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ArchiveOrganization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:holdingArchive"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ArchiveComponent"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:acrissCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards.",
+ "rdfs:label": "acrissCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BusOrCoach"
+ },
+ {
+ "@id": "schema:Car"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:appearance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an occurrence of a [[Claim]] in some [[CreativeWork]].",
+ "rdfs:label": "appearance",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workExample"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ }
+ },
+ {
+ "@id": "schema:answerCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of answers this question has received.",
+ "rdfs:label": "answerCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Question"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:transFatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of trans fat.",
+ "rdfs:label": "transFatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:WPAdBlock",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An advertising section of the page.",
+ "rdfs:label": "WPAdBlock",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:UserBlocks",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserBlocks",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:SeaBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sea (for example, the Caspian sea).",
+ "rdfs:label": "SeaBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:interactionService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The WebSite or SoftwareApplication where the interactions took place.",
+ "rdfs:label": "interactionService",
+ "schema:domainIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebSite"
+ },
+ {
+ "@id": "schema:SoftwareApplication"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WearableMeasurementWidth",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the width, for example of shoes",
+ "rdfs:label": "WearableMeasurementWidth",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:orderNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The identifier of the transaction.",
+ "rdfs:label": "orderNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DeliveryMethod",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\\n* http://purl.org/goodrelations/v1#DeliveryModeMail\\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
+ "rdfs:label": "DeliveryMethod",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:beneficiaryBank",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary.",
+ "rdfs:label": "beneficiaryBank",
+ "schema:domainIncludes": {
+ "@id": "schema:MoneyTransfer"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:BankOrCreditUnion"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:accessibilityAPI",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).",
+ "rdfs:label": "accessibilityAPI",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:sdPublisher",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The\n[[sdPublisher]] property helps make such practices more explicit.",
+ "rdfs:label": "sdPublisher",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
+ }
+ },
+ {
+ "@id": "schema:fuelType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.",
+ "rdfs:label": "fuelType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Vehicle"
+ },
+ {
+ "@id": "schema:EngineSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:VisualArtsEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Visual arts event.",
+ "rdfs:label": "VisualArtsEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:Language",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]].",
+ "rdfs:label": "Language",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:acceptsReservations",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```.",
+ "rdfs:label": "acceptsReservations",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TollFree",
+ "@type": "schema:ContactPointOption",
+ "rdfs:comment": "The associated telephone number is toll free.",
+ "rdfs:label": "TollFree"
+ },
+ {
+ "@id": "schema:PathologyTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.",
+ "rdfs:label": "PathologyTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:DrugPrescriptionStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates whether this drug is available by prescription or over-the-counter.",
+ "rdfs:label": "DrugPrescriptionStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:startOffset",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The start time of the clip expressed as the number of seconds from the beginning of the work.",
+ "rdfs:label": "startOffset",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:SeekToAction"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:HyperTocEntry"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2021"
+ }
+ },
+ {
+ "@id": "schema:eligibleRegion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\\n\\nSee also [[ineligibleRegion]].\n ",
+ "rdfs:label": "eligibleRegion",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:areaServed"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:GeoShape"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ ]
+ },
+ {
+ "@id": "schema:countryOfLastProcessing",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the item (typically [[Product]]) was last processed and tested before importation.",
+ "rdfs:label": "countryOfLastProcessing",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/991"
+ }
+ },
+ {
+ "@id": "schema:codeSampleType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
+ "rdfs:label": "codeSampleType",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:seasons",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A season in a media series.",
+ "rdfs:label": "seasons",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:season"
+ }
+ },
+ {
+ "@id": "schema:opens",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The opening hour of the place or service on the given day(s) of the week.",
+ "rdfs:label": "opens",
+ "schema:domainIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Time"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:DrivingSchoolVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the vehicle for driving school.",
+ "rdfs:label": "DrivingSchoolVehicleUsage",
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Offer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\\n\\nNote: As the [[businessFunction]] property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\\n\\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/).",
+ "rdfs:label": "Offer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates types (or dimensions) of a person's body measurements, for example for fitting of clothes.",
+ "rdfs:label": "BodyMeasurementTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:MeasurementTypeEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:VideoGameSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A video game series.",
+ "rdfs:label": "VideoGameSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:OnDemandEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A publication event, e.g. catch-up TV or radio podcast, during which a program is available on-demand.",
+ "rdfs:label": "OnDemandEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:Pulmonary",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.",
+ "rdfs:label": "Pulmonary",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:rangeIncludes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.",
+ "rdfs:label": "rangeIncludes",
+ "schema:domainIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Class"
+ }
+ },
+ {
+ "@id": "schema:returnPolicySeasonalOverride",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Seasonal override of a return policy.",
+ "rdfs:label": "returnPolicySeasonalOverride",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:HealthClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A health club.",
+ "rdfs:label": "HealthClub",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:HealthAndBeautyBusiness"
+ },
+ {
+ "@id": "schema:SportsActivityLocation"
+ }
+ ]
+ },
+ {
+ "@id": "schema:StagedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'staged content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'staged content': A video that has been created using actors or similarly contrived.\n\nFor an [[ImageObject]] to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[ImageObject]] with embedded text to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[AudioObject]] to be 'staged content': Audio that has been created using actors or similarly contrived.\n",
+ "rdfs:label": "StagedContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:LegalService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).",
+ "rdfs:label": "LegalService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c9",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations.",
+ "rdfs:label": "Nonprofit501c9",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:providerMobility",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').",
+ "rdfs:label": "providerMobility",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:FastFoodRestaurant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A fast-food restaurant.",
+ "rdfs:label": "FastFoodRestaurant",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:honorificPrefix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.",
+ "rdfs:label": "honorificPrefix",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:ccRecipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of recipient. The recipient copied on a message.",
+ "rdfs:label": "ccRecipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:recipient"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:customerRemorseReturnShippingFeesAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of shipping costs if a product is returned due to customer remorse. Applicable when property [[customerRemorseReturnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "customerRemorseReturnShippingFeesAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:measuredProperty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The measuredProperty of an [[Observation]], either a schema.org property, a property from other RDF-compatible systems, e.g. W3C RDF Data Cube, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties).",
+ "rdfs:label": "measuredProperty",
+ "schema:domainIncludes": {
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:BusinessFunction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ConstructionInstallation\\n* http://purl.org/goodrelations/v1#Dispose\\n* http://purl.org/goodrelations/v1#LeaseOut\\n* http://purl.org/goodrelations/v1#Maintain\\n* http://purl.org/goodrelations/v1#ProvideService\\n* http://purl.org/goodrelations/v1#Repair\\n* http://purl.org/goodrelations/v1#Sell\\n* http://purl.org/goodrelations/v1#Buy\n ",
+ "rdfs:label": "BusinessFunction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:arrivalBusStop",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stop or station from which the bus arrives.",
+ "rdfs:label": "arrivalBusStop",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BusStop"
+ },
+ {
+ "@id": "schema:BusStation"
+ }
+ ]
+ },
+ {
+ "@id": "schema:recipeCuisine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The cuisine of the recipe (for example, French or Ethiopian).",
+ "rdfs:label": "recipeCuisine",
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:bestRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.",
+ "rdfs:label": "bestRating",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Dermatologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Something relating to or practicing dermatology.",
+ "rdfs:label": "Dermatologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:Dermatology"
+ }
+ },
+ {
+ "@id": "schema:releaseNotes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of what changed in this version.",
+ "rdfs:label": "releaseNotes",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PaymentDue",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment is due, but still within an acceptable time to be received.",
+ "rdfs:label": "PaymentDue"
+ },
+ {
+ "@id": "schema:DJMixAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "DJMixAlbum.",
+ "rdfs:label": "DJMixAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:URL",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: URL.",
+ "rdfs:label": "URL",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:audio",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An embedded audio object.",
+ "rdfs:label": "audio",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MusicRecording"
+ },
+ {
+ "@id": "schema:AudioObject"
+ },
+ {
+ "@id": "schema:Clip"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2420"
+ }
+ },
+ {
+ "@id": "schema:EducationalAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An EducationalAudience.",
+ "rdfs:label": "EducationalAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"
+ }
+ },
+ {
+ "@id": "schema:SinglePlayer",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: SinglePlayer. Which is played by a lone player.",
+ "rdfs:label": "SinglePlayer"
+ },
+ {
+ "@id": "schema:Legislation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article).",
+ "rdfs:label": "Legislation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": [
+ {
+ "@id": "http://data.europa.eu/eli/ontology#LegalResource"
+ },
+ {
+ "@id": "http://data.europa.eu/eli/ontology#LegalExpression"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HealthCare",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "HealthCare: this is a benefit for health care.",
+ "rdfs:label": "HealthCare",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:softwareHelp",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Software application help.",
+ "rdfs:label": "softwareHelp",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:sensoryRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
+ "rdfs:label": "sensoryRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ }
+ },
+ {
+ "@id": "schema:PreventionHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.",
+ "rdfs:label": "PreventionHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:DepartAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of departing from a place. An agent departs from a fromLocation for a destination, optionally with participants.",
+ "rdfs:label": "DepartAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:MoveAction"
+ }
+ },
+ {
+ "@id": "schema:asin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An Amazon Standard Identification Number (ASIN) is a 10-character alphanumeric unique identifier assigned by Amazon.com and its partners for product identification within the Amazon organization (summary from [Wikipedia](https://en.wikipedia.org/wiki/Amazon_Standard_Identification_Number)'s article).\n\nNote also that this is a definition for how to include ASINs in Schema.org data, and not a definition of ASINs in general - see documentation from Amazon for authoritative details.\nASINs are most commonly encoded as text strings, but the [asin] property supports URL/URI as potential values too.",
+ "rdfs:label": "asin",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:evidenceOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.",
+ "rdfs:label": "evidenceOrigin",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:supportingData",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Supporting data for a SoftwareApplication.",
+ "rdfs:label": "supportingData",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataFeed"
+ }
+ },
+ {
+ "@id": "schema:programPrerequisites",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Prerequisites for enrolling in the program.",
+ "rdfs:label": "programPrerequisites",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Course"
+ },
+ {
+ "@id": "schema:AlignmentObject"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:EnergyConsumptionDetails",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US.",
+ "rdfs:label": "EnergyConsumptionDetails",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:Painting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A painting.",
+ "rdfs:label": "Painting",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:chemicalComposition",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
+ },
+ "rdfs:comment": "The chemical composition describes the identity and relative ratio of the chemical elements that make up the substance.",
+ "rdfs:label": "chemicalComposition",
+ "schema:domainIncludes": {
+ "@id": "schema:ChemicalSubstance"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MultiPlayer",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.",
+ "rdfs:label": "MultiPlayer"
+ },
+ {
+ "@id": "schema:parents",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A parents of the person.",
+ "rdfs:label": "parents",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:parent"
+ }
+ },
+ {
+ "@id": "schema:CreditCard",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#AmericanExpress\\n* http://purl.org/goodrelations/v1#DinersClub\\n* http://purl.org/goodrelations/v1#Discover\\n* http://purl.org/goodrelations/v1#JCB\\n* http://purl.org/goodrelations/v1#MasterCard\\n* http://purl.org/goodrelations/v1#VISA\n ",
+ "rdfs:label": "CreditCard",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:PaymentCard"
+ },
+ {
+ "@id": "schema:LoanOrCredit"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ ]
+ },
+ {
+ "@id": "schema:countriesSupported",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "countriesSupported",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:hoursAvailable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The hours during which this service or contact is available.",
+ "rdfs:label": "hoursAvailable",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ },
+ {
+ "@id": "schema:LimitedAvailability",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has limited availability.",
+ "rdfs:label": "LimitedAvailability"
+ },
+ {
+ "@id": "schema:availableOnDevice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
+ "rdfs:label": "availableOnDevice",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:stageAsNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stage represented as a number, e.g. 3.",
+ "rdfs:label": "stageAsNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalConditionStage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:VeganDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of all animal products.",
+ "rdfs:label": "VeganDiet"
+ },
+ {
+ "@id": "schema:ApplyAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of registering to an organization/service without the guarantee to receive it.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.",
+ "rdfs:label": "ApplyAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:NLNonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "NLNonprofitType: Non-profit organization type originating from the Netherlands.",
+ "rdfs:label": "NLNonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:NonprofitType"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:ParkingMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A parking map.",
+ "rdfs:label": "ParkingMap"
+ },
+ {
+ "@id": "schema:GiveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\\n\\nRelated actions:\\n\\n* [[TakeAction]]: Reciprocal of GiveAction.\\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).",
+ "rdfs:label": "GiveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:familyName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Family name. In the U.S., the last name of a Person.",
+ "rdfs:label": "familyName",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:deliveryTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total delay between the receipt of the order and the goods reaching the final customer.",
+ "rdfs:label": "deliveryTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:siblings",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sibling of the person.",
+ "rdfs:label": "siblings",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:sibling"
+ }
+ },
+ {
+ "@id": "schema:isProprietary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "True if this item's name is a proprietary/brand name (vs. generic name).",
+ "rdfs:label": "isProprietary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:softwareVersion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Version of the software instance.",
+ "rdfs:label": "softwareVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Ayurvedic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.",
+ "rdfs:label": "Ayurvedic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:gameItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
+ "rdfs:label": "gameItem",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Game"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:proteinContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of protein.",
+ "rdfs:label": "proteinContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupExtraTall",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Extra Tall\" for wearables.",
+ "rdfs:label": "WearableSizeGroupExtraTall",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:bccRecipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of recipient. The recipient blind copied on a message.",
+ "rdfs:label": "bccRecipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:recipient"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ListItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An list item, e.g. a step in a checklist or how-to description.",
+ "rdfs:label": "ListItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:winner",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The winner of the action.",
+ "rdfs:label": "winner",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:LoseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:TVSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.",
+ "rdfs:label": "TVSeries",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FloorPlan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A FloorPlan is an explicit representation of a collection of similar accommodations, allowing the provision of common information (room counts, sizes, layout diagrams) and offers for rental or sale. In typical use, some [[ApartmentComplex]] has an [[accommodationFloorPlan]] which is a [[FloorPlan]]. A FloorPlan is always in the context of a particular place, either a larger [[ApartmentComplex]] or a single [[Apartment]]. The visual/spatial aspects of a floor plan (i.e. room layout, [see wikipedia](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. ",
+ "rdfs:label": "FloorPlan",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:NotInForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that a legislation is currently not in force.",
+ "rdfs:label": "NotInForce",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-notInForce"
+ }
+ },
+ {
+ "@id": "schema:freeShippingThreshold",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A monetary value above (or at) which the shipping rate becomes free. Intended to be used via an [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]].",
+ "rdfs:label": "freeShippingThreshold",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingRateSettings"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:accessibilityFeature",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).",
+ "rdfs:label": "accessibilityFeature",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Radiography",
+ "@type": [
+ "schema:MedicalImagingTechnique",
+ "schema:MedicalSpecialty"
+ ],
+ "rdfs:comment": "Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body.",
+ "rdfs:label": "Radiography",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasCredential",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A credential awarded to the Person or Organization.",
+ "rdfs:label": "hasCredential",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:study",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical study or trial related to this entity.",
+ "rdfs:label": "study",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalStudy"
+ }
+ },
+ {
+ "@id": "schema:Enumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Lists or enumerations—for example, a list of cuisines or music genres, etc.",
+ "rdfs:label": "Enumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:CoOp",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: CoOp. Co-operative games, where you play on the same team with friends.",
+ "rdfs:label": "CoOp"
+ },
+ {
+ "@id": "schema:screenCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of screens in the movie theater.",
+ "rdfs:label": "screenCount",
+ "schema:domainIncludes": {
+ "@id": "schema:MovieTheater"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:gtin8",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin8",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:embeddedTextCaption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents textual captioning from a [[MediaObject]], e.g. text of a 'meme'.",
+ "rdfs:label": "embeddedTextCaption",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:caption"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:AudioObject"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:offerCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of offers for the product.",
+ "rdfs:label": "offerCount",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateOffer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:3DModel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A 3D model represents some kind of 3D content, which may have [[encoding]]s in one or more [[MediaObject]]s. Many 3D formats are available (e.g. see [Wikipedia](https://en.wikipedia.org/wiki/Category:3D_graphics_file_formats)); specific encoding formats can be represented using the [[encodingFormat]] property applied to the relevant [[MediaObject]]. For the\ncase of a single file published after Zip compression, the convention of appending '+zip' to the [[encodingFormat]] can be used. Geospatial, AR/VR, artistic/animation, gaming, engineering and scientific content can all be represented using [[3DModel]].",
+ "rdfs:label": "3DModel",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2140"
+ }
+ },
+ {
+ "@id": "schema:spatialCoverage",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:spatial"
+ },
+ "rdfs:comment": "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.",
+ "rdfs:label": "spatialCoverage",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:contentLocation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:address",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Physical address of the item.",
+ "rdfs:label": "address",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BackgroundNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[NewsArticle]] providing historical context, definition and detail on a specific topic (aka \"explainer\" or \"backgrounder\"). For example, an in-depth article or frequently-asked-questions ([FAQ](https://en.wikipedia.org/wiki/FAQ)) document on topics such as Climate Change or the European Union. Other kinds of background material from a non-news setting are often described using [[Book]] or [[Article]], in particular [[ScholarlyArticle]]. See also [[NewsArticle]] for related vocabulary from a learning/education perspective.",
+ "rdfs:label": "BackgroundNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:shippingOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the origin of a shipment, i.e. where it should be coming from.",
+ "rdfs:label": "shippingOrigin",
+ "schema:domainIncludes": {
+ "@id": "schema:OfferShippingDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3122"
+ }
+ },
+ {
+ "@id": "schema:question",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. A question.",
+ "rdfs:label": "question",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:AskAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Question"
+ }
+ },
+ {
+ "@id": "schema:exercisePlan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The exercise plan used on this action.",
+ "rdfs:label": "exercisePlan",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ExercisePlan"
+ }
+ },
+ {
+ "@id": "schema:reservationFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The thing -- flight, event, restaurant, etc. being reserved.",
+ "rdfs:label": "reservationFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:Diet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.",
+ "rdfs:label": "Diet",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:LifestyleModification"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:sensoryUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The neurological pathway extension that inputs and sends information to the brain or spinal cord.",
+ "rdfs:label": "sensoryUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalStructure"
+ },
+ {
+ "@id": "schema:SuperficialAnatomy"
+ }
+ ]
+ },
+ {
+ "@id": "schema:House",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/House).",
+ "rdfs:label": "House",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:healthPlanMarketingUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL that goes directly to the plan brochure for the specific standard plan or plan variation.",
+ "rdfs:label": "healthPlanMarketingUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:Course",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A description of an educational course which may be offered as distinct instances which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.",
+ "rdfs:label": "Course",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:LearningResource"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoMidpoint",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the GeoCoordinates at the centre of a GeoShape, e.g. GeoCircle.",
+ "rdfs:label": "geoMidpoint",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoCircle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:GeoCoordinates"
+ }
+ },
+ {
+ "@id": "schema:DrugCostCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated categories of medical drug costs.",
+ "rdfs:label": "DrugCostCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:maxPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The highest price if the price is a range.",
+ "rdfs:label": "maxPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:GamePlayMode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player.",
+ "rdfs:label": "GamePlayMode",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:InStock",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is in stock.",
+ "rdfs:label": "InStock"
+ },
+ {
+ "@id": "schema:SolveMathAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.",
+ "rdfs:label": "SolveMathAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
+ }
+ },
+ {
+ "@id": "schema:speed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by [[maxValue]]) should be the maximum speed achievable under regular conditions.\\n\\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\\n\\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\\n* Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the [[valueReference]] property.",
+ "rdfs:label": "speed",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:Volcano",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A volcano, like Fujisan.",
+ "rdfs:label": "Volcano",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:geo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geo coordinates of the place.",
+ "rdfs:label": "geo",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:GeoShape"
+ }
+ ]
+ },
+ {
+ "@id": "schema:paymentMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of the credit card or other method of payment for the order.",
+ "rdfs:label": "paymentMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PaymentMethod"
+ }
+ },
+ {
+ "@id": "schema:loanRepaymentForm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A form of paying back money previously borrowed from a lender. Repayment usually takes the form of periodic payments that normally include part principal plus interest in each payment.",
+ "rdfs:label": "loanRepaymentForm",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:usedToDiagnose",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A condition the test is used to diagnose.",
+ "rdfs:label": "usedToDiagnose",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
+ }
+ },
+ {
+ "@id": "schema:blogPost",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A posting that is part of this blog.",
+ "rdfs:label": "blogPost",
+ "schema:domainIncludes": {
+ "@id": "schema:Blog"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BlogPosting"
+ }
+ },
+ {
+ "@id": "schema:RentalVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the vehicle as a rental car.",
+ "rdfs:label": "RentalVehicleUsage",
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:ViewAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming static visual content.",
+ "rdfs:label": "ViewAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:NonprofitANBI",
+ "@type": "schema:NLNonprofitType",
+ "rdfs:comment": "NonprofitANBI: Non-profit type referring to a Public Benefit Organization (NL).",
+ "rdfs:label": "NonprofitANBI",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:unitText",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.",
+ "rdfs:label": "unitText",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c22",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds.",
+ "rdfs:label": "Nonprofit501c22",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:releaseDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The release date of a product or product model. This can be used to distinguish the exact variant of a product.",
+ "rdfs:label": "releaseDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:runtime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Runtime platform or script interpreter dependencies (example: Java v1, Python 2.3, .NET Framework 3.0).",
+ "rdfs:label": "runtime",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:runtimePlatform"
+ }
+ },
+ {
+ "@id": "schema:monthsOfExperience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the minimal number of months of experience required for a position.",
+ "rdfs:label": "monthsOfExperience",
+ "schema:domainIncludes": {
+ "@id": "schema:OccupationalExperienceRequirements"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
+ }
+ },
+ {
+ "@id": "schema:DefinedTerm",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.",
+ "rdfs:label": "DefinedTerm",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:Clinician",
+ "@type": "schema:MedicalAudienceType",
+ "rdfs:comment": "Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.",
+ "rdfs:label": "Clinician",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SoftwareApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A software application.",
+ "rdfs:label": "SoftwareApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:PawnShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shop that will buy, or lend money against the security of, personal possessions.",
+ "rdfs:label": "PawnShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:jurisdiction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.",
+ "rdfs:label": "jurisdiction",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Legislation"
+ },
+ {
+ "@id": "schema:GovernmentService"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AdministrativeArea"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:AchieveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.",
+ "rdfs:label": "AchieveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:brand",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
+ "rdfs:label": "brand",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DanceEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: A social dance.",
+ "rdfs:label": "DanceEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:rxcui",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The RxCUI drug identifier from RXNORM.",
+ "rdfs:label": "rxcui",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:CategoryCodeSet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of Category Code values.",
+ "rdfs:label": "CategoryCodeSet",
+ "rdfs:subClassOf": {
+ "@id": "schema:DefinedTermSet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501k",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501k: Non-profit type referring to Child Care Organizations.",
+ "rdfs:label": "Nonprofit501k",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:saturatedFatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of saturated fat.",
+ "rdfs:label": "saturatedFatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:followup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Typical or recommended followup care after the procedure is performed.",
+ "rdfs:label": "followup",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PregnancyHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content discussing pregnancy-related aspects of a health topic.",
+ "rdfs:label": "PregnancyHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:endorsee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The person/organization being supported.",
+ "rdfs:label": "endorsee",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:EndorseAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MobileWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of 'mobile' browsers as a Web Platform.",
+ "rdfs:label": "MobileWebPlatform",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:ApprovedIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.",
+ "rdfs:label": "ApprovedIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:employmentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).",
+ "rdfs:label": "employmentType",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:LegalValueLevel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible levels for the legal validity of a legislation.",
+ "rdfs:label": "LegalValueLevel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue"
+ }
+ },
+ {
+ "@id": "schema:numberOfItems",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.",
+ "rdfs:label": "numberOfItems",
+ "schema:domainIncludes": {
+ "@id": "schema:ItemList"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:returnFees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return fees for purchased products (for any return reason).",
+ "rdfs:label": "returnFees",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnFeesEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:acquiredFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization or person from which the product was acquired.",
+ "rdfs:label": "acquiredFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:OwnershipInfo"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:openingHoursSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The opening hours of a certain place.",
+ "rdfs:label": "openingHoursSpecification",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:linkRelationship",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the relationship type of a Web link. ",
+ "rdfs:label": "linkRelationship",
+ "schema:domainIncludes": {
+ "@id": "schema:LinkRole"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1045"
+ }
+ },
+ {
+ "@id": "schema:MedicalGuidelineContraindication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.",
+ "rdfs:label": "MedicalGuidelineContraindication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:accessMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).",
+ "rdfs:label": "accessMode",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
+ }
+ },
+ {
+ "@id": "schema:GolfCourse",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A golf course.",
+ "rdfs:label": "GolfCourse",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:CarUsageType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.",
+ "rdfs:label": "CarUsageType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:mealService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of the meals that will be provided or available for purchase.",
+ "rdfs:label": "mealService",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:BefriendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.",
+ "rdfs:label": "BefriendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:Motel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motel.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Motel",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ }
+ },
+ {
+ "@id": "schema:EatAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of swallowing solid objects.",
+ "rdfs:label": "EatAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:subEvents",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.",
+ "rdfs:label": "subEvents",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:subEvent"
+ }
+ },
+ {
+ "@id": "schema:OrderProcessing",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order is being processed.",
+ "rdfs:label": "OrderProcessing"
+ },
+ {
+ "@id": "schema:FullRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that a refund can be done in the full amount the customer paid for the product.",
+ "rdfs:label": "FullRefund",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:PreventionIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An indication for preventing an underlying condition, symptom, etc.",
+ "rdfs:label": "PreventionIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:mileageFromOdometer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\\n\\nTypical unit code(s): KMT for kilometers, SMI for statute miles",
+ "rdfs:label": "mileageFromOdometer",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:MolecularEntity",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.",
+ "rdfs:label": "MolecularEntity",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:postalCodeEnd",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Last postal code in the range (included). Needs to be after [[postalCodeBegin]].",
+ "rdfs:label": "postalCodeEnd",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalCodeRangeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:recipe",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The recipe/instructions used to perform the action.",
+ "rdfs:label": "recipe",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CookAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Recipe"
+ }
+ },
+ {
+ "@id": "schema:FAQPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).",
+ "rdfs:label": "FAQPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1723"
+ }
+ },
+ {
+ "@id": "schema:surface",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.",
+ "rdfs:label": "surface",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:material"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:artworkSurface"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementInsideLeg",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Inside leg (measured between crotch and soles of feet). Used, for example, to fit pants.",
+ "rdfs:label": "BodyMeasurementInsideLeg",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ReportageNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing\n news articles which are the result of journalistic news reporting conventions.\n\nIn practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements.\n\nThe [[ReportageNewsArticle]] type is based on a stricter ideal for \"news\" as a work of journalism, with articles based on factual information either observed or verified by the author, or reported and verified from knowledgeable sources. This often includes perspectives from multiple viewpoints on a particular issue (distinguishing news reports from public relations or propaganda). News reports in the [[ReportageNewsArticle]] sense de-emphasize the opinion of the author, with commentary and value judgements typically expressed elsewhere.\n\nA [[ReportageNewsArticle]] which goes deeper into analysis can also be marked with an additional type of [[AnalysisNewsArticle]].\n",
+ "rdfs:label": "ReportageNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MerchantReturnEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several kinds of product return policies.",
+ "rdfs:label": "MerchantReturnEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:urlTemplate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An url template (RFC6570) that will be used to construct the target of the execution of the action.",
+ "rdfs:label": "urlTemplate",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryF",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryF",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:TobaccoNicotineConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item contains tobacco and/or nicotine, for example cigars, cigarettes, chewing tobacco, e-cigarettes, or hookahs.",
+ "rdfs:label": "TobaccoNicotineConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:MinimumAdvertisedPrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the minimum advertised price (\"MAP\") (as dictated by the manufacturer) of an offered product.",
+ "rdfs:label": "MinimumAdvertisedPrice",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:nonprofitStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business.",
+ "rdfs:label": "nonprofitStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:NonprofitType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:broadcastServiceTier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of service required to have access to the channel (e.g. Standard or Premium).",
+ "rdfs:label": "broadcastServiceTier",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:CardiovascularExam",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Cardiovascular system assessment with clinical examination.",
+ "rdfs:label": "CardiovascularExam",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:QuantitativeValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": " A point value or interval for product characteristics and other purposes.",
+ "rdfs:label": "QuantitativeValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:issn",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/issn"
+ },
+ "rdfs:comment": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
+ "rdfs:label": "issn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:WebSite"
+ },
+ {
+ "@id": "schema:Blog"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:PerformingGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A performance group, such as a band, an orchestra, or a circus.",
+ "rdfs:label": "PerformingGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemEurope",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "European size system for wearables.",
+ "rdfs:label": "WearableSizeSystemEurope",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:hasOccupation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Person's occupation. For past professions, use Role for expressing dates.",
+ "rdfs:label": "hasOccupation",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Occupation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:inChI",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "Non-proprietary identifier for molecular entity that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations.",
+ "rdfs:label": "inChI",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Blog",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [blog](https://en.wikipedia.org/wiki/Blog), sometimes known as a \"weblog\". Note that the individual posts ([[BlogPosting]]s) in a [[Blog]] are often colloquially referred to by the same term.",
+ "rdfs:label": "Blog",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:originalMediaContextDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Describes, in a [[MediaReview]] when dealing with [[DecontextualizedContent]], background information that can contribute to better interpretation of the [[MediaObject]].",
+ "rdfs:label": "originalMediaContextDescription",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReview"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:exerciseType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.",
+ "rdfs:label": "exerciseType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ExerciseAction"
+ },
+ {
+ "@id": "schema:ExercisePlan"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DeleteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of editing a recipient by removing one of its objects.",
+ "rdfs:label": "DeleteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UpdateAction"
+ }
+ },
+ {
+ "@id": "schema:GroupBoardingPolicy",
+ "@type": "schema:BoardingPolicyType",
+ "rdfs:comment": "The airline boards by groups based on check-in time, priority, etc.",
+ "rdfs:label": "GroupBoardingPolicy"
+ },
+ {
+ "@id": "schema:arrivalBoatTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The terminal or port from which the boat arrives.",
+ "rdfs:label": "arrivalBoatTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:BoatTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BoatTerminal"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:BikeStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bike store.",
+ "rdfs:label": "BikeStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:OnSitePickup",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.",
+ "rdfs:label": "OnSitePickup"
+ },
+ {
+ "@id": "schema:editEIDR",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" whose [[titleEIDR]] is \"10.5240/7EC7-228A-510A-053E-CBB8-J\" has several edits, e.g. \"10.5240/1F2A-E1C5-680A-14C6-E76B-I\" and \"10.5240/8A35-3BEE-6497-5D12-9E4F-3\".\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
+ "rdfs:label": "editEIDR",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2469"
+ }
+ },
+ {
+ "@id": "schema:uploadDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date when this media object was uploaded to this site.",
+ "rdfs:label": "uploadDate",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:HighSchool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A high school.",
+ "rdfs:label": "HighSchool",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:originAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Shipper's address.",
+ "rdfs:label": "originAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:Synagogue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A synagogue.",
+ "rdfs:label": "Synagogue",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:PalliativeProcedure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.",
+ "rdfs:label": "PalliativeProcedure",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:MedicalTherapy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Optician",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A store that sells reading glasses and similar devices for improving vision.",
+ "rdfs:label": "Optician",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:executableLibraryName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Library file name, e.g., mscorlib.dll, system.web.dll.",
+ "rdfs:label": "executableLibraryName",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:printSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.",
+ "rdfs:label": "printSection",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:productionDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date of production of the item, e.g. vehicle.",
+ "rdfs:label": "productionDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Vehicle"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:numAdults",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of adults staying in the unit.",
+ "rdfs:label": "numAdults",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberOfBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.",
+ "rdfs:label": "numberOfBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:BedDetails"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:TelevisionChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.",
+ "rdfs:label": "TelevisionChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:BroadcastChannel"
+ }
+ },
+ {
+ "@id": "schema:MedicalStudy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.",
+ "rdfs:label": "MedicalStudy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:readBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person who reads (performs) the audiobook.",
+ "rdfs:label": "readBy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:actor"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Audiobook"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:GenericWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the generic notion of the Web Platform. More specific codes include [[MobileWebPlatform]] and [[DesktopWebPlatform]], as an incomplete list. ",
+ "rdfs:label": "GenericWebPlatform",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:hasMolecularFunction",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Molecular function performed by this BioChemEntity; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "hasMolecularFunction",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PublicationVolume",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "PublicationVolume",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:geoDisjoint",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: \"they have no point in common. They form a set of disconnected geometries.\" (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)",
+ "rdfs:label": "geoDisjoint",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ShippingDeliveryTime",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "ShippingDeliveryTime provides various pieces of information about delivery times for shipping.",
+ "rdfs:label": "ShippingDeliveryTime",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:UnitPriceSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The price asked for a given offer by the respective organization or person.",
+ "rdfs:label": "UnitPriceSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:netWorth",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total financial value of the person as calculated by subtracting assets from liabilities.",
+ "rdfs:label": "netWorth",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ]
+ },
+ {
+ "@id": "schema:guideline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical guideline related to this entity.",
+ "rdfs:label": "guideline",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalGuideline"
+ }
+ },
+ {
+ "@id": "schema:byDay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the day(s) of the week on which a recurring [[Event]] takes place. May be specified using either [[DayOfWeek]], or alternatively [[Text]] conforming to iCal's syntax for byDay recurrence rules.",
+ "rdfs:label": "byDay",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DayOfWeek"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:totalJobOpenings",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known.",
+ "rdfs:label": "totalJobOpenings",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2329"
+ }
+ },
+ {
+ "@id": "schema:broadcastDisplayName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name displayed in the channel guide. For many US affiliates, it is the network name.",
+ "rdfs:label": "broadcastDisplayName",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:accessCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Password, PIN, or access code needed for delivery (e.g. from a locker).",
+ "rdfs:label": "accessCode",
+ "schema:domainIncludes": {
+ "@id": "schema:DeliveryEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:estimatesRiskOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The condition, complication, or symptom whose risk is being estimated.",
+ "rdfs:label": "estimatesRiskOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
+ }
+ },
+ {
+ "@id": "schema:usageInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information, e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.\n\nThis property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.",
+ "rdfs:label": "usageInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2454"
+ }
+ },
+ {
+ "@id": "schema:installUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "URL at which the app may be installed, if different from the URL of the item.",
+ "rdfs:label": "installUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:knownVehicleDamages",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A textual description of known damages, both repaired and unrepaired.",
+ "rdfs:label": "knownVehicleDamages",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:RadioClip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short radio program or a segment/part of a radio program.",
+ "rdfs:label": "RadioClip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Clip"
+ }
+ },
+ {
+ "@id": "schema:MedicalImagingTechnique",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes. Enumerated type.",
+ "rdfs:label": "MedicalImagingTechnique",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size systems specific for wearable products",
+ "rdfs:label": "WearableSizeSystemEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:SizeSystemEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501d",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations.",
+ "rdfs:label": "Nonprofit501d",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:HowOrWhereHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about how or where to find a topic. Also may contain location data that can be used for where to look for help if the topic is observed.",
+ "rdfs:label": "HowOrWhereHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:TechArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.",
+ "rdfs:label": "TechArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:Otolaryngologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.",
+ "rdfs:label": "Otolaryngologic",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:PreSale",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available for ordering and delivery before general availability.",
+ "rdfs:label": "PreSale"
+ },
+ {
+ "@id": "schema:Hostel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hostel - cheap accommodation, often in shared dormitories.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Hostel",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ }
+ },
+ {
+ "@id": "schema:PsychologicalTreatment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs.",
+ "rdfs:label": "PsychologicalTreatment",
+ "rdfs:subClassOf": {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:salaryCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217)) used for the main salary information in this job posting or for this employee.",
+ "rdfs:label": "salaryCurrency",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:EmployeeRole"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:homeTeam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The home team in a sports event.",
+ "rdfs:label": "homeTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:competitor"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SportsEvent"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PerformAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of participating in performance arts.",
+ "rdfs:label": "PerformAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlayAction"
+ }
+ },
+ {
+ "@id": "schema:PreOrder",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available for pre-order.",
+ "rdfs:label": "PreOrder"
+ },
+ {
+ "@id": "schema:byMonthDay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31.",
+ "rdfs:label": "byMonthDay",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:isLiveBroadcast",
+ "@type": "rdf:Property",
+ "rdfs:comment": "True if the broadcast is of a live event.",
+ "rdfs:label": "isLiveBroadcast",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:SizeSystemEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size systems for different categories of products, for example \"EN-13402\" or \"UK\" for wearables or \"Imperial\" for screws.",
+ "rdfs:label": "SizeSystemEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:repeatCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the number of times a recurring [[Event]] will take place.",
+ "rdfs:label": "repeatCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:ChildrensEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Children's event.",
+ "rdfs:label": "ChildrensEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:servingSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The serving size, in terms of the number of volume or mass.",
+ "rdfs:label": "servingSize",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:foodEstablishment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The specific food establishment where the action occurred.",
+ "rdfs:label": "foodEstablishment",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CookAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:FoodEstablishment"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:candidate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The candidate subject of this action.",
+ "rdfs:label": "candidate",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:VoteAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:VideoObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A video file.",
+ "rdfs:label": "VideoObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:AuthoritativeLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates that the publisher gives some special status to the publication of the document. (\"The Queens Printer\" version of a UK Act of Parliament, or the PDF version of a Directive published by the EU Office of Publications.) Something \"Authoritative\" is considered to be also [[OfficialLegalValue]].",
+ "rdfs:label": "AuthoritativeLegalValue",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-authoritative"
+ }
+ },
+ {
+ "@id": "schema:language",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The language used on this action.",
+ "rdfs:label": "language",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CommunicateAction"
+ },
+ {
+ "@id": "schema:WriteAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Language"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:inLanguage"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemFR",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "French size system for wearables.",
+ "rdfs:label": "WearableSizeSystemFR",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:BroadcastRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "BroadcastRelease.",
+ "rdfs:label": "BroadcastRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:TaxiService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.",
+ "rdfs:label": "TaxiService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:TattooParlor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tattoo parlor.",
+ "rdfs:label": "TattooParlor",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:includesHealthPlanFormulary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Formularies covered by this plan.",
+ "rdfs:label": "includesHealthPlanFormulary",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthPlanFormulary"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:petsAllowed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.",
+ "rdfs:label": "petsAllowed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:appliesToDeliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The delivery method(s) to which the delivery charge or payment charge specification applies.",
+ "rdfs:label": "appliesToDeliveryMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:PaymentChargeSpecification"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:contactPoint",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contact point for a person or organization.",
+ "rdfs:label": "contactPoint",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:HealthInsurancePlan"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ }
+ },
+ {
+ "@id": "schema:EnergyStarCertified",
+ "@type": "schema:EnergyStarEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EnergyStar certification.",
+ "rdfs:label": "EnergyStarCertified",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:SendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of physically/electronically dispatching an object for transfer from an origin to a destination. Related actions:\\n\\n* [[ReceiveAction]]: The reciprocal of SendAction.\\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).",
+ "rdfs:label": "SendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:alcoholWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.",
+ "rdfs:label": "alcoholWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Demand",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.",
+ "rdfs:label": "Demand",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:relatedTherapy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical therapy related to this anatomy.",
+ "rdfs:label": "relatedTherapy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:AnatomicalStructure"
+ },
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:PaymentMethod",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n* http://purl.org/goodrelations/v1#ByInvoice\\n* http://purl.org/goodrelations/v1#Cash\\n* http://purl.org/goodrelations/v1#CheckInAdvance\\n* http://purl.org/goodrelations/v1#COD\\n* http://purl.org/goodrelations/v1#DirectDebit\\n* http://purl.org/goodrelations/v1#GoogleCheckout\\n* http://purl.org/goodrelations/v1#PayPal\\n* http://purl.org/goodrelations/v1#PaySwarm\n ",
+ "rdfs:label": "PaymentMethod",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:hasHealthAspect",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the aspect or aspects specifically addressed in some [[HealthTopicContent]]. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects.",
+ "rdfs:label": "hasHealthAspect",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthTopicContent"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthAspectEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:DrugPregnancyCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.",
+ "rdfs:label": "DrugPregnancyCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:educationalProgramMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Similar to courseMode, the medium or means of delivery of the program as a whole. The value may either be a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).",
+ "rdfs:label": "educationalProgramMode",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:ineligibleRegion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.\\n\\nSee also [[eligibleRegion]].\n ",
+ "rdfs:label": "ineligibleRegion",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2242"
+ }
+ },
+ {
+ "@id": "schema:BankAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.",
+ "rdfs:label": "BankAccount",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:subStructure",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Component (sub-)structure(s) that comprise this anatomical structure.",
+ "rdfs:label": "subStructure",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:SubscribeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.",
+ "rdfs:label": "SubscribeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:position",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The position of an item in a series or sequence of items.",
+ "rdfs:label": "position",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:encodingFormat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)), e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.\n\nIn cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.",
+ "rdfs:label": "encodingFormat",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Number",
+ "@type": [
+ "rdfs:Class",
+ "schema:DataType"
+ ],
+ "rdfs:comment": "Data type: Number.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "Number"
+ },
+ {
+ "@id": "schema:Waterfall",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A waterfall, like Niagara.",
+ "rdfs:label": "Waterfall",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:TakeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\\n\\nRelated actions:\\n\\n* [[GiveAction]]: The reciprocal of TakeAction.\\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transferred.",
+ "rdfs:label": "TakeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:dateVehicleFirstRegistered",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date of the first registration of the vehicle with the respective public authorities.",
+ "rdfs:label": "dateVehicleFirstRegistered",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:State",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A state or province of a country.",
+ "rdfs:label": "State",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:ReturnFeesCustomerResponsibility",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that product returns must be paid for, and are the responsibility of, the customer.",
+ "rdfs:label": "ReturnFeesCustomerResponsibility",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:audienceType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).",
+ "rdfs:label": "audienceType",
+ "schema:domainIncludes": {
+ "@id": "schema:Audience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:drugClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The class of drug this belongs to (e.g., statins).",
+ "rdfs:label": "drugClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugClass"
+ }
+ },
+ {
+ "@id": "schema:code",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.",
+ "rdfs:label": "code",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCode"
+ }
+ },
+ {
+ "@id": "schema:NewCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is new.",
+ "rdfs:label": "NewCondition"
+ },
+ {
+ "@id": "schema:LeaveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent leaves an event / group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: The antonym of LeaveAction.\\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.",
+ "rdfs:label": "LeaveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:priceSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
+ "rdfs:label": "priceSpecification",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:TradeAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:mainContentOfPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates if this web page element is the main subject of the page.",
+ "rdfs:label": "mainContentOfPage",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:copyrightYear",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The year during which the claimed copyright for the CreativeWork was first asserted.",
+ "rdfs:label": "copyrightYear",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:epidemiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The characteristics of associated patients, such as age, gender, race etc.",
+ "rdfs:label": "epidemiology",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PhysicalActivity"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AllocateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of organizing tasks/objects/events by associating resources to it.",
+ "rdfs:label": "AllocateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementChestOrBust",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the chest/bust section, for example of a suit",
+ "rdfs:label": "WearableMeasurementChestOrBust",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:geoIntersects",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoIntersects",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:flightDistance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The distance of the flight.",
+ "rdfs:label": "flightDistance",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ]
+ },
+ {
+ "@id": "schema:serviceLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location (e.g. civic structure, local business, etc.) where a person can go to access the service.",
+ "rdfs:label": "serviceLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:Property",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "rdf:Property"
+ },
+ "rdfs:comment": "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.",
+ "rdfs:label": "Property",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ }
+ },
+ {
+ "@id": "schema:TVSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Season dedicated to TV broadcast and associated online delivery.",
+ "rdfs:label": "TVSeason",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WPHeader",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The header section of the page.",
+ "rdfs:label": "WPHeader",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:recipeInstructions",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.",
+ "rdfs:label": "recipeInstructions",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:step"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:coverageEndTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.",
+ "rdfs:label": "coverageEndTime",
+ "schema:domainIncludes": {
+ "@id": "schema:LiveBlogPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c26",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals.",
+ "rdfs:label": "Nonprofit501c26",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:CreativeWorkSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media season, e.g. TV, radio, video game etc.",
+ "rdfs:label": "CreativeWorkSeason",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:ShoppingCenter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shopping center or mall.",
+ "rdfs:label": "ShoppingCenter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:partOfSeries",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The series to which this episode or season belongs.",
+ "rdfs:label": "partOfSeries",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ },
+ {
+ "@id": "schema:inProductGroupWithID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. ",
+ "rdfs:label": "inProductGroupWithID",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:MedicalCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A code for a medical entity.",
+ "rdfs:label": "MedicalCode",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalIntangible"
+ },
+ {
+ "@id": "schema:CategoryCode"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:valueMaxLength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the allowed range for number of characters in a literal value.",
+ "rdfs:label": "valueMaxLength",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:PronounceableText",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: PronounceableText.",
+ "rdfs:label": "PronounceableText",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:serviceOutput",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.",
+ "rdfs:label": "serviceOutput",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:TransformedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'transformed content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'transformed content': or all of the video has been manipulated to transform the footage itself. This category includes using tools like the Adobe Suite to change the speed of the video, add or remove visual elements or dub audio. Deepfakes are also a subset of transformation.\n\nFor an [[ImageObject]] to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[ImageObject]] with embedded text to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[AudioObject]] to be 'transformed content': Part or all of the audio has been manipulated to alter the words or sounds, or the audio has been synthetically generated, such as to create a sound-alike voice.\n",
+ "rdfs:label": "TransformedContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:distance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The distance travelled, e.g. exercising or travelling.",
+ "rdfs:label": "distance",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ExerciseAction"
+ },
+ {
+ "@id": "schema:TravelAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Distance"
+ }
+ },
+ {
+ "@id": "schema:inBroadcastLineup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CableOrSatelliteService offering the channel.",
+ "rdfs:label": "inBroadcastLineup",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CableOrSatelliteService"
+ }
+ },
+ {
+ "@id": "schema:scheduledPaymentDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date the invoice is scheduled to be paid.",
+ "rdfs:label": "scheduledPaymentDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
+ },
+ {
+ "@id": "schema:dateRead",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date/time at which the message has been read by the recipient if a single recipient exists.",
+ "rdfs:label": "dateRead",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MotorcycleRepair",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorcycle repair shop.",
+ "rdfs:label": "MotorcycleRepair",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:ActiveActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An in-progress action (e.g., while watching the movie, or driving to a location).",
+ "rdfs:label": "ActiveActionStatus"
+ },
+ {
+ "@id": "schema:WorkBasedProgram",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs.",
+ "rdfs:label": "WorkBasedProgram",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:MedicalCondition",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.",
+ "rdfs:label": "MedicalCondition",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:entertainmentBusiness",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The entertainment business where the action occurred.",
+ "rdfs:label": "entertainmentBusiness",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:PerformAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:inCodeSet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[CategoryCodeSet]] that contains this category code.",
+ "rdfs:label": "inCodeSet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:inDefinedTermSet"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CategoryCode"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CategoryCodeSet"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:homeLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contact location for a person's residence.",
+ "rdfs:label": "homeLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DefinedRegion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A DefinedRegion is a geographic area defined by potentially arbitrary (rather than political, administrative or natural geographical) criteria. Properties are provided for defining a region by reference to sets of postal codes.\n\nExamples: a delivery destination when shopping. Region where regional pricing is configured.\n\nRequirement 1:\nCountry: US\nStates: \"NY\", \"CA\"\n\nRequirement 2:\nCountry: US\nPostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]}\n{ [12345, 12345], [78945, 78945], }\nRegion = state, canton, prefecture, autonomous community...\n",
+ "rdfs:label": "DefinedRegion",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:Distillery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A distillery.",
+ "rdfs:label": "Distillery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/743"
+ }
+ },
+ {
+ "@id": "schema:downvoteCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of downvotes this question, answer or comment has received from the community.",
+ "rdfs:label": "downvoteCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Comment"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:weightTotal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "weightTotal",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:BusOrCoach",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel.",
+ "rdfs:label": "BusOrCoach",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:includedRiskFactor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.",
+ "rdfs:label": "includedRiskFactor",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalRiskFactor"
+ }
+ },
+ {
+ "@id": "schema:recourseLoan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The only way you get the money back in the event of default is the security. Recourse is where you still have the opportunity to go back to the borrower for the rest of the money.",
+ "rdfs:label": "recourseLoan",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TransferAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.",
+ "rdfs:label": "TransferAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:applicationContact",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Contact details for further information relevant to this job posting.",
+ "rdfs:label": "applicationContact",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2396"
+ }
+ },
+ {
+ "@id": "schema:isPlanForApartment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates some accommodation that this floor plan describes.",
+ "rdfs:label": "isPlanForApartment",
+ "schema:domainIncludes": {
+ "@id": "schema:FloorPlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:experienceInPlaceOfEducation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether a [[JobPosting]] will accept experience (as indicated by [[OccupationalExperienceRequirements]]) in place of its formal educational qualifications (as indicated by [[educationRequirements]]). If true, indicates that satisfying one of these requirements is sufficient.",
+ "rdfs:label": "experienceInPlaceOfEducation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
+ }
+ },
+ {
+ "@id": "schema:customerRemorseReturnLabelSource",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned due to customer remorse.",
+ "rdfs:label": "customerRemorseReturnLabelSource",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnLabelSourceEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:performTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "performTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowTo"
+ },
+ {
+ "@id": "schema:HowToDirection"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementHips",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of hips (measured around the buttocks). Used, for example, to fit skirts.",
+ "rdfs:label": "BodyMeasurementHips",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:performers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The main performer or performers of the event—for example, a presenter, musician, or actor.",
+ "rdfs:label": "performers",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:performer"
+ }
+ },
+ {
+ "@id": "schema:Researcher",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Researchers.",
+ "rdfs:label": "Researcher",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:costCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category of cost, such as wholesale, retail, reimbursement cap, etc.",
+ "rdfs:label": "costCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugCostCategory"
+ }
+ },
+ {
+ "@id": "schema:IOSPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of iOS-based operating systems.",
+ "rdfs:label": "IOSPlatform",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:transitTimeLabel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).",
+ "rdfs:label": "transitTimeLabel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:referencesOrder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice.",
+ "rdfs:label": "referencesOrder",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Order"
+ }
+ },
+ {
+ "@id": "schema:validFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date when the item becomes valid.",
+ "rdfs:label": "validFrom",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ {
+ "@id": "schema:Permit"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Quiz",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Quiz: A test of knowledge, skills and abilities.",
+ "rdfs:label": "Quiz",
+ "rdfs:subClassOf": {
+ "@id": "schema:LearningResource"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2611"
+ }
+ },
+ {
+ "@id": "schema:latitude",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).",
+ "rdfs:label": "latitude",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:valueRequired",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the property must be filled in to complete the action. Default is false.",
+ "rdfs:label": "valueRequired",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:LowFatDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced fat and cholesterol intake.",
+ "rdfs:label": "LowFatDiet"
+ },
+ {
+ "@id": "schema:Airline",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An organization that provides flights for passengers.",
+ "rdfs:label": "Airline",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:eligibleTransactionVolume",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.",
+ "rdfs:label": "eligibleTransactionVolume",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Chiropractic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.",
+ "rdfs:label": "Chiropractic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasDigitalDocumentPermission",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".",
+ "rdfs:label": "hasDigitalDocumentPermission",
+ "schema:domainIncludes": {
+ "@id": "schema:DigitalDocument"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DigitalDocumentPermission"
+ }
+ },
+ {
+ "@id": "schema:WesternConventional",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.",
+ "rdfs:label": "WesternConventional",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ConsumeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of ingesting information/resources/food.",
+ "rdfs:label": "ConsumeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnUnspecified",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that a product return policy is not provided.",
+ "rdfs:label": "MerchantReturnUnspecified",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:mainEntity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the primary entity described in some page or other CreativeWork.",
+ "rdfs:label": "mainEntity",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:about"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:mainEntityOfPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:referenceQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The reference quantity for which a certain price applies, e.g. 1 EUR per 4 kWh of electricity. This property is a replacement for unitOfMeasurement for the advanced cases where the price does not relate to a standard unit.",
+ "rdfs:label": "referenceQuantity",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ReceiveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\\n\\nRelated actions:\\n\\n* [[SendAction]]: The reciprocal of ReceiveAction.\\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transferred (e.g. I can receive a package, but it does not mean the package is now mine).",
+ "rdfs:label": "ReceiveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:memoryRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Minimum memory requirements.",
+ "rdfs:label": "memoryRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:InfectiousAgentClass",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Classes of agents or pathogens that transmit infectious diseases. Enumerated type.",
+ "rdfs:label": "InfectiousAgentClass",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ReplyAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of responding to a question/message asked/sent by the object. Related to [[AskAction]].\\n\\nRelated actions:\\n\\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.",
+ "rdfs:label": "ReplyAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:RightHandDriving",
+ "@type": "schema:SteeringPositionValue",
+ "rdfs:comment": "The steering position is on the right side of the vehicle (viewed from the main direction of driving).",
+ "rdfs:label": "RightHandDriving",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:SearchAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of searching for an object.\\n\\nRelated actions:\\n\\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.",
+ "rdfs:label": "SearchAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:InternationalTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "An international trial.",
+ "rdfs:label": "InternationalTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:maximumAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total number of individuals that may attend an event or venue.",
+ "rdfs:label": "maximumAttendeeCapacity",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskCalculator",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.",
+ "rdfs:label": "MedicalRiskCalculator",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MovieTheater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A movie theater.",
+ "rdfs:label": "MovieTheater",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CivicStructure"
+ },
+ {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:dateSent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date/time at which the message was sent.",
+ "rdfs:label": "dateSent",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:creator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.",
+ "rdfs:label": "creator",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:UserComments"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:speakable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use the [[cssSelector]] property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.\n\n\nFor more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this\nwe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.\n ",
+ "rdfs:label": "speakable",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Article"
+ },
+ {
+ "@id": "schema:WebPage"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ }
+ },
+ {
+ "@id": "schema:ShippingRateSettings",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A ShippingRateSettings represents re-usable pieces of shipping information. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished and matched (i.e. identified/referenced) by their different values for [[shippingLabel]].",
+ "rdfs:label": "ShippingRateSettings",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:RsvpResponseMaybe",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee may or may not attend.",
+ "rdfs:label": "RsvpResponseMaybe"
+ },
+ {
+ "@id": "schema:discountCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Code used to redeem a discount.",
+ "rdfs:label": "discountCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:description",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:description"
+ },
+ "rdfs:comment": "A description of the item.",
+ "rdfs:label": "description",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Ear",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Ear function assessment with clinical examination.",
+ "rdfs:label": "Ear",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:WearAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of dressing oneself in clothing.",
+ "rdfs:label": "WearAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UseAction"
+ }
+ },
+ {
+ "@id": "schema:endOffset",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The end time of the clip expressed as the number of seconds from the beginning of the work.",
+ "rdfs:label": "endOffset",
+ "schema:domainIncludes": {
+ "@id": "schema:Clip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:HyperTocEntry"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2021"
+ }
+ },
+ {
+ "@id": "schema:BusReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for bus travel. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "BusReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:cvdNumVent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numvent - MECHANICAL VENTILATORS: Total number of ventilators available.",
+ "rdfs:label": "cvdNumVent",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:underName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person or organization the reservation or ticket is for.",
+ "rdfs:label": "underName",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Ticket"
+ },
+ {
+ "@id": "schema:Reservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ArchiveComponent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "ArchiveComponent"
+ },
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ }
+ },
+ {
+ "@id": "schema:loanMortgageMandateAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.",
+ "rdfs:label": "loanMortgageMandateAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MortgageLoan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:durationOfWarranty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.",
+ "rdfs:label": "durationOfWarranty",
+ "schema:domainIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Library",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A library.",
+ "rdfs:label": "Library",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnFiniteReturnWindow",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that there is a finite window for product returns.",
+ "rdfs:label": "MerchantReturnFiniteReturnWindow",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:ItemListOrderType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.",
+ "rdfs:label": "ItemListOrderType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:ratingCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The count of total number of ratings.",
+ "rdfs:label": "ratingCount",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateRating"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:SpecialAnnouncement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A SpecialAnnouncement combines a simple date-stamped textual information update\n with contextualized Web links and other structured data. It represents an information update made by a\n locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police,\n local government.\n\nFor work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#).\n\nThe motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org\nexpect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our\nusual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#).\n\n\nWhile this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover\nthe kinds of everyday practical information being posted to existing websites during an emergency situation.\n\nSeveral kinds of information can be provided:\n\nWe encourage the provision of \"name\", \"text\", \"datePosted\", \"expires\" (if appropriate), \"category\" and\n\"url\" as a simple baseline. It is important to provide a value for \"category\" where possible, most ideally as a well known\nURL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be \"https://en.wikipedia.org/w/index.php?title=2019-20\\_coronavirus\\_pandemic\" or \"https://www.wikidata.org/wiki/Q81068910\".\n\nFor many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple \"[[text]]\" summary of the page. It is\nunlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously.\n\nWe expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]].\n\nMany [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructure]]s. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]].\n\nThe [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only\nfor representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of [[about]] for locations too.\n\nThe basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting\n[[SpecialAnnouncement]] updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feed\nwith the [[webFeed]] property. This can be a simple URL, or an inline [[DataFeed]] object, with [[encodingFormat]] providing\nmedia type information, e.g. \"application/rss+xml\" or \"application/atom+xml\".\n",
+ "rdfs:label": "SpecialAnnouncement",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:EmployerReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[EmployerReview]] is a review of an [[Organization]] regarding its role as an employer, written by a current or former employee of that organization.",
+ "rdfs:label": "EmployerReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ }
+ },
+ {
+ "@id": "schema:datePosted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Publication date of an online listing.",
+ "rdfs:label": "datePosted",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:CDCPMDRecord"
+ },
+ {
+ "@id": "schema:RealEstateListing"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ ]
+ },
+ {
+ "@id": "schema:strengthUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The units of an active ingredient's strength, e.g. mg.",
+ "rdfs:label": "strengthUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugStrength"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:gender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/Male and https://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of \"Mixed\".",
+ "rdfs:label": "gender",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GenderType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2341"
+ }
+ },
+ {
+ "@id": "schema:produces",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.",
+ "rdfs:label": "produces",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:serviceOutput"
+ }
+ },
+ {
+ "@id": "schema:drainsTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The vasculature that the vein drains into.",
+ "rdfs:label": "drainsTo",
+ "schema:domainIncludes": {
+ "@id": "schema:Vein"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:hasOfferCatalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
+ "rdfs:label": "hasOfferCatalog",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:OfferCatalog"
+ }
+ },
+ {
+ "@id": "schema:WebContent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "WebContent is a type representing all [[WebPage]], [[WebSite]] and [[WebPageElement]] content. It is sometimes the case that detailed distinctions between Web pages, sites and their parts are not always important or obvious. The [[WebContent]] type makes it easier to describe Web-addressable content without requiring such distinctions to always be stated. (The intent is that the existing types [[WebPage]], [[WebSite]] and [[WebPageElement]] will eventually be declared as subtypes of [[WebContent]].)",
+ "rdfs:label": "WebContent",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2358"
+ }
+ },
+ {
+ "@id": "schema:RsvpResponseNo",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee will not attend.",
+ "rdfs:label": "RsvpResponseNo"
+ },
+ {
+ "@id": "schema:programmingLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The computer programming language.",
+ "rdfs:label": "programmingLanguage",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ComputerLanguage"
+ }
+ ]
+ },
+ {
+ "@id": "schema:follows",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most generic uni-directional social relation.",
+ "rdfs:label": "follows",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:shippingRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the [[MonetaryAmount]]) are most appropriate.",
+ "rdfs:label": "shippingRate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ShippingRateSettings"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:healthPlanDrugTier",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tier(s) of drugs offered by this formulary or insurance plan.",
+ "rdfs:label": "healthPlanDrugTier",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ {
+ "@id": "schema:HealthPlanFormulary"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:Reservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]].",
+ "rdfs:label": "Reservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:HyperTocEntry",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]].",
+ "rdfs:label": "HyperTocEntry",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:MedicalTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical test, typically performed for diagnostic purposes.",
+ "rdfs:label": "MedicalTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:backstory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For an [[Article]], typically a [[NewsArticle]], the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.",
+ "rdfs:label": "backstory",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:supply",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
+ "rdfs:label": "supply",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowTo"
+ },
+ {
+ "@id": "schema:HowToDirection"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:HowToSupply"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ratingValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The rating for the content.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "ratingValue",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:teaches",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.",
+ "rdfs:label": "teaches",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:EducationEvent"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2427"
+ }
+ },
+ {
+ "@id": "schema:SurgicalProcedure",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/387713003"
+ },
+ "rdfs:comment": "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.",
+ "rdfs:label": "SurgicalProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:GettingAccessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content that discusses practical and policy aspects for getting access to specific kinds of healthcare (e.g. distribution mechanisms for vaccines).",
+ "rdfs:label": "GettingAccessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:DataType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The basic data types such as Integers, Strings, etc.",
+ "rdfs:label": "DataType",
+ "rdfs:subClassOf": {
+ "@id": "rdfs:Class"
+ }
+ },
+ {
+ "@id": "schema:commentTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time at which the UserComment was made.",
+ "rdfs:label": "commentTime",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:VideoGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Video gallery page.",
+ "rdfs:label": "VideoGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaGallery"
+ }
+ },
+ {
+ "@id": "schema:departureGate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's departure gate.",
+ "rdfs:label": "departureGate",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Quantity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 kg' or '4 milligrams'.",
+ "rdfs:label": "Quantity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Series",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].",
+ "rdfs:label": "Series",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:orderDelivery",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The delivery of the parcel related to this order or order item.",
+ "rdfs:label": "orderDelivery",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Order"
+ },
+ {
+ "@id": "schema:OrderItem"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ParcelDelivery"
+ }
+ },
+ {
+ "@id": "schema:ScreeningEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A screening of a movie or other video.",
+ "rdfs:label": "ScreeningEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:geographicArea",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area associated with the audience.",
+ "rdfs:label": "geographicArea",
+ "schema:domainIncludes": {
+ "@id": "schema:Audience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:representativeOfPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether this image is representative of the content of the page.",
+ "rdfs:label": "representativeOfPage",
+ "schema:domainIncludes": {
+ "@id": "schema:ImageObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:AndroidPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of Android-based operating systems.",
+ "rdfs:label": "AndroidPlatform",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:Claim",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.\n\n Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholarlyArticle]] or [[Question]] might be [[about]] some [[Claim]].\n\n At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.\n ",
+ "rdfs:label": "Claim",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ }
+ },
+ {
+ "@id": "schema:firstPerformance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and place the work was first performed.",
+ "rdfs:label": "firstPerformance",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:healthPlanPharmacyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category or type of pharmacy associated with this cost sharing.",
+ "rdfs:label": "healthPlanPharmacyCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:numberOfAirbags",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number or type of airbags in the vehicle.",
+ "rdfs:label": "numberOfAirbags",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:deliveryStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).",
+ "rdfs:label": "deliveryStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryEvent"
+ }
+ },
+ {
+ "@id": "schema:DigitalDocumentPermissionType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of permission which can be granted for accessing a digital document.",
+ "rdfs:label": "DigitalDocumentPermissionType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:Mosque",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A mosque.",
+ "rdfs:label": "Mosque",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:percentile10",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 10th percentile value.",
+ "rdfs:label": "percentile10",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:LibrarySystem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[LibrarySystem]] is a collaborative system amongst several libraries.",
+ "rdfs:label": "LibrarySystem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1495"
+ }
+ },
+ {
+ "@id": "schema:Nerve",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.",
+ "rdfs:label": "Nerve",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:temporal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The \"temporal\" property can be used in cases where more specific properties\n(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.",
+ "rdfs:label": "temporal",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:size",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A standardized size of a product or creative work, specified either through a simple textual string (for example 'XL', '32Wx34L'), a QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable. ",
+ "rdfs:label": "size",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:SizeSpecification"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:Notary",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A notary.",
+ "rdfs:label": "Notary",
+ "rdfs:subClassOf": {
+ "@id": "schema:LegalService"
+ }
+ },
+ {
+ "@id": "schema:mpn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
+ "rdfs:label": "mpn",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:WatchAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming dynamic/moving visual content.",
+ "rdfs:label": "WatchAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:AutoWash",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A car wash business.",
+ "rdfs:label": "AutoWash",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:UsageOrScheduleHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about how, when, frequency and dosage of a topic.",
+ "rdfs:label": "UsageOrScheduleHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:menu",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
+ "rdfs:label": "menu",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Menu"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:hasMenu"
+ }
+ },
+ {
+ "@id": "schema:CommentAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of generating a comment about a subject.",
+ "rdfs:label": "CommentAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:ReturnMethodEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several types of product return methods.",
+ "rdfs:label": "ReturnMethodEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:cssSelector",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".",
+ "rdfs:label": "cssSelector",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:WebPageElement"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CssSelectorType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ }
+ },
+ {
+ "@id": "schema:JewelryStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A jewelry store.",
+ "rdfs:label": "JewelryStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Skin",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Skin assessment with clinical examination.",
+ "rdfs:label": "Skin",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:antagonist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The muscle whose action counteracts the specified muscle.",
+ "rdfs:label": "antagonist",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Muscle"
+ }
+ },
+ {
+ "@id": "schema:members",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A member of this organization.",
+ "rdfs:label": "members",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ProgramMembership"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:member"
+ }
+ },
+ {
+ "@id": "schema:ReviewAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.",
+ "rdfs:label": "ReviewAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:exchangeRateSpread",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The difference between the price at which a broker or other intermediary buys and sells foreign currency.",
+ "rdfs:label": "exchangeRateSpread",
+ "schema:domainIncludes": {
+ "@id": "schema:ExchangeRateSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369.",
+ "rdfs:label": "EUEnergyEfficiencyEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:EnergyEfficiencyEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupMisses",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Misses\" (also known as \"Missy\") for wearables.",
+ "rdfs:label": "WearableSizeGroupMisses",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:bookingTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time the reservation was booked.",
+ "rdfs:label": "bookingTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:MusculoskeletalExam",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Musculoskeletal system clinical examination.",
+ "rdfs:label": "MusculoskeletalExam",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:lowPrice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The lowest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "lowPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateOffer"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:AnimalShelter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Animal shelter.",
+ "rdfs:label": "AnimalShelter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:totalTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "totalTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToDirection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:Emergency",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.",
+ "rdfs:label": "Emergency",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:typeOfGood",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The product that this structured value is referring to.",
+ "rdfs:label": "typeOfGood",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ {
+ "@id": "schema:OwnershipInfo"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:ImageGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Image gallery page.",
+ "rdfs:label": "ImageGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaGallery"
+ }
+ },
+ {
+ "@id": "schema:LiveBlogPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[LiveBlogPosting]] is a [[BlogPosting]] intended to provide a rolling textual coverage of an ongoing event through continuous updates.",
+ "rdfs:label": "LiveBlogPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:BlogPosting"
+ }
+ },
+ {
+ "@id": "schema:cvdNumICUBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.",
+ "rdfs:label": "cvdNumICUBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:translator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
+ "rdfs:label": "translator",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WearableSizeGroupInfants",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Infants\" for wearables.",
+ "rdfs:label": "WearableSizeGroupInfants",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:category",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
+ "rdfs:label": "category",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Recommendation"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:PhysicalActivity"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CategoryCode"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:PhysicalActivityCategory"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PublicToilet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A public toilet is a room or small building containing one or more toilets (and possibly also urinals) which is available for use by the general public, or by customers or employees of certain businesses.",
+ "rdfs:label": "PublicToilet",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1624"
+ }
+ },
+ {
+ "@id": "schema:merchantReturnLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a Web page or service by URL, for product returns.",
+ "rdfs:label": "merchantReturnLink",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:broadcastFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges, e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\".",
+ "rdfs:label": "broadcastFrequency",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:BroadcastChannel"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:BroadcastFrequencySpecification"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:FDAcategoryA",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).",
+ "rdfs:label": "FDAcategoryA",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalContraindication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but these risks may be outweighed by other considerations or mitigated by other measures).",
+ "rdfs:label": "MedicalContraindication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ComedyEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Comedy event.",
+ "rdfs:label": "ComedyEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:SuspendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).",
+ "rdfs:label": "SuspendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:Pathology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.",
+ "rdfs:label": "Pathology",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ParentalSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "ParentalSupport: this is a benefit for parental support.",
+ "rdfs:label": "ParentalSupport",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:LendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\\n\\nRelated actions:\\n\\n* [[BorrowAction]]: Reciprocal of LendAction.",
+ "rdfs:label": "LendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:issuedThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The service through which the permit was granted.",
+ "rdfs:label": "issuedThrough",
+ "schema:domainIncludes": {
+ "@id": "schema:Permit"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:Hardcover",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Hardcover.",
+ "rdfs:label": "Hardcover"
+ },
+ {
+ "@id": "schema:FundingScheme",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A FundingScheme combines organizational, project and policy aspects of grant-based funding\n that sets guidelines, principles and mechanisms to support other kinds of projects and activities.\n Funding is typically organized via [[Grant]] funding. Examples of funding schemes: Swiss Priority Programmes (SPPs); EU Framework 7 (FP7); Horizon 2020; the NIH-R01 Grant Program; Wellcome institutional strategic support fund. For large scale public sector funding, the management and administration of grant awards is often handled by other, dedicated, organizations - [[FundingAgency]]s such as ERC, REA, ...",
+ "rdfs:label": "FundingScheme",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PatientExperienceHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the real life experience of patients or people that have lived a similar experience about the topic. May be forums, topics, Q-and-A and related material.",
+ "rdfs:label": "PatientExperienceHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:stepValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.",
+ "rdfs:label": "stepValue",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:TelevisionStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A television station.",
+ "rdfs:label": "TelevisionStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:MRI",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Magnetic resonance imaging.",
+ "rdfs:label": "MRI",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MotorizedBicycle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling.",
+ "rdfs:label": "MotorizedBicycle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:creditedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga.",
+ "rdfs:label": "creditedTo",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:permittedUsage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indications regarding the permitted usage of the accommodation.",
+ "rdfs:label": "permittedUsage",
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:aggregateRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The overall rating, based on a collection of reviews or ratings, of the item.",
+ "rdfs:label": "aggregateRating",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Brand"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:AggregateRating"
+ }
+ },
+ {
+ "@id": "schema:Poster",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.",
+ "rdfs:label": "Poster",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:preparation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Typical preparation that a patient must undergo before having the procedure performed.",
+ "rdfs:label": "preparation",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DayOfWeek",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) were used (for [[Monday]], [[Tuesday]], [[Wednesday]], [[Thursday]], [[Friday]], [[Saturday]], [[Sunday]] plus a special entry for [[PublicHolidays]]); these have now been integrated directly into schema.org.\n ",
+ "rdfs:label": "DayOfWeek",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19OverflowPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed.",
+ "rdfs:label": "cvdNumC19OverflowPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:Intangible",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
+ "rdfs:label": "Intangible",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:successorOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.",
+ "rdfs:label": "successorOf",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductModel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ProductModel"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19HOPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19hopats - HOSPITAL ONSET: Patients hospitalized in an NHSN inpatient care location with onset of suspected or confirmed COVID-19 14 or more days after hospitalization.",
+ "rdfs:label": "cvdNumC19HOPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:RsvpResponseYes",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee will attend.",
+ "rdfs:label": "RsvpResponseYes"
+ },
+ {
+ "@id": "schema:orderedItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The item ordered.",
+ "rdfs:label": "orderedItem",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OrderItem"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:OrderItem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:userInteractionCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.",
+ "rdfs:label": "userInteractionCount",
+ "schema:domainIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:birthPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the person was born.",
+ "rdfs:label": "birthPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:EventRescheduled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated.)",
+ "rdfs:label": "EventRescheduled"
+ },
+ {
+ "@id": "schema:trackingUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Tracking url for the parcel delivery.",
+ "rdfs:label": "trackingUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:LifestyleModification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.",
+ "rdfs:label": "LifestyleModification",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementHead",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of head above the ears. Used, for example, to fit hats.",
+ "rdfs:label": "BodyMeasurementHead",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:UserPlays",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPlays",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:MiddleSchool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A middle school (typically for children aged around 11-14, although this varies somewhat).",
+ "rdfs:label": "MiddleSchool",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:ComicStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The term \"story\" is any indivisible, re-printable\n \tunit of a comic, including the interior stories, covers, and backmatter. Most\n \tcomics have at least two stories: a cover (ComicCoverArt) and an interior story.",
+ "rdfs:label": "ComicStory",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LakeBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A lake (for example, Lake Pontrachain).",
+ "rdfs:label": "LakeBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:disambiguatingDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
+ "rdfs:label": "disambiguatingDescription",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:nonEqual",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is not equal to the object.",
+ "rdfs:label": "nonEqual",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Monday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Sunday and Tuesday.",
+ "rdfs:label": "Monday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q105"
+ }
+ },
+ {
+ "@id": "schema:offeredBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to the organization or person making the offer.",
+ "rdfs:label": "offeredBy",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:makesOffer"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:termCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]",
+ "rdfs:label": "termCode",
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedTerm"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:AboutPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: About page.",
+ "rdfs:label": "AboutPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:billingAddress",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The billing address for the order.",
+ "rdfs:label": "billingAddress",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:seatingType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type/class of the seat.",
+ "rdfs:label": "seatingType",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:fuelEfficiency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\\n\\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel economy to another value.",
+ "rdfs:label": "fuelEfficiency",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:encodesBioChemEntity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Another BioChemEntity encoded by this one. ",
+ "rdfs:label": "encodesBioChemEntity",
+ "schema:domainIncludes": {
+ "@id": "schema:Gene"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isEncodedByBioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:line",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.",
+ "rdfs:label": "line",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoShape"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:QualitativeValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.",
+ "rdfs:label": "QualitativeValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:departureTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's departure terminal.",
+ "rdfs:label": "departureTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:dayOfWeek",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The day of the week for which these opening hours are valid.",
+ "rdfs:label": "dayOfWeek",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DayOfWeek"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:GameServer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Server that provides game interaction in a multiplayer game.",
+ "rdfs:label": "GameServer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:StructuredValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.",
+ "rdfs:label": "StructuredValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:PreOrderAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent orders a (not yet released) object/product/service to be delivered/sent.",
+ "rdfs:label": "PreOrderAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1125"
+ }
+ },
+ {
+ "@id": "schema:Duration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "Duration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:BroadcastEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An over the air or online broadcast event.",
+ "rdfs:label": "BroadcastEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskFactor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.",
+ "rdfs:label": "MedicalRiskFactor",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:upvoteCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of upvotes this question, answer or comment has received from the community.",
+ "rdfs:label": "upvoteCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Comment"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:map",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "map",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:hasMap"
+ }
+ },
+ {
+ "@id": "schema:byMonth",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1.",
+ "rdfs:label": "byMonth",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:Comment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.",
+ "rdfs:label": "Comment",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:ConvenienceStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A convenience store.",
+ "rdfs:label": "ConvenienceStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:geoRadius",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
+ "rdfs:label": "geoRadius",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoCircle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ]
+ },
+ {
+ "@id": "schema:announcementLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a specific [[CivicStructure]] or [[LocalBusiness]] associated with the SpecialAnnouncement. For example, a specific testing facility or business with special opening hours. For a larger geographic region like a quarantine of an entire region, use [[spatialCoverage]].",
+ "rdfs:label": "announcementLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:spatialCoverage"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CivicStructure"
+ },
+ {
+ "@id": "schema:LocalBusiness"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2514"
+ }
+ },
+ {
+ "@id": "schema:accountablePerson",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the Person that is legally accountable for the CreativeWork.",
+ "rdfs:label": "accountablePerson",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:AlbumRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "AlbumRelease.",
+ "rdfs:label": "AlbumRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:downPayment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "a type of payment made in cash during the onset of the purchase of an expensive good/service. The payment typically represents only a percentage of the full purchase price.",
+ "rdfs:label": "downPayment",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
+ },
+ {
+ "@id": "schema:worstRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.",
+ "rdfs:label": "worstRating",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SingleFamilyResidence",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Residence type: Single-family home.",
+ "rdfs:label": "SingleFamilyResidence",
+ "rdfs:subClassOf": {
+ "@id": "schema:House"
+ }
+ },
+ {
+ "@id": "schema:discusses",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the CreativeWork associated with the UserComment.",
+ "rdfs:label": "discusses",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:vehicleModelDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
+ "rdfs:label": "vehicleModelDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:MusicRelease",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A MusicRelease is a specific release of a music album.",
+ "rdfs:label": "MusicRelease",
+ "rdfs:subClassOf": {
+ "@id": "schema:MusicPlaylist"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:EmployerAggregateRating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An aggregate rating of an Organization related to its role as an employer.",
+ "rdfs:label": "EmployerAggregateRating",
+ "rdfs:subClassOf": {
+ "@id": "schema:AggregateRating"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1689"
+ }
+ },
+ {
+ "@id": "schema:associatedAnatomy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomy of the underlying organ system or structures associated with this entity.",
+ "rdfs:label": "associatedAnatomy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PhysicalActivity"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:accessibilityHazard",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).",
+ "rdfs:label": "accessibilityHazard",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Female",
+ "@type": "schema:GenderType",
+ "rdfs:comment": "The female gender.",
+ "rdfs:label": "Female"
+ },
+ {
+ "@id": "schema:Episode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media episode (e.g. TV, radio, video game) which can be part of a series or season.",
+ "rdfs:label": "Episode",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:ReviewNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[NewsArticle]] and [[CriticReview]] providing a professional critic's assessment of a service, product, performance, or artistic or literary work.",
+ "rdfs:label": "ReviewNewsArticle",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:NewsArticle"
+ },
+ {
+ "@id": "schema:CriticReview"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SeatingMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A seating map.",
+ "rdfs:label": "SeatingMap"
+ },
+ {
+ "@id": "schema:legislationDateVersion",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#version_date"
+ },
+ "rdfs:comment": "The point-in-time at which the provided description of the legislation is valid (e.g.: when looking at the law on the 2016-04-07 (= dateVersion), I get the consolidation of 2015-04-12 of the \"National Insurance Contributions Act 2015\")",
+ "rdfs:label": "legislationDateVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#version_date"
+ }
+ },
+ {
+ "@id": "schema:color",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The color of the product.",
+ "rdfs:label": "color",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:checkinTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The earliest someone may check into a lodging establishment.",
+ "rdfs:label": "checkinTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:LodgingReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PriceSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup. It is recommended to use [[MonetaryAmount]] to describe independent amounts of money such as a salary, credit card limits, etc.",
+ "rdfs:label": "PriceSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:EvidenceLevelB",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Data derived from a single randomized trial, or nonrandomized studies.",
+ "rdfs:label": "EvidenceLevelB",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementBust",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of bust. Used, for example, to fit women's suits.",
+ "rdfs:label": "BodyMeasurementBust",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Person",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "foaf:Person"
+ },
+ "rdfs:comment": "A person (alive, dead, undead, or fictional).",
+ "rdfs:label": "Person",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:HomeGoodsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A home goods store.",
+ "rdfs:label": "HomeGoodsStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:comprisedOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system.",
+ "rdfs:label": "comprisedOf",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalSystem"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalStructure"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ }
+ ]
+ },
+ {
+ "@id": "schema:doseUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unit of the dose, e.g. 'mg'.",
+ "rdfs:label": "doseUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:artform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.",
+ "rdfs:label": "artform",
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:warrantyPromise",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The warranty promise(s) included in the offer.",
+ "rdfs:label": "warrantyPromise",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SellAction"
+ },
+ {
+ "@id": "schema:BuyAction"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:warranty"
+ }
+ },
+ {
+ "@id": "schema:lodgingUnitDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A full description of the lodging unit.",
+ "rdfs:label": "lodgingUnitDescription",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:costCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency (in 3-letter) of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217. ",
+ "rdfs:label": "costCurrency",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:episode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An episode of a TV, radio or game media within a series or season.",
+ "rdfs:label": "episode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Episode"
+ }
+ },
+ {
+ "@id": "schema:ClaimReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).",
+ "rdfs:label": "ClaimReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1061"
+ }
+ },
+ {
+ "@id": "schema:NutritionInformation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Nutritional information about the recipe.",
+ "rdfs:label": "NutritionInformation",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ }
+ },
+ {
+ "@id": "schema:CT",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "X-ray computed tomography imaging.",
+ "rdfs:label": "CT",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:feesAndCommissionsSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.",
+ "rdfs:label": "feesAndCommissionsSpecification",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FinancialService"
+ },
+ {
+ "@id": "schema:FinancialProduct"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:seatRow",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The row location of the reserved seat (e.g., B).",
+ "rdfs:label": "seatRow",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:contentRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Official rating of a piece of content—for example, 'MPAA PG-13'.",
+ "rdfs:label": "contentRating",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Rating"
+ }
+ ]
+ },
+ {
+ "@id": "schema:possibleComplication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.",
+ "rdfs:label": "possibleComplication",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MediaManipulationRatingEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": " Codes for use with the [[mediaAuthenticityCategory]] property, indicating the authenticity of a media object (in the context of how it was published or shared). In general these codes are not mutually exclusive, although some combinations (such as 'original' versus 'transformed', 'edited' and 'staged') would be contradictory if applied in the same [[MediaReview]]. Note that the application of these codes is with regard to a piece of media shared or published in a particular context.",
+ "rdfs:label": "MediaManipulationRatingEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit527",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit527: Non-profit type referring to political organizations.",
+ "rdfs:label": "Nonprofit527",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:isrcCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The International Standard Recording Code for the recording.",
+ "rdfs:label": "isrcCode",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A program offered by an institution which determines the learning progress to achieve an outcome, usually a credential like a degree or certificate. This would define a discrete set of opportunities (e.g., job, courses) that together constitute a program with a clear start, end, set of requirements, and transition to a new occupational opportunity (e.g., a job), or sometimes a higher educational opportunity (e.g., an advanced degree).",
+ "rdfs:label": "EducationalOccupationalProgram",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:MenuItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food or drink item listed in a menu or menu section.",
+ "rdfs:label": "MenuItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:childMaxAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Maximal age of the child.",
+ "rdfs:label": "childMaxAge",
+ "schema:domainIncludes": {
+ "@id": "schema:ParentAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:healthPlanCopay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The copay amount.",
+ "rdfs:label": "healthPlanCopay",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:jobBenefits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of benefits associated with the job.",
+ "rdfs:label": "jobBenefits",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:branchCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\\n\\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.\n ",
+ "rdfs:label": "branchCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:OnlineEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "OnlineEventAttendanceMode - an event that is primarily conducted online. ",
+ "rdfs:label": "OnlineEventAttendanceMode",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:sampleType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
+ "rdfs:label": "sampleType",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:codeSampleType"
+ }
+ },
+ {
+ "@id": "schema:SizeSystemImperial",
+ "@type": "schema:SizeSystemEnumeration",
+ "rdfs:comment": "Imperial size system.",
+ "rdfs:label": "SizeSystemImperial",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:tocContinuation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.",
+ "rdfs:label": "tocContinuation",
+ "schema:domainIncludes": {
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ }
+ },
+ {
+ "@id": "schema:Recruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Recruiting participants.",
+ "rdfs:label": "Recruiting",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:paymentUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The URL for sending a payment.",
+ "rdfs:label": "paymentUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c23",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c23: Non-profit type referring to Veterans Organizations.",
+ "rdfs:label": "Nonprofit501c23",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:applicantLocationRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location(s) applicants can apply from. This is usually used for telecommuting jobs where the applicant does not need to be in a physical office. Note: This should not be used for citizenship or work visa requirements.",
+ "rdfs:label": "applicantLocationRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2083"
+ }
+ },
+ {
+ "@id": "schema:PotentialActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "A description of an action that is supported.",
+ "rdfs:label": "PotentialActionStatus"
+ },
+ {
+ "@id": "schema:recordedAt",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.",
+ "rdfs:label": "recordedAt",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordedIn"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:processorRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Processor architecture required to run the application (e.g. IA64).",
+ "rdfs:label": "processorRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:itemDefectReturnFees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return fees for returns of defect products.",
+ "rdfs:label": "itemDefectReturnFees",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnFeesEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:publication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A publication event associated with the item.",
+ "rdfs:label": "publication",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:physiologicalBenefits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specific physiologic benefits associated to the plan.",
+ "rdfs:label": "physiologicalBenefits",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:OneTimePayments",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "OneTimePayments: this is a benefit for one-time payments for individuals.",
+ "rdfs:label": "OneTimePayments",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:TravelAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of traveling from a fromLocation to a destination by a specified mode of transport, optionally with participants.",
+ "rdfs:label": "TravelAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:MoveAction"
+ }
+ },
+ {
+ "@id": "schema:sdLicense",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A license document that applies to this structured data, typically indicated by URL.",
+ "rdfs:label": "sdLicense",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
+ }
+ },
+ {
+ "@id": "schema:Project",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim.\nUse properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. \n ",
+ "rdfs:label": "Project",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryD",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryD",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:MaximumDoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
+ "rdfs:label": "MaximumDoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:printPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).",
+ "rdfs:label": "printPage",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Brand",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.",
+ "rdfs:label": "Brand",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:maximumPhysicalAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). ",
+ "rdfs:label": "maximumPhysicalAttendeeCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:numberOfPartialBathrooms",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsPartial field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). ",
+ "rdfs:label": "numberOfPartialBathrooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:HowToSupply",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A supply consumed when performing the instructions for how to achieve a result.",
+ "rdfs:label": "HowToSupply",
+ "rdfs:subClassOf": {
+ "@id": "schema:HowToItem"
+ }
+ },
+ {
+ "@id": "schema:ZoneBoardingPolicy",
+ "@type": "schema:BoardingPolicyType",
+ "rdfs:comment": "The airline boards by zones of the plane.",
+ "rdfs:label": "ZoneBoardingPolicy"
+ },
+ {
+ "@id": "schema:Nonprofit501f",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501f: Non-profit type referring to Cooperative Service Organizations.",
+ "rdfs:label": "Nonprofit501f",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:reservationStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The current status of the reservation.",
+ "rdfs:label": "reservationStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReservationStatusType"
+ }
+ },
+ {
+ "@id": "schema:Audience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Intended audience for an item, i.e. the group for whom the item was created.",
+ "rdfs:label": "Audience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:ParcelDelivery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The delivery of a parcel either via the postal service or a commercial service.",
+ "rdfs:label": "ParcelDelivery",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:runsTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The vasculature the lymphatic structure runs, or efferents, to.",
+ "rdfs:label": "runsTo",
+ "schema:domainIncludes": {
+ "@id": "schema:LymphaticVessel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:SeekToAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure.",
+ "rdfs:label": "SeekToAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2722"
+ }
+ },
+ {
+ "@id": "schema:Balance",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged to help maintain posture and balance.",
+ "rdfs:label": "Balance",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:subTrip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip.",
+ "rdfs:label": "subTrip",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:partOfTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:headline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Headline of the article.",
+ "rdfs:label": "headline",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:faxNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The fax number.",
+ "rdfs:label": "faxNumber",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:InForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that a legislation is in force.",
+ "rdfs:label": "InForce",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-inForce"
+ }
+ },
+ {
+ "@id": "schema:AuthorizeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of granting permission to an object.",
+ "rdfs:label": "AuthorizeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:InvoicePrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the invoice price of an offered product.",
+ "rdfs:label": "InvoicePrice",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
+ },
+ {
+ "@id": "schema:carrierRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).",
+ "rdfs:label": "carrierRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:MobileApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Neurologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that studies the nerves and nervous system and its respective disease states.",
+ "rdfs:label": "Neurologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:CassetteFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "CassetteFormat.",
+ "rdfs:label": "CassetteFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:TraditionalChinese",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.",
+ "rdfs:label": "TraditionalChinese",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Homeopathic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.",
+ "rdfs:label": "Homeopathic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:trainNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for the train.",
+ "rdfs:label": "trainNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:membershipPointsEarned",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of membership points earned by the member. If necessary, the unitText can be used to express the units the points are issued in. (E.g. stars, miles, etc.)",
+ "rdfs:label": "membershipPointsEarned",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2085"
+ }
+ },
+ {
+ "@id": "schema:query",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The query used on this action.",
+ "rdfs:label": "query",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:SearchAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:merchantReturnDays",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies either a fixed return date or the number of days (from the delivery date) that a product can be returned. Used when the [[returnPolicyCategory]] property is specified as [[MerchantReturnFiniteReturnWindow]].",
+ "rdfs:label": "merchantReturnDays",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:TouristAttraction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist attraction. In principle any Thing can be a [[TouristAttraction]], from a [[Mountain]] and [[LandmarksOrHistoricalBuildings]] to a [[LocalBusiness]]. This Type can be used on its own to describe a general [[TouristAttraction]], or be used as an [[additionalType]] to add tourist attraction properties to any other type. (See examples below)",
+ "rdfs:label": "TouristAttraction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Energy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.",
+ "rdfs:label": "Energy",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c19",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces.",
+ "rdfs:label": "Nonprofit501c19",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:director",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "director",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoObject"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:GovernmentBuilding",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A government building.",
+ "rdfs:label": "GovernmentBuilding",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:OfferForPurchase",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose\n [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
+ "rdfs:label": "OfferForPurchase",
+ "rdfs:subClassOf": {
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ }
+ },
+ {
+ "@id": "schema:EntryPoint",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An entry point, within some Web-based protocol.",
+ "rdfs:label": "EntryPoint",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ }
+ },
+ {
+ "@id": "schema:OfficialLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "All the documents published by an official publisher should have at least the legal value level \"OfficialLegalValue\". This indicates that the document was published by an organisation with the public task of making it available (e.g. a consolidated version of an EU directive published by the EU Office of Publications).",
+ "rdfs:label": "OfficialLegalValue",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-official"
+ }
+ },
+ {
+ "@id": "schema:HowItWorksHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content that discusses and explains how a particular health-related topic works, e.g. in terms of mechanisms and underlying science.",
+ "rdfs:label": "HowItWorksHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:Table",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A table on a Web page.",
+ "rdfs:label": "Table",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:isAcceptingNewPatients",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the provider is accepting new patients.",
+ "rdfs:label": "isAcceptingNewPatients",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:EnrollingByInvitation",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Enrolling participants by invitation only.",
+ "rdfs:label": "EnrollingByInvitation",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MayTreatHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Related topics may be treated by a Topic.",
+ "rdfs:label": "MayTreatHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:occupationalCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.",
+ "rdfs:label": "occupationalCategory",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:WorkBasedProgram"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Occupation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CategoryCode"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
+ }
+ ]
+ },
+ {
+ "@id": "schema:addOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).",
+ "rdfs:label": "addOn",
+ "schema:domainIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:identifier",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:identifier"
+ },
+ "rdfs:comment": "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n ",
+ "rdfs:label": "identifier",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OrderReturned",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order has been returned.",
+ "rdfs:label": "OrderReturned"
+ },
+ {
+ "@id": "schema:DefinedTermSet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of defined terms, for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.",
+ "rdfs:label": "DefinedTermSet",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:usesDevice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Device used to perform the test.",
+ "rdfs:label": "usesDevice",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalDevice"
+ }
+ },
+ {
+ "@id": "schema:FoodEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Food event.",
+ "rdfs:label": "FoodEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:CrossSectional",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.",
+ "rdfs:label": "CrossSectional",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:OrganizeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of manipulating/administering/supervising/controlling one or more objects.",
+ "rdfs:label": "OrganizeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:inAlbum",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The album to which this recording belongs.",
+ "rdfs:label": "inAlbum",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ }
+ },
+ {
+ "@id": "schema:targetDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The description of a node in an established educational framework.",
+ "rdfs:label": "targetDescription",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AutoDealer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An car dealership.",
+ "rdfs:label": "AutoDealer",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:InsuranceAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An Insurance agency.",
+ "rdfs:label": "InsuranceAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:MusicRecording",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music recording (track), usually a single song.",
+ "rdfs:label": "MusicRecording",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:HalalDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Islamic dietary practices.",
+ "rdfs:label": "HalalDiet"
+ },
+ {
+ "@id": "schema:permissionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of permission granted the person, organization, or audience.",
+ "rdfs:label": "permissionType",
+ "schema:domainIncludes": {
+ "@id": "schema:DigitalDocumentPermission"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DigitalDocumentPermissionType"
+ }
+ },
+ {
+ "@id": "schema:pagination",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pages"
+ },
+ "rdfs:comment": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".",
+ "rdfs:label": "pagination",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PublicationVolume"
+ },
+ {
+ "@id": "schema:PublicationIssue"
+ },
+ {
+ "@id": "schema:Chapter"
+ },
+ {
+ "@id": "schema:Article"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:Time",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)).",
+ "rdfs:label": "Time"
+ },
+ {
+ "@id": "schema:materialExtent",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "The quantity of the materials being described or an expression of the physical space they occupy."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "materialExtent"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1759"
+ }
+ },
+ {
+ "@id": "schema:mathExpression",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.",
+ "rdfs:label": "mathExpression",
+ "schema:domainIncludes": {
+ "@id": "schema:MathSolver"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SolveMathAction"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupBig",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Big\" for wearables.",
+ "rdfs:label": "WearableSizeGroupBig",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:GatedResidenceCommunity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Residence type: Gated community.",
+ "rdfs:label": "GatedResidenceCommunity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Residence"
+ }
+ },
+ {
+ "@id": "schema:Diagnostic",
+ "@type": "schema:MedicalDevicePurpose",
+ "rdfs:comment": "A medical device used for diagnostic purposes.",
+ "rdfs:label": "Diagnostic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Courthouse",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A courthouse.",
+ "rdfs:label": "Courthouse",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:ComedyClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A comedy club.",
+ "rdfs:label": "ComedyClub",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:AerobicActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.",
+ "rdfs:label": "AerobicActivity",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SpreadsheetDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A spreadsheet file.",
+ "rdfs:label": "SpreadsheetDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:Locksmith",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A locksmith.",
+ "rdfs:label": "Locksmith",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:MediaObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset, i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 [[AudioObject]]s).",
+ "rdfs:label": "MediaObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:True",
+ "@type": "schema:Boolean",
+ "rdfs:comment": "The boolean value true.",
+ "rdfs:label": "True"
+ },
+ {
+ "@id": "schema:albumProductionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Classification of the album by its type of content: soundtrack, live album, studio album, etc.",
+ "rdfs:label": "albumProductionType",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbumProductionType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:schoolClosuresInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about school closures.",
+ "rdfs:label": "schoolClosuresInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:numberOfForwardGears",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total number of forward gears available for the transmission system of the vehicle.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfForwardGears",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DietarySupplement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.",
+ "rdfs:label": "DietarySupplement",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Substance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:departureStation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The station from which the train departs.",
+ "rdfs:label": "departureStation",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:TrainStation"
+ }
+ },
+ {
+ "@id": "schema:ticketedSeat",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The seat associated with the ticket.",
+ "rdfs:label": "ticketedSeat",
+ "schema:domainIncludes": {
+ "@id": "schema:Ticket"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Seat"
+ }
+ },
+ {
+ "@id": "schema:WeaponConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is intended to induce bodily harm, for example guns, mace, combat knives, brass knuckles, nail or other bombs, and spears.",
+ "rdfs:label": "WeaponConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:menuAddOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.",
+ "rdfs:label": "menuAddOn",
+ "schema:domainIncludes": {
+ "@id": "schema:MenuItem"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:MenuSection"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1541"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemUS",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "United States size system for wearables.",
+ "rdfs:label": "WearableSizeSystemUS",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Withdrawn",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Withdrawn.",
+ "rdfs:label": "Withdrawn",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:recipeIngredient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
+ "rdfs:label": "recipeIngredient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:supply"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:OwnershipInfo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value providing information about when a certain organization or person owned a certain product.",
+ "rdfs:label": "OwnershipInfo",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:fiberContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of fiber.",
+ "rdfs:label": "fiberContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:Completed",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Completed.",
+ "rdfs:label": "Completed",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:healthPlanDrugOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "TODO.",
+ "rdfs:label": "healthPlanDrugOption",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:BioChemEntity",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Any biological, chemical, or biochemical thing. For example: a protein; a gene; a chemical; a synthetic chemical.",
+ "rdfs:label": "BioChemEntity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:NoteDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A file containing a note, primarily for the author.",
+ "rdfs:label": "NoteDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:Float",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: Floating number.",
+ "rdfs:label": "Float",
+ "rdfs:subClassOf": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:industry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The industry associated with the job position.",
+ "rdfs:label": "industry",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:inLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].",
+ "rdfs:label": "inLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PronounceableText"
+ },
+ {
+ "@id": "schema:LinkRole"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:WriteAction"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:CommunicateAction"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Language"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2382"
+ }
+ },
+ {
+ "@id": "schema:Consortium",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Consortium is a membership [[Organization]] whose members are typically Organizations.",
+ "rdfs:label": "Consortium",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1559"
+ }
+ },
+ {
+ "@id": "schema:PrescriptionOnly",
+ "@type": "schema:DrugPrescriptionStatus",
+ "rdfs:comment": "Available by prescription only.",
+ "rdfs:label": "PrescriptionOnly",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:GovernmentOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A governmental organization or agency.",
+ "rdfs:label": "GovernmentOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:employmentUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.",
+ "rdfs:label": "employmentUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2296"
+ }
+ },
+ {
+ "@id": "schema:interactingDrug",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.",
+ "rdfs:label": "interactingDrug",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:BroadcastService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A delivery service through which content is provided via broadcast over the air or online.",
+ "rdfs:label": "BroadcastService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:CurrencyConversionService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service to convert funds from one currency to another currency.",
+ "rdfs:label": "CurrencyConversionService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:startDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "startDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ },
+ {
+ "@id": "schema:DatedMoneySpecification"
+ },
+ {
+ "@id": "schema:Role"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2486"
+ }
+ },
+ {
+ "@id": "schema:UnincorporatedAssociationCharity",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated (UK).",
+ "rdfs:label": "UnincorporatedAssociationCharity",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupGirls",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Girls\" for wearables.",
+ "rdfs:label": "WearableSizeGroupGirls",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:AssignAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of allocating an action/event/task to some destination (someone or something).",
+ "rdfs:label": "AssignAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:Boolean",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "Boolean: True or False.",
+ "rdfs:label": "Boolean"
+ },
+ {
+ "@id": "schema:DigitalDocumentPermission",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permission for a particular person or group to access a particular file.",
+ "rdfs:label": "DigitalDocumentPermission",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:hasMenu",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
+ "rdfs:label": "hasMenu",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Menu"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BookmarkAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent bookmarks/flags/labels/tags/marks an object.",
+ "rdfs:label": "BookmarkAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:dropoffTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "When a rental car can be dropped off.",
+ "rdfs:label": "dropoffTime",
+ "schema:domainIncludes": {
+ "@id": "schema:RentalCarReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:BedDetails",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also [[BedType]] (under development).",
+ "rdfs:label": "BedDetails",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelCustomerResponsibility",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Indicated that creating a return label is the responsibility of the customer.",
+ "rdfs:label": "ReturnLabelCustomerResponsibility",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:artEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").",
+ "rdfs:label": "artEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EventPostponed",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been postponed and no new date has been set. The event's previousStartDate should be set.",
+ "rdfs:label": "EventPostponed"
+ },
+ {
+ "@id": "schema:publicAccess",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value",
+ "rdfs:label": "publicAccess",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:Psychiatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.",
+ "rdfs:label": "Psychiatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:domiciledMortgage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether borrower is a resident of the jurisdiction where the property is located.",
+ "rdfs:label": "domiciledMortgage",
+ "schema:domainIncludes": {
+ "@id": "schema:MortgageLoan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoTouches",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) touch: \"they have at least one boundary point in common, but no interior points.\" (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)",
+ "rdfs:label": "geoTouches",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:box",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.",
+ "rdfs:label": "box",
+ "schema:domainIncludes": {
+ "@id": "schema:GeoShape"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:lender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The person that lends the object being borrowed.",
+ "rdfs:label": "lender",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:BorrowAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Muscle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.",
+ "rdfs:label": "Muscle",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Ultrasound",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Ultrasound imaging.",
+ "rdfs:label": "Ultrasound",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Action",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).",
+ "rdfs:label": "Action",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ }
+ },
+ {
+ "@id": "schema:BroadcastFrequencySpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The frequency in MHz and the modulation used for a particular BroadcastService.",
+ "rdfs:label": "BroadcastFrequencySpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:relatedStructure",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.",
+ "rdfs:label": "relatedStructure",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalSystem"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:TripleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.",
+ "rdfs:label": "TripleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:workload",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.",
+ "rdfs:label": "workload",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Energy"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:expertConsiderations",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Medical expert advice related to the plan.",
+ "rdfs:label": "expertConsiderations",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AllergiesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the allergy-related aspects of a health topic.",
+ "rdfs:label": "AllergiesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:OfflineTemporarily",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: OfflineTemporarily. Server is offline now but it can be online soon.",
+ "rdfs:label": "OfflineTemporarily"
+ },
+ {
+ "@id": "schema:availableAtOrFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place(s) from which the offer can be obtained (e.g. store locations).",
+ "rdfs:label": "availableAtOrFrom",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:areaServed"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Demand"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:sportsActivityLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The sports activity location where this action occurred.",
+ "rdfs:label": "sportsActivityLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:Nose",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Nose function assessment with clinical examination.",
+ "rdfs:label": "Nose",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:newsUpdatesAndGuidelines",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page with news updates and guidelines. This could often be (but is not required to be) the main page containing [[SpecialAnnouncement]] markup on a site.",
+ "rdfs:label": "newsUpdatesAndGuidelines",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:partySize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Number of people the reservation should accommodate.",
+ "rdfs:label": "partySize",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TaxiReservation"
+ },
+ {
+ "@id": "schema:FoodEstablishmentReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FundingAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages\n the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s).\n A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc.\n \nExamples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation, ...\n ",
+ "rdfs:label": "FundingAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:Project"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:frequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How often the dose is taken, e.g. 'daily'.",
+ "rdfs:label": "frequency",
+ "schema:domainIncludes": {
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:alternativeOf",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Another gene which is a variation of this one.",
+ "rdfs:label": "alternativeOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Gene"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Gene"
+ }
+ },
+ {
+ "@id": "schema:geoCoveredBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCoveredBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:CourseInstance",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.",
+ "rdfs:label": "CourseInstance",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:numberOfCredits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.",
+ "rdfs:label": "numberOfCredits",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Course"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:StructuredValue"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:material",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A material that something is made from, e.g. leather, wool, cotton, paper.",
+ "rdfs:label": "material",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HowToItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An item used as either a tool or supply when performing the instructions for how to achieve a result.",
+ "rdfs:label": "HowToItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:ListItem"
+ }
+ },
+ {
+ "@id": "schema:benefits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of benefits associated with the job.",
+ "rdfs:label": "benefits",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:jobBenefits"
+ }
+ },
+ {
+ "@id": "schema:propertyID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific ID of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.",
+ "rdfs:label": "propertyID",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValue"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PlasticSurgery",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.",
+ "rdfs:label": "PlasticSurgery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:telephone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The telephone number.",
+ "rdfs:label": "telephone",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:accommodationFloorPlan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A floorplan of some [[Accommodation]].",
+ "rdfs:label": "accommodationFloorPlan",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:Residence"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:FloorPlan"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:Dentistry",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A branch of medicine that is involved in the dental care.",
+ "rdfs:label": "Dentistry",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:taxID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
+ "rdfs:label": "taxID",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:hasCourseInstance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.",
+ "rdfs:label": "hasCourseInstance",
+ "schema:domainIncludes": {
+ "@id": "schema:Course"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CourseInstance"
+ }
+ },
+ {
+ "@id": "schema:ExchangeRateSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing exchange rate.",
+ "rdfs:label": "ExchangeRateSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SportsEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Sports event.",
+ "rdfs:label": "SportsEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c17",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts.",
+ "rdfs:label": "Nonprofit501c17",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:MedicalCause",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.",
+ "rdfs:label": "MedicalCause",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:priceCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "priceCurrency",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TradeAction"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Ticket"
+ },
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:restPeriods",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How often one should break from the activity.",
+ "rdfs:label": "restPeriods",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HealthPlanFormulary",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "For a given health insurance plan, the specification for costs and coverage of prescription drugs. ",
+ "rdfs:label": "HealthPlanFormulary",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:SpokenWordAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "SpokenWordAlbum.",
+ "rdfs:label": "SpokenWordAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:FilmAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of capturing sound and moving images on film, video, or digitally.",
+ "rdfs:label": "FilmAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:SelfStorage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A self-storage facility.",
+ "rdfs:label": "SelfStorage",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:billingIncrement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.",
+ "rdfs:label": "billingIncrement",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:arrivalTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's arrival terminal.",
+ "rdfs:label": "arrivalTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:WPFooter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The footer section of the page.",
+ "rdfs:label": "WPFooter",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:DesktopWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of 'desktop' browsers as a Web Platform.",
+ "rdfs:label": "DesktopWebPlatform",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:MulticellularParasite",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Multicellular parasite that causes an infection.",
+ "rdfs:label": "MulticellularParasite",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ViolenceConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item shows or promotes violence.",
+ "rdfs:label": "ViolenceConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementChest",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of chest. Used, for example, to fit men's suits.",
+ "rdfs:label": "BodyMeasurementChest",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:energyEfficiencyScaleMax",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
+ "rdfs:label": "energyEfficiencyScaleMax",
+ "schema:domainIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EUEnergyEfficiencyEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:reviewCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The count of total number of reviews.",
+ "rdfs:label": "reviewCount",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateRating"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:DataFeedItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single item within a larger data feed.",
+ "rdfs:label": "DataFeedItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Oncologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.",
+ "rdfs:label": "Oncologic",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:area",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The area within which users can expect to reach the broadcast service.",
+ "rdfs:label": "area",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:serviceArea"
+ }
+ },
+ {
+ "@id": "schema:CompoundPriceSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A compound price specification is one that bundles multiple prices that all apply in combination for different dimensions of consumption. Use the name property of the attached unit price specification for indicating the dimension of a price component (e.g. \"electricity\" or \"final cleaning\").",
+ "rdfs:label": "CompoundPriceSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:QuantitativeValueDistribution",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statistical distribution of values.",
+ "rdfs:label": "QuantitativeValueDistribution",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:defaultValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.",
+ "rdfs:label": "defaultValue",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:browserRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.",
+ "rdfs:label": "browserRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:WebApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:predecessorOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer from a previous, often discontinued variant of the product to its newer variant.",
+ "rdfs:label": "predecessorOf",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductModel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ProductModel"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:callSign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.",
+ "rdfs:label": "callSign",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:Vehicle"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
+ }
+ },
+ {
+ "@id": "schema:AutoPartsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An auto parts store.",
+ "rdfs:label": "AutoPartsStore",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Store"
+ },
+ {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DatedMoneySpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]], use of that type is recommended.",
+ "rdfs:label": "DatedMoneySpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:MonetaryAmount"
+ }
+ },
+ {
+ "@id": "schema:Hospital",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hospital.",
+ "rdfs:label": "Hospital",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:EmergencyService"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
+ },
+ {
+ "@id": "schema:flightNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.",
+ "rdfs:label": "flightNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:cvdNumC19OFMechVentPats",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numc19ofmechventpats - ED/OVERFLOW and VENTILATED: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed and on a mechanical ventilator.",
+ "rdfs:label": "cvdNumC19OFMechVentPats",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:EndorseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent approves/certifies/likes/supports/sanctions an object.",
+ "rdfs:label": "EndorseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:RandomizedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A randomized trial design.",
+ "rdfs:label": "RandomizedTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:educationalFramework",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The framework to which the resource being described is aligned.",
+ "rdfs:label": "educationalFramework",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MedicalSpecialty",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.",
+ "rdfs:label": "MedicalSpecialty",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Specialty"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:InformAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of notifying someone of information pertinent to them, with no expectation of a response.",
+ "rdfs:label": "InformAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:legislationLegalForce",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#in_force"
+ },
+ "rdfs:comment": "Whether the legislation is currently in force, not in force, or partially in force.",
+ "rdfs:label": "legislationLegalForce",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:LegalForceStatus"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#in_force"
+ }
+ },
+ {
+ "@id": "schema:DriveWheelConfigurationValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A value indicating which roadwheels will receive torque.",
+ "rdfs:label": "DriveWheelConfigurationValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:partOfOrder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The overall order the items in this delivery were included in.",
+ "rdfs:label": "partOfOrder",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Order"
+ }
+ },
+ {
+ "@id": "schema:softwareAddOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Additional content for a software application.",
+ "rdfs:label": "softwareAddOn",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:aspect",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.",
+ "rdfs:label": "aspect",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalWebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:mainContentOfPage"
+ }
+ },
+ {
+ "@id": "schema:orderDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date order was placed.",
+ "rdfs:label": "orderDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:sender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The participant who is at the sending end of the action.",
+ "rdfs:label": "sender",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Message"
+ },
+ {
+ "@id": "schema:ReceiveAction"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Audience"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:healthPlanCoinsuranceOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?",
+ "rdfs:label": "healthPlanCoinsuranceOption",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:serviceType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of service being offered, e.g. veterans' benefits, emergency relief, etc.",
+ "rdfs:label": "serviceType",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:GovernmentBenefitsType"
+ }
+ ]
+ },
+ {
+ "@id": "schema:contraindication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contraindication for this therapy.",
+ "rdfs:label": "contraindication",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalDevice"
+ },
+ {
+ "@id": "schema:MedicalTherapy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalContraindication"
+ }
+ ]
+ },
+ {
+ "@id": "schema:legislationResponsible",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#responsibility_of"
+ },
+ "rdfs:comment": "An individual or organization that has some kind of responsibility for the legislation. Typically the ministry who is/was in charge of elaborating the legislation, or the adressee for potential questions about the legislation once it is published.",
+ "rdfs:label": "legislationResponsible",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#responsibility_of"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA2Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA2Plus",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:legislationJurisdiction",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#jurisdiction"
+ },
+ "rdfs:comment": "The jurisdiction from which the legislation originates.",
+ "rdfs:label": "legislationJurisdiction",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:jurisdiction"
+ },
+ {
+ "@id": "schema:spatialCoverage"
+ }
+ ],
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AdministrativeArea"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#jurisdiction"
+ }
+ },
+ {
+ "@id": "schema:Renal",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.",
+ "rdfs:label": "Renal",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:collectionSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "The number of items in the [[Collection]]."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "collectionSize"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Collection"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1759"
+ }
+ },
+ {
+ "@id": "schema:insertion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place of attachment of a muscle, or what the muscle moves.",
+ "rdfs:label": "insertion",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:MedicalEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice.",
+ "rdfs:label": "MedicalEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:datePublished",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date of first broadcast/publication.",
+ "rdfs:label": "datePublished",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:engineDisplacement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \\n\\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "engineDisplacement",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:MedicalEvidenceLevel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Level of evidence for a medical guideline. Enumerated type.",
+ "rdfs:label": "MedicalEvidenceLevel",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasDeliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Method used for delivery or shipping.",
+ "rdfs:label": "hasDeliveryMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryEvent"
+ },
+ {
+ "@id": "schema:ParcelDelivery"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ }
+ },
+ {
+ "@id": "schema:mediaItemAppearance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "In the context of a [[MediaReview]], indicates specific media item(s) that are grouped using a [[MediaReviewItem]].",
+ "rdfs:label": "mediaItemAppearance",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReviewItem"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:instructor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].",
+ "rdfs:label": "instructor",
+ "schema:domainIncludes": {
+ "@id": "schema:CourseInstance"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:programName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The program providing the membership.",
+ "rdfs:label": "programName",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:BoatReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for boat travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "BoatReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:SuperficialAnatomy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).",
+ "rdfs:label": "SuperficialAnatomy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:TheaterEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Theater performance.",
+ "rdfs:label": "TheaterEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:offers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.\n ",
+ "rdfs:label": "offers",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:AggregateOffer"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Trip"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:itemOffered"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
+ },
+ {
+ "@id": "schema:InStoreOnly",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available only at physical locations.",
+ "rdfs:label": "InStoreOnly"
+ },
+ {
+ "@id": "schema:trainingSalary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The estimated salary earned while in the program.",
+ "rdfs:label": "trainingSalary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:WorkBasedProgram"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmountDistribution"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ReadAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming written content.",
+ "rdfs:label": "ReadAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:primaryImageOfPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the main image on the page.",
+ "rdfs:label": "primaryImageOfPage",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ImageObject"
+ }
+ },
+ {
+ "@id": "schema:Answer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.",
+ "rdfs:label": "Answer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"
+ }
+ },
+ {
+ "@id": "schema:subTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A component test of the panel.",
+ "rdfs:label": "subTest",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTestPanel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
+ }
+ },
+ {
+ "@id": "schema:BodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A body of water, such as a sea, ocean, or lake.",
+ "rdfs:label": "BodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:Registry",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "A registry-based study design.",
+ "rdfs:label": "Registry",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ActivationFee",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the activation fee part of the total price for an offered product, for example a cellphone contract.",
+ "rdfs:label": "ActivationFee",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:LaboratoryScience",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research.",
+ "rdfs:label": "LaboratoryScience",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:videoFrameSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The frame size of the video.",
+ "rdfs:label": "videoFrameSize",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:boardingGroup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The airline-specific indicator of boarding order / preference.",
+ "rdfs:label": "boardingGroup",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:returnPolicyCountry",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The country where the product has to be sent to for returns, for example \"Ireland\" using the [[name]] property of [[Country]]. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). Note that this can be different from the country where the product was originally shipped from or sent to.",
+ "rdfs:label": "returnPolicyCountry",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Country"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:image",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].",
+ "rdfs:label": "image",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:ImageObject"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SafetyHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the safety-related aspects of a health topic.",
+ "rdfs:label": "SafetyHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:Map",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A map.",
+ "rdfs:label": "Map",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:PostalAddress",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The mailing address.",
+ "rdfs:label": "PostalAddress",
+ "rdfs:subClassOf": {
+ "@id": "schema:ContactPoint"
+ }
+ },
+ {
+ "@id": "schema:JobPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A listing that describes a job opening in a certain organization.",
+ "rdfs:label": "JobPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:dateline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [dateline](https://en.wikipedia.org/wiki/Dateline) is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.\n\nStructured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created, e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].\n\nDateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".\n ",
+ "rdfs:label": "dateline",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DonateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.",
+ "rdfs:label": "DonateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:GlutenFreeDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of gluten.",
+ "rdfs:label": "GlutenFreeDiet"
+ },
+ {
+ "@id": "schema:DrawAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.",
+ "rdfs:label": "DrawAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:pregnancyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Pregnancy category of this drug.",
+ "rdfs:label": "pregnancyCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugPregnancyCategory"
+ }
+ },
+ {
+ "@id": "schema:replacer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The object that replaces.",
+ "rdfs:label": "replacer",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ReplaceAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:numberOfEpisodes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of episodes in this season or series.",
+ "rdfs:label": "numberOfEpisodes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:directors",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A director of e.g. TV, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "directors",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:director"
+ }
+ },
+ {
+ "@id": "schema:arrivalGate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's arrival gate.",
+ "rdfs:label": "arrivalGate",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:naics",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
+ "rdfs:label": "naics",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:lyricist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The person who wrote the words.",
+ "rdfs:label": "lyricist",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:endDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "endDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ },
+ {
+ "@id": "schema:DatedMoneySpecification"
+ },
+ {
+ "@id": "schema:Role"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2486"
+ }
+ },
+ {
+ "@id": "schema:location",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location of, for example, where an event is happening, where an organization is located, or where an action takes place.",
+ "rdfs:label": "location",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Action"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:InteractionCounter"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:VirtualLocation"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ]
+ },
+ {
+ "@id": "schema:OrderDelivered",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing successful delivery of an order.",
+ "rdfs:label": "OrderDelivered"
+ },
+ {
+ "@id": "schema:ExerciseGym",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A gym.",
+ "rdfs:label": "ExerciseGym",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:ReturnInStore",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be made in a store.",
+ "rdfs:label": "ReturnInStore",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:applicationStartDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date at which the program begins collecting applications for the next enrollment cycle.",
+ "rdfs:label": "applicationStartDate",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:suggestedAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The age or age range for the intended audience or person, for example 3-12 months for infants, 1-5 years for toddlers.",
+ "rdfs:label": "suggestedAge",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:AddAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of editing by adding an object to a collection.",
+ "rdfs:label": "AddAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UpdateAction"
+ }
+ },
+ {
+ "@id": "schema:transcript",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.",
+ "rdfs:label": "transcript",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:AudioObject"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:addressRegion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country).",
+ "rdfs:label": "addressRegion",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:BenefitsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the benefits and advantages of usage or utilization of topic.",
+ "rdfs:label": "BenefitsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:firstAppearance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the first known occurrence of a [[Claim]] in some [[CreativeWork]].",
+ "rdfs:label": "firstAppearance",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workExample"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ }
+ },
+ {
+ "@id": "schema:jobLocationType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the job location (e.g. TELECOMMUTE for telecommute jobs).",
+ "rdfs:label": "jobLocationType",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1591"
+ }
+ },
+ {
+ "@id": "schema:Therapeutic",
+ "@type": "schema:MedicalDevicePurpose",
+ "rdfs:comment": "A medical device used for therapeutic purposes.",
+ "rdfs:label": "Therapeutic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LegislativeBuilding",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A legislative building—for example, the state capitol.",
+ "rdfs:label": "LegislativeBuilding",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:icaoCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "ICAO identifier for an airport.",
+ "rdfs:label": "icaoCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Airport"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:vehicleConfiguration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.",
+ "rdfs:label": "vehicleConfiguration",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DefinitiveLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates a document for which the text is conclusively what the law says and is legally binding. (E.g. the digitally signed version of an Official Journal.)\n Something \"Definitive\" is considered to be also [[AuthoritativeLegalValue]].",
+ "rdfs:label": "DefinitiveLegalValue",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-definitive"
+ }
+ },
+ {
+ "@id": "schema:ShoeStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shoe store.",
+ "rdfs:label": "ShoeStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskEstimator",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any rule set or interactive tool for estimating the risk of developing a complication or condition.",
+ "rdfs:label": "MedicalRiskEstimator",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:hasMenuItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A food or drink item contained in a menu or menu section.",
+ "rdfs:label": "hasMenuItem",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MenuSection"
+ },
+ {
+ "@id": "schema:Menu"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:MenuItem"
+ }
+ },
+ {
+ "@id": "schema:FurnitureStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A furniture store.",
+ "rdfs:label": "FurnitureStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:name",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:title"
+ },
+ "rdfs:comment": "The name of the item.",
+ "rdfs:label": "name",
+ "rdfs:subPropertyOf": {
+ "@id": "rdfs:label"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MusicVideoObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music video file.",
+ "rdfs:label": "MusicVideoObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:participant",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Other co-agents that participated in the action indirectly. E.g. John wrote a book with *Steve*.",
+ "rdfs:label": "participant",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DrugLegalStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The legal availability status of a medical drug.",
+ "rdfs:label": "DrugLegalStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:multipleValues",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether multiple values are allowed for the property. Default is false.",
+ "rdfs:label": "multipleValues",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ }
+ },
+ {
+ "@id": "schema:maximumIntake",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
+ "rdfs:label": "maximumIntake",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Substance"
+ },
+ {
+ "@id": "schema:DrugStrength"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MaximumDoseSchedule"
+ }
+ },
+ {
+ "@id": "schema:musicArrangement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An arrangement derived from the composition.",
+ "rdfs:label": "musicArrangement",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:pageStart",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pageStart"
+ },
+ "rdfs:comment": "The page on which the work starts; for example \"135\" or \"xiii\".",
+ "rdfs:label": "pageStart",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Chapter"
+ },
+ {
+ "@id": "schema:Article"
+ },
+ {
+ "@id": "schema:PublicationVolume"
+ },
+ {
+ "@id": "schema:PublicationIssue"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:TireShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tire shop.",
+ "rdfs:label": "TireShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:risks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specific physiologic risks associated to the diet plan.",
+ "rdfs:label": "risks",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:tongueWeight",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR).\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "tongueWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:eligibleCustomerType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type(s) of customers for which the given offer is valid.",
+ "rdfs:label": "eligibleCustomerType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Demand"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:BusinessEntityType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:hasPart",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).",
+ "rdfs:label": "hasPart",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:numberOfEmployees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of employees in an organization, e.g. business.",
+ "rdfs:label": "numberOfEmployees",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BusinessAudience"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:productGroupID",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a textual identifier for a ProductGroup.",
+ "rdfs:label": "productGroupID",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductGroup"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ }
+ },
+ {
+ "@id": "schema:recommendedIntake",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
+ "rdfs:label": "recommendedIntake",
+ "schema:domainIncludes": {
+ "@id": "schema:DietarySupplement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RecommendedDoseSchedule"
+ }
+ },
+ {
+ "@id": "schema:PublicationIssue",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.org/ontology/bibo/Issue"
+ },
+ "rdfs:comment": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "PublicationIssue",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
+ },
+ {
+ "@id": "schema:Service",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service provided by an organization, e.g. delivery service, print services, etc.",
+ "rdfs:label": "Service",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Obstetric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.",
+ "rdfs:label": "Obstetric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c13",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c13: Non-profit type referring to Cemetery Companies.",
+ "rdfs:label": "Nonprofit501c13",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Mountain",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A mountain, like Mount Whitney or Mount Everest.",
+ "rdfs:label": "Mountain",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:Pediatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that specializes in the care of infants, children and adolescents.",
+ "rdfs:label": "Pediatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c14",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds.",
+ "rdfs:label": "Nonprofit501c14",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:yearsInOperation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The age of the business.",
+ "rdfs:label": "yearsInOperation",
+ "schema:domainIncludes": {
+ "@id": "schema:BusinessAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:itemListElement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\\n\\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\\n\\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.",
+ "rdfs:label": "itemListElement",
+ "schema:domainIncludes": {
+ "@id": "schema:ItemList"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Corporation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Organization: A business corporation.",
+ "rdfs:label": "Corporation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ },
+ {
+ "@id": "schema:gtin13",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin13",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:RsvpAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of notifying an event organizer as to whether you expect to attend the event.",
+ "rdfs:label": "RsvpAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InformAction"
+ }
+ },
+ {
+ "@id": "schema:suggestedMaxAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Maximum recommended age in years for the audience or user.",
+ "rdfs:label": "suggestedMaxAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:UserReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]].",
+ "rdfs:label": "UserReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ }
+ },
+ {
+ "@id": "schema:DateTime",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).",
+ "rdfs:label": "DateTime"
+ },
+ {
+ "@id": "schema:PaymentAutomaticallyApplied",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "An automatic payment system is in place and will be used.",
+ "rdfs:label": "PaymentAutomaticallyApplied"
+ },
+ {
+ "@id": "schema:Atlas",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.",
+ "rdfs:label": "Atlas",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.productontology.org/id/Atlas"
+ }
+ },
+ {
+ "@id": "schema:PaintAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing a painting, typically with paint and canvas as instruments.",
+ "rdfs:label": "PaintAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:hasDriveThroughService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.",
+ "rdfs:label": "hasDriveThroughService",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:responsibilities",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Responsibilities associated with this role or Occupation.",
+ "rdfs:label": "responsibilities",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:OrderAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent orders an object/product/service to be delivered/sent.",
+ "rdfs:label": "OrderAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemDE",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "German size system for wearables.",
+ "rdfs:label": "WearableSizeSystemDE",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:serialNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
+ "rdfs:label": "serialNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:IndividualProduct"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Newspaper",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter (i.e. business, culture, education). Often published daily.",
+ "rdfs:label": "Newspaper",
+ "rdfs:subClassOf": {
+ "@id": "schema:Periodical"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.productontology.org/id/Newspaper"
+ }
+ },
+ {
+ "@id": "schema:RiverBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A river (for example, the broad majestic Shannon).",
+ "rdfs:label": "RiverBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:Question",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.",
+ "rdfs:label": "Question",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"
+ }
+ },
+ {
+ "@id": "schema:vendor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "'vendor' is an earlier term for 'seller'.",
+ "rdfs:label": "vendor",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:BuyAction"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:seller"
+ }
+ },
+ {
+ "@id": "schema:DiagnosticLab",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical laboratory that offers on-site or off-site diagnostic services.",
+ "rdfs:label": "DiagnosticLab",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Paperback",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Paperback.",
+ "rdfs:label": "Paperback"
+ },
+ {
+ "@id": "schema:directApply",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether an [[url]] that is associated with a [[JobPosting]] enables direct application for the job, via the posting website. A job posting is considered to have directApply of [[True]] if an application process for the specified job can be directly initiated via the url(s) given (noting that e.g. multiple internet domains might nevertheless be involved at an implementation level). A value of [[False]] is appropriate if there is no clear path to applying directly online for the specified job, navigating directly from the JobPosting url(s) supplied.",
+ "rdfs:label": "directApply",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2907"
+ }
+ },
+ {
+ "@id": "schema:LowCalorieDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced calorie intake.",
+ "rdfs:label": "LowCalorieDiet"
+ },
+ {
+ "@id": "schema:CheckoutPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Checkout page.",
+ "rdfs:label": "CheckoutPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:DemoAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "DemoAlbum.",
+ "rdfs:label": "DemoAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Resort",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A resort is a place used for relaxation or recreation, attracting visitors for holidays or vacations. Resorts are places, towns or sometimes commercial establishments operated by a single company (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Resort).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n ",
+ "rdfs:label": "Resort",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:dateIssued",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date the ticket was issued.",
+ "rdfs:label": "dateIssued",
+ "schema:domainIncludes": {
+ "@id": "schema:Ticket"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
+ },
+ {
+ "@id": "schema:specialOpeningHoursSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The special opening hours of a certain place.\\n\\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].\n ",
+ "rdfs:label": "specialOpeningHoursSpecification",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ },
+ {
+ "@id": "schema:NewsMediaOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A News/Media organization such as a newspaper or TV station.",
+ "rdfs:label": "NewsMediaOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DefenceEstablishment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A defence establishment, such as an army or navy base.",
+ "rdfs:label": "DefenceEstablishment",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:MedicalGuidelineRecommendation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.",
+ "rdfs:label": "MedicalGuidelineRecommendation",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalGuideline"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:HotelRoom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hotel room is a single room in a hotel.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "HotelRoom",
+ "rdfs:subClassOf": {
+ "@id": "schema:Room"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:Infectious",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Something in medical science that pertains to infectious diseases, i.e. caused by bacterial, viral, fungal or parasitic infections.",
+ "rdfs:label": "Infectious",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:accelerationTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\\n\\nTypical unit code(s): SEC for seconds\\n\\n* Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use \"SEC\" for seconds and indicate the velocities in the [[name]] of the [[QuantitativeValue]], or use [[valueReference]] with a [[QuantitativeValue]] of 0..60 mph or 0..100 km/h to specify the reference speeds.",
+ "rdfs:label": "accelerationTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:minValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The lower value of some characteristic or property.",
+ "rdfs:label": "minValue",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:includesHealthPlanNetwork",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Networks covered by this plan.",
+ "rdfs:label": "includesHealthPlanNetwork",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthPlanNetwork"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupShort",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Short\" for wearables.",
+ "rdfs:label": "WearableSizeGroupShort",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:quest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The task that a player-controlled character, or group of characters may complete in order to gain a reward.",
+ "rdfs:label": "quest",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Game"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:recipeCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category of the recipe—for example, appetizer, entree, etc.",
+ "rdfs:label": "recipeCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:seatingCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons ",
+ "rdfs:label": "seatingCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:episodeNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Position of the episode within an ordered group of episodes.",
+ "rdfs:label": "episodeNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Episode"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:School",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A school.",
+ "rdfs:label": "School",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:toRecipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of recipient. The recipient who was directly sent the message.",
+ "rdfs:label": "toRecipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:recipient"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ]
+ },
+ {
+ "@id": "schema:mediaAuthenticityCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).",
+ "rdfs:label": "mediaAuthenticityCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReview"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MediaManipulationRatingEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:relatedCondition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical condition associated with this anatomy.",
+ "rdfs:label": "relatedCondition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
+ }
+ },
+ {
+ "@id": "schema:AnalysisNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An AnalysisNewsArticle is a [[NewsArticle]] that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.",
+ "rdfs:label": "AnalysisNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:cvdNumICUBedsOcc",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.",
+ "rdfs:label": "cvdNumICUBedsOcc",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ }
+ },
+ {
+ "@id": "schema:Installment",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the installment pricing component of the total price for an offered product.",
+ "rdfs:label": "Installment",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:codeRepository",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, GitHub, CodePlex).",
+ "rdfs:label": "codeRepository",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:AnatomicalSystem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can include circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.",
+ "rdfs:label": "AnatomicalSystem",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MediaReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[MediaReview]] is a more specialized form of Review dedicated to the evaluation of media content online, typically in the context of fact-checking and misinformation.\n For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types. This definition is\n a work in progress. While the [[MediaManipulationRatingEnumeration]] list reflects significant community review amongst fact-checkers and others working\n to combat misinformation, the specific structures for representing media objects, their versions and publication context, are still evolving. Similarly, best practices for the relationship between [[MediaReview]] and [[ClaimReview]] markup have not yet been finalized.",
+ "rdfs:label": "MediaReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:rsvpResponse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The response (yes, no, maybe) to the RSVP.",
+ "rdfs:label": "rsvpResponse",
+ "schema:domainIncludes": {
+ "@id": "schema:RsvpAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RsvpResponseType"
+ }
+ },
+ {
+ "@id": "schema:ExercisePlan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.",
+ "rdfs:label": "ExercisePlan",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:PhysicalActivity"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:sourceOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Organization on whose behalf the creator was working.",
+ "rdfs:label": "sourceOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:LowLactoseDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet appropriate for people with lactose intolerance.",
+ "rdfs:label": "LowLactoseDiet"
+ },
+ {
+ "@id": "schema:sku",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
+ "rdfs:label": "sku",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:Quotation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A quotation. Often but not necessarily from some written work, attributable to a real world author and - if associated with a fictional character - to any fictional Person. Use [[isBasedOn]] to link to source/origin. The [[recordedIn]] property can be used to reference a Quotation from an [[Event]].",
+ "rdfs:label": "Quotation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/271"
+ }
+ },
+ {
+ "@id": "schema:orderItemNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The identifier of the order item.",
+ "rdfs:label": "orderItemNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:OrderItem"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:speechToTextMarkup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898).",
+ "rdfs:label": "speechToTextMarkup",
+ "schema:domainIncludes": {
+ "@id": "schema:PronounceableText"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:gettingTestedInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.",
+ "rdfs:label": "gettingTestedInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:DisagreeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "DisagreeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:deathPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the person died.",
+ "rdfs:label": "deathPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:OnlineOnly",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available only online.",
+ "rdfs:label": "OnlineOnly"
+ },
+ {
+ "@id": "schema:additionalType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
+ "rdfs:label": "additionalType",
+ "rdfs:subPropertyOf": {
+ "@id": "rdf:type"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:eduQuestionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".",
+ "rdfs:label": "eduQuestionType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SolveMathAction"
+ },
+ {
+ "@id": "schema:Question"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2636"
+ }
+ },
+ {
+ "@id": "schema:geoContains",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoContains",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeospatialGeometry"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PropertyValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.\\n\\n Always use specific schema.org properties when a) they exist and b) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.\n ",
+ "rdfs:label": "PropertyValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:identifyingTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A diagnostic test that can identify this sign.",
+ "rdfs:label": "identifyingTest",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalSign"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
+ }
+ },
+ {
+ "@id": "schema:minimumPaymentDue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The minimum payment required at this time.",
+ "rdfs:label": "minimumPaymentDue",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ }
+ ]
+ },
+ {
+ "@id": "schema:alumniOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that the person is an alumni of.",
+ "rdfs:label": "alumniOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:alumni"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:EducationalOrganization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:colleagues",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A colleague of the person.",
+ "rdfs:label": "colleagues",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:colleague"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemUK",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "United Kingdom size system for wearables.",
+ "rdfs:label": "WearableSizeSystemUK",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:acceptedPaymentMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The payment method(s) accepted by seller for this offer.",
+ "rdfs:label": "acceptedPaymentMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:PaymentMethod"
+ },
+ {
+ "@id": "schema:LoanOrCredit"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:usesHealthPlanIdStandard",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The standard for interpreting the Plan ID. The preferred is \"HIOS\". See the Centers for Medicare & Medicaid Services for more details.",
+ "rdfs:label": "usesHealthPlanIdStandard",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelDownloadAndPrint",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Indicated that a return label must be downloaded and printed by the customer.",
+ "rdfs:label": "ReturnLabelDownloadAndPrint",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:BoardingPolicyType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of boarding policy used by an airline.",
+ "rdfs:label": "BoardingPolicyType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:sponsor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
+ "rdfs:label": "sponsor",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:MedicalStudy"
+ },
+ {
+ "@id": "schema:Grant"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:availableDeliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The delivery method(s) available for this offer.",
+ "rdfs:label": "availableDeliveryMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:hasCategoryCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A Category code contained in this code set.",
+ "rdfs:label": "hasCategoryCode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasDefinedTerm"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CategoryCodeSet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CategoryCode"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:downloadUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If the file can be downloaded, URL to download the binary.",
+ "rdfs:label": "downloadUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:availableFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "When the item is available for pickup from the store, locker, etc.",
+ "rdfs:label": "availableFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:DeliveryEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:musicBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The composer of the soundtrack.",
+ "rdfs:label": "musicBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MusicGroup"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:isUnlabelledFallback",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[ShippingRateSettings]] are intended to apply to all [[OfferShippingDetails]] published by the same merchant, when referenced by a [[shippingSettingsLink]] in those settings. It is not meaningful to use a 'true' value for this property alongside a transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings.",
+ "rdfs:label": "isUnlabelledFallback",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ },
+ {
+ "@id": "schema:ShippingRateSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:incentives",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of bonus and commission compensation aspects of the job.",
+ "rdfs:label": "incentives",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:incentiveCompensation"
+ }
+ },
+ {
+ "@id": "schema:Wholesale",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the wholesale acquisition cost of the drug.",
+ "rdfs:label": "Wholesale",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ItemPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A page devoted to a single item, such as a particular product or hotel.",
+ "rdfs:label": "ItemPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA1Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA1Plus",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:organizer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organizer of an Event.",
+ "rdfs:label": "organizer",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Reservoir",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.",
+ "rdfs:label": "Reservoir",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:EBook",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Ebook.",
+ "rdfs:label": "EBook"
+ },
+ {
+ "@id": "schema:mechanismOfAction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.",
+ "rdfs:label": "mechanismOfAction",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:LocalBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.",
+ "rdfs:label": "LocalBusiness",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://www.w3.org/ns/regorg#RegisteredOrganization"
+ }
+ },
+ {
+ "@id": "schema:SelfCareHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Self care actions or measures that can be taken to sooth, health or avoid a topic. This may be carried at home and can be carried/managed by the person itself.",
+ "rdfs:label": "SelfCareHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:yearBuilt",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). ",
+ "rdfs:label": "yearBuilt",
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ }
+ },
+ {
+ "@id": "schema:RisksOrComplicationsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about the risk factors and possible complications that may follow a topic.",
+ "rdfs:label": "RisksOrComplicationsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:PhysicalExam",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of physical examination of a patient performed by a physician. ",
+ "rdfs:label": "PhysicalExam",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:gameTip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Links to tips, tactics, etc.",
+ "rdfs:label": "gameTip",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoGame"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Movie",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A movie.",
+ "rdfs:label": "Movie",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:videoQuality",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quality of the video.",
+ "rdfs:label": "videoQuality",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:False",
+ "@type": "schema:Boolean",
+ "rdfs:comment": "The boolean value false.",
+ "rdfs:label": "False"
+ },
+ {
+ "@id": "schema:playMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.",
+ "rdfs:label": "playMode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:GamePlayMode"
+ }
+ },
+ {
+ "@id": "schema:OfflineEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "OfflineEventAttendanceMode - an event that is primarily conducted offline. ",
+ "rdfs:label": "OfflineEventAttendanceMode",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
+ },
+ {
+ "@id": "schema:Integer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: Integer.",
+ "rdfs:label": "Integer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:artworkSurface",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.",
+ "rdfs:label": "artworkSurface",
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:spokenByCharacter",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.",
+ "rdfs:label": "spokenByCharacter",
+ "schema:domainIncludes": {
+ "@id": "schema:Quotation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/271"
+ }
+ },
+ {
+ "@id": "schema:OrderItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.",
+ "rdfs:label": "OrderItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:CaseSeries",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.",
+ "rdfs:label": "CaseSeries",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:coach",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person that acts in a coaching role for a sports team.",
+ "rdfs:label": "coach",
+ "schema:domainIncludes": {
+ "@id": "schema:SportsTeam"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:aircraft",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The kind of aircraft (e.g., \"Boeing 747\").",
+ "rdfs:label": "aircraft",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Vehicle"
+ }
+ ]
+ },
+ {
+ "@id": "schema:diagram",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.",
+ "rdfs:label": "diagram",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ImageObject"
+ }
+ },
+ {
+ "@id": "schema:stage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stage of the condition, if applicable.",
+ "rdfs:label": "stage",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalConditionStage"
+ }
+ },
+ {
+ "@id": "schema:Preschool",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A preschool.",
+ "rdfs:label": "Preschool",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementWaist",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of natural waistline (between hip bones and lower ribs). Used, for example, to fit pants.",
+ "rdfs:label": "BodyMeasurementWaist",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:character",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Fictional person connected with a creative work.",
+ "rdfs:label": "character",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:CivicStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A public structure, such as a town hall or concert hall.",
+ "rdfs:label": "CivicStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:NotYetRecruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Not yet recruiting.",
+ "rdfs:label": "NotYetRecruiting",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/cmd/glcon/main.go b/cmd/glcon/main.go
index a0f0d46c..3c0d48a6 100644
--- a/cmd/glcon/main.go
+++ b/cmd/glcon/main.go
@@ -2,8 +2,12 @@ package main
import (
"github.com/gleanerio/gleaner/pkg/cli"
+ log "github.com/sirupsen/logrus"
)
+var VERSION string
+
func main() {
+ log.Info("version: ", VERSION)
cli.Execute()
}
diff --git a/cmd/gleaner/main.go b/cmd/gleaner/main.go
index 6dc780bd..28ea06ef 100644
--- a/cmd/gleaner/main.go
+++ b/cmd/gleaner/main.go
@@ -3,9 +3,10 @@ package main
import (
"flag"
"fmt"
+ "github.com/gleanerio/gleaner/internal/check"
"github.com/gleanerio/gleaner/internal/config"
"github.com/gleanerio/gleaner/pkg"
- "log"
+ log "github.com/sirupsen/logrus"
"os"
"path/filepath"
@@ -16,22 +17,52 @@ import (
"github.com/gleanerio/gleaner/internal/objects"
)
-var viperVal, sourceVal, modeVal string
-var setupVal bool
+var viperVal, sourceVal, modeVal, logVal string
+var setupVal, rudeVal bool
+
+// pass -ldflags "-X main.version=testline"
+// go build -ldflags "-X main.version=testline" main.go
+
+var VERSION string
func init() {
- log.SetFlags(log.Lshortfile)
- // log.SetOutput(ioutil.Discard) // turn off all logging
+ // Output to stdout instead of the default stderr. Can be any io.Writer, see below for File example
+ fmt.Println("version: ", VERSION)
+
+ common.InitLogging()
+ //// name the file with the date and time
+ //const layout = "2006-01-02-15-04-05"
+ //t := time.Now()
+ //lf := fmt.Sprintf("gleaner-%s.log", t.Format(layout))
+ //
+ //LogFile := lf // log to custom file
+ //logFile, err := os.OpenFile(LogFile, os.O_APPEND|os.O_RDWR|os.O_CREATE, 0644)
+ //if err != nil {
+ // log.Panic(err)
+ //}
+ //
+ //log.SetFormatter(&log.JSONFormatter{}) // Log as JSON instead of the default ASCII formatter.
+ //log.SetReportCaller(true) // include file name and line number
+ //mw := io.MultiWriter(os.Stdout, logFile)
+ //log.SetOutput(mw)
flag.BoolVar(&setupVal, "setup", false, "Run Gleaner configuration check and exit")
flag.StringVar(&sourceVal, "source", "", "Override config file source(s) to specify an index target")
+ flag.BoolVar(&rudeVal, "rude", false, "Ignore any robots.txt crawl delays or allow / disallow statements")
flag.StringVar(&viperVal, "cfg", "config", "Configuration file (can be YAML, JSON) Do NOT provide the extension in the command line. -cfg file not -cfg file.yml")
flag.StringVar(&modeVal, "mode", "full", "Set the mode (full | diff) to index all or just diffs")
+ flag.StringVar(&logVal, "log", "warn", "The log level to output (trace | debug | info | warn | error | fatal)")
}
func main() {
- log.Println("EarthCube Gleaner")
+ fmt.Println("EarthCube Gleaner")
flag.Parse() // parse any command line flags...
+ lvl, err := log.ParseLevel(logVal)
+
+ if err != nil {
+ log.Fatal("invalid log level:", err.Error())
+ }
+ log.SetLevel(lvl)
// BEGIN profile section
@@ -55,18 +86,16 @@ func main() {
// END profile section
var v1 *viper.Viper
- var err error
// Load the config file and set some defaults (config overrides)
if isFlagPassed("cfg") {
//v1, err = readConfig(viperVal, map[string]interface{}{})
v1, err = config.ReadGleanerConfig(filepath.Base(viperVal), filepath.Dir(viperVal))
if err != nil {
- log.Printf("error when reading config: %v", err)
- os.Exit(1)
+ log.Fatal("error when reading config:", err)
}
} else {
- log.Println("Gleaner must be run with a config file: -cfg CONFIGFILE")
+ log.Error("Gleaner must be run with a config file: -cfg CONFIGFILE")
flag.Usage()
os.Exit(0)
}
@@ -83,7 +112,7 @@ func main() {
var domains []objects.Sources
err := v1.UnmarshalKey("sources", &domains)
if err != nil {
- log.Println(err)
+ log.Warn(err)
}
for _, k := range domains {
@@ -93,13 +122,19 @@ func main() {
}
if len(tmp) == 0 {
- log.Println("CAUTION: no sources, did your -source VALUE match a sources.name VALUE in your config file?")
+ log.Error("CAUTION: no matching source, did your -source VALUE match a sources.name VALUE in your config file?")
os.Exit(0)
}
configMap := v1.AllSettings()
delete(configMap, "sources")
v1.Set("sources", tmp)
+
+ if rudeVal {
+ v1.Set("rude", true)
+ }
+ } else if rudeVal {
+ log.Error("--rude can only be used with --source, not globally.")
}
// Parse a new mode entry from command line if present
@@ -114,23 +149,21 @@ func main() {
// If requested, set up the buckets
if setupVal {
- log.Println("Setting up buckets")
+ log.Info("Setting up buckets")
//err := check.MakeBuckets(mc, bucketName)
- err = pkg.Setup(mc, v1)
+ err = check.Setup(mc, v1)
if err != nil {
- log.Println("Error making buckets for setup call")
- os.Exit(1)
+ log.Fatal("Error making buckets for setup call")
}
- log.Println("Buckets generated. Object store should be ready for runs")
+ log.Info("Buckets generated. Object store should be ready for runs")
os.Exit(0)
}
// Validate Minio access
- err = pkg.PreflightChecks(mc, v1)
+ err = check.PreflightChecks(mc, v1)
if err != nil {
- log.Printf("Preflight Check failed. Make sure the minio server is running, accessible and has been setup. %s ", err)
- os.Exit(1)
+ log.Fatal("Preflight Check failed. Make sure the minio server is running, accessible and has been setup.", err)
}
//err = check.ConnCheck(mc)
@@ -153,22 +186,23 @@ func main() {
}
defer db.Close()
+ // Defer a function to be called on successful ending. Note, if gleaner crashes, this will NOT
+ // get called, do consideration must be taken in such a cases. Some errors in such cases should
+ // be sent to stdout to be captured by docker, k8s, Airflow etc in case they are being used.
+
+ defer func() {
+ fmt.Println("Calling cleanUp on a successful run")
+ cleanUp()
+ }()
+
//cli(mc, v1, db)
pkg.Cli(mc, v1, db) // move to a common call in batch.go
}
-//func readConfig(filename string, defaults map[string]interface{}) (*viper.Viper, error) {
-// v := viper.New()
-// for key, value := range defaults {
-// v.SetDefault(key, value)
-// }
-// v.SetConfigName(filename)
-// v.SetConfigType("yaml")
-// v.AddConfigPath(".")
-// v.AutomaticEnv()
-// err := v.ReadInConfig()
-// return v, err
-//}
+func cleanUp() {
+ // copy log to s3 logs prefix (make sure log files are unique by time or other)
+ fmt.Println("On success, will, if flagged, copy the log file to object store and delete it")
+}
func isFlagPassed(name string) bool {
found := false
@@ -179,11 +213,3 @@ func isFlagPassed(name string) bool {
})
return found
}
-
-// func to support remove elements form the source slice
-func remove(s []objects.Sources, i int) []objects.Sources {
- fmt.Println("removing")
-
- s[i] = s[len(s)-1]
- return s[:len(s)-1]
-}
diff --git a/cmd/glweb/main.go b/cmd/glweb/main.go
index 978e39c1..44697119 100644
--- a/cmd/glweb/main.go
+++ b/cmd/glweb/main.go
@@ -12,6 +12,7 @@ import (
"github.com/minio/minio-go/v7"
"github.com/rs/xid"
"github.com/spf13/viper"
+ bolt "go.etcd.io/bbolt"
"github.com/gleanerio/gleaner/internal/common"
"github.com/gleanerio/gleaner/internal/millers"
@@ -135,7 +136,13 @@ func cli(mc *minio.Client, v1 *viper.Viper) {
mcfg := v1.GetStringMapString("gleaner")
if mcfg["summon"] == "true" {
- summoner.Summoner(mc, v1)
+ // setup the KV store to hold a record of indexed resources
+ db, err := bolt.Open("gleaner.db", 0600, nil)
+ if err != nil {
+ log.Fatal(err)
+ }
+ defer db.Close()
+ summoner.Summoner(mc, v1, db)
}
if mcfg["mill"] == "true" {
diff --git a/cmd/husker/main.go b/cmd/husker/main.go
index 120370d5..3f864b9f 100644
--- a/cmd/husker/main.go
+++ b/cmd/husker/main.go
@@ -1,7 +1,6 @@
package main
import (
- "bytes"
"flag"
"fmt"
"log"
@@ -11,6 +10,7 @@ import (
"github.com/gleanerio/gleaner/internal/summoner/acquire"
"github.com/spf13/viper"
+ bolt "go.etcd.io/bbolt"
)
var viperVal string
@@ -54,11 +54,21 @@ func main() {
// url := "http://dx.doi.org/10.7288/V4/MAGIC/15032" // magic
url := "https://dev.rvdata.us/search/fileset/100142" // rvdata
k := "demo"
- var (
- buf bytes.Buffer
- logger = log.New(&buf, "logger: ", log.Lshortfile)
- )
- err = acquire.PageRender(v1, mc, logger, 45*time.Second, url, k)
+ //var (
+ // buf bytes.Buffer
+ // logger = log.New(&buf, "logger: ", log.Lshortfile)
+ //)
+ // setup the KV store to hold a record of indexed resources
+ db, err := bolt.Open("gleaner.db", 0600, nil)
+ if err != nil {
+ log.Fatal(err)
+ }
+ defer db.Close()
+ rlogginer, _ := common.LogIssues(v1, k)
+
+ runStats := common.NewRunStats()
+ repostats := runStats.Add(k)
+ err = acquire.PageRenderAndUpload(v1, mc, 45*time.Second, url, k, db, rlogginer, repostats)
if err != nil {
panic(fmt.Errorf("error when reading config: %v", err))
}
diff --git a/configs/schemaorg-current-https.jsonld b/configs/schemaorg-current-https.jsonld
index d6b5d987..fbde772c 100644
--- a/configs/schemaorg-current-https.jsonld
+++ b/configs/schemaorg-current-https.jsonld
@@ -1,1012 +1,996 @@
{
"@context": {
+ "brick": "https://brickschema.org/schema/Brick#",
+ "csvw": "http://www.w3.org/ns/csvw#",
+ "dc": "http://purl.org/dc/elements/1.1/",
+ "dcam": "http://purl.org/dc/dcam/",
+ "dcat": "http://www.w3.org/ns/dcat#",
+ "dcmitype": "http://purl.org/dc/dcmitype/",
+ "dcterms": "http://purl.org/dc/terms/",
+ "doap": "http://usefulinc.com/ns/doap#",
+ "foaf": "http://xmlns.com/foaf/0.1/",
+ "geo": "http://www.opengis.net/ont/geosparql#",
+ "odrl": "http://www.w3.org/ns/odrl/2/",
+ "org": "http://www.w3.org/ns/org#",
+ "owl": "http://www.w3.org/2002/07/owl#",
+ "prof": "http://www.w3.org/ns/dx/prof/",
+ "prov": "http://www.w3.org/ns/prov#",
+ "qb": "http://purl.org/linked-data/cube#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"schema": "https://schema.org/",
+ "sh": "http://www.w3.org/ns/shacl#",
+ "skos": "http://www.w3.org/2004/02/skos/core#",
+ "sosa": "http://www.w3.org/ns/sosa/",
+ "ssn": "http://www.w3.org/ns/ssn/",
+ "time": "http://www.w3.org/2006/time#",
+ "vann": "http://purl.org/vocab/vann/",
+ "void": "http://rdfs.org/ns/void#",
+ "wgs": "https://www.w3.org/2003/01/geo/wgs84_pos#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@graph": [
{
- "@id": "schema:NewsMediaOrganization",
- "@type": "rdfs:Class",
- "rdfs:comment": "A News/Media organization such as a newspaper or TV station.",
- "rdfs:label": "NewsMediaOrganization",
- "rdfs:subClassOf": {
- "@id": "schema:Organization"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
+ "@id": "schema:pickupTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "When a taxi will pick up a passenger or a rental car can be picked up.",
+ "rdfs:label": "pickupTime",
+ "schema:domainIncludes": [
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:RentalCarReservation"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:TaxiReservation"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
},
{
- "@id": "schema:PlanAction",
+ "@id": "schema:GeoShape",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of planning the execution of an event/task/action/reservation/plan to a future date.",
- "rdfs:label": "PlanAction",
+ "rdfs:comment": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.",
+ "rdfs:label": "GeoShape",
"rdfs:subClassOf": {
- "@id": "schema:OrganizeAction"
- }
- },
- {
- "@id": "schema:geoMidpoint",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.",
- "rdfs:label": "geoMidpoint",
- "schema:domainIncludes": {
- "@id": "schema:GeoCircle"
+ "@id": "schema:StructuredValue"
},
- "schema:rangeIncludes": {
- "@id": "schema:GeoCoordinates"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
}
},
{
- "@id": "schema:Nonprofit501c2",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations.",
- "rdfs:label": "Nonprofit501c2",
+ "@id": "schema:WearableSizeGroupMens",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Mens\" for wearables.",
+ "rdfs:label": "WearableSizeGroupMens",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:characterName",
+ "@id": "schema:refundType",
"@type": "rdf:Property",
- "rdfs:comment": "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.",
- "rdfs:label": "characterName",
+ "rdfs:comment": "A refund type, from an enumerated list.",
+ "rdfs:label": "refundType",
"schema:domainIncludes": {
- "@id": "schema:PerformanceRole"
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:RefundTypeEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:EventCancelled",
- "@type": "schema:EventStatusType",
- "rdfs:comment": "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s).",
- "rdfs:label": "EventCancelled"
- },
- {
- "@id": "schema:calories",
+ "@id": "schema:postalCodeBegin",
"@type": "rdf:Property",
- "rdfs:comment": "The number of calories.",
- "rdfs:label": "calories",
+ "rdfs:comment": "First postal code in a range (included).",
+ "rdfs:label": "postalCodeBegin",
"schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
+ "@id": "schema:PostalCodeRangeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Energy"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:menuAddOn",
- "@type": "rdf:Property",
- "rdfs:comment": "Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.",
- "rdfs:label": "menuAddOn",
- "schema:domainIncludes": {
- "@id": "schema:MenuItem"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:MenuSection"
- },
- {
- "@id": "schema:MenuItem"
- }
- ],
+ "@id": "schema:FrontWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Front-wheel drive is a transmission layout where the engine drives the front wheels.",
+ "rdfs:label": "FrontWheelDriveConfiguration",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1541"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:sizeSystem",
+ "@id": "schema:inker",
"@type": "rdf:Property",
- "rdfs:comment": "The size system used to identify a product's size. Typically either a standard (for example, \"GS1\" or \"ISO-EN13402\"), country code (for example \"US\" or \"JP\"), or a measuring system (for example \"Metric\" or \"Imperial\").",
- "rdfs:label": "sizeSystem",
- "schema:domainIncludes": {
- "@id": "schema:SizeSpecification"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The individual who traces over the pencil drawings in ink after pencils are complete.",
+ "rdfs:label": "inker",
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:ComicStory"
},
{
- "@id": "schema:SizeSystemEnumeration"
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:codeRepository",
- "@type": "rdf:Property",
- "rdfs:comment": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).",
- "rdfs:label": "codeRepository",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareSourceCode"
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:geo",
- "@type": "rdf:Property",
- "rdfs:comment": "The geo coordinates of the place.",
- "rdfs:label": "geo",
- "schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:MonetaryAmountDistribution",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statistical distribution of monetary amounts.",
+ "rdfs:label": "MonetaryAmountDistribution",
+ "rdfs:subClassOf": {
+ "@id": "schema:QuantitativeValueDistribution"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:GeoCoordinates"
- },
- {
- "@id": "schema:GeoShape"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
},
{
- "@id": "schema:postOp",
+ "@id": "schema:cvdNumC19MechVentPats",
"@type": "rdf:Property",
- "rdfs:comment": "A description of the postoperative procedures, care, and/or followups for this device.",
- "rdfs:label": "postOp",
+ "rdfs:comment": "numc19mechventpats - HOSPITALIZED and VENTILATED: Patients hospitalized in an NHSN inpatient care location who have suspected or confirmed COVID-19 and are on a mechanical ventilator.",
+ "rdfs:label": "cvdNumC19MechVentPats",
"schema:domainIncludes": {
- "@id": "schema:MedicalDevice"
+ "@id": "schema:CDCPMDRecord"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:BodyMeasurementHead",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Maximum girth of head above the ears. Used, for example, to fit hats.",
- "rdfs:label": "BodyMeasurementHead",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:WorkersUnion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.",
+ "rdfs:label": "WorkersUnion",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/243"
}
},
{
- "@id": "schema:broadcastChannelId",
+ "@id": "schema:potentialAction",
"@type": "rdf:Property",
- "rdfs:comment": "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.",
- "rdfs:label": "broadcastChannelId",
+ "rdfs:comment": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.",
+ "rdfs:label": "potentialAction",
"schema:domainIncludes": {
- "@id": "schema:BroadcastChannel"
+ "@id": "schema:Thing"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:significantLink",
+ "@id": "schema:publishedBy",
"@type": "rdf:Property",
- "rdfs:comment": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
- "rdfs:label": "significantLink",
+ "rdfs:comment": "An agent associated with the publication event.",
+ "rdfs:label": "publishedBy",
"schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:PublicationEvent"
},
- "schema:rangeIncludes": {
- "@id": "schema:URL"
- }
- },
- {
- "@id": "schema:ListenAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of consuming audio content.",
- "rdfs:label": "ListenAction",
- "rdfs:subClassOf": {
- "@id": "schema:ConsumeAction"
- }
- },
- {
- "@id": "schema:partOfSeason",
- "@type": "rdf:Property",
- "rdfs:comment": "The season to which this episode belongs.",
- "rdfs:label": "partOfSeason",
- "rdfs:subPropertyOf": {
- "@id": "schema:isPartOf"
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
},
- "schema:domainIncludes": [
+ "schema:rangeIncludes": [
{
- "@id": "schema:Clip"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Episode"
+ "@id": "schema:Person"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:CreativeWorkSeason"
+ ]
+ },
+ {
+ "@id": "schema:Park",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A park.",
+ "rdfs:label": "Park",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:bioChemSimilarity",
+ "@id": "schema:orderStatus",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org"
- },
- "rdfs:comment": "A similar BioChemEntity, e.g., obtained by fingerprint similarity algorithms.",
- "rdfs:label": "bioChemSimilarity",
+ "rdfs:comment": "The current status of the order.",
+ "rdfs:label": "orderStatus",
"schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Order"
},
"schema:rangeIncludes": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:OrderStatus"
}
},
{
- "@id": "schema:TradeAction",
+ "@id": "schema:PetStore",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.",
- "rdfs:label": "TradeAction",
+ "rdfs:comment": "A pet store.",
+ "rdfs:label": "PetStore",
"rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:pattern",
+ "@id": "schema:floorSize",
"@type": "rdf:Property",
- "rdfs:comment": "A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.",
- "rdfs:label": "pattern",
+ "rdfs:comment": "The size of the accommodation, e.g. in square meter or squarefoot.\nTypical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard ",
+ "rdfs:label": "floorSize",
"schema:domainIncludes": [
{
- "@id": "schema:Product"
+ "@id": "schema:Accommodation"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:FloorPlan"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:DefinedTerm"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
- }
- },
- {
- "@id": "schema:Urologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.",
- "rdfs:label": "Urologic",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:PresentationDigitalDocument",
+ "@id": "schema:DDxElement",
"@type": "rdfs:Class",
- "rdfs:comment": "A file containing slides or used for a presentation.",
- "rdfs:label": "PresentationDigitalDocument",
+ "rdfs:comment": "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.",
+ "rdfs:label": "DDxElement",
"rdfs:subClassOf": {
- "@id": "schema:DigitalDocument"
+ "@id": "schema:MedicalIntangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:exercisePlan",
+ "@id": "schema:tickerSymbol",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of instrument. The exercise plan used on this action.",
- "rdfs:label": "exercisePlan",
- "rdfs:subPropertyOf": {
- "@id": "schema:instrument"
- },
+ "rdfs:comment": "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO 15022.",
+ "rdfs:label": "tickerSymbol",
"schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Corporation"
},
"schema:rangeIncludes": {
- "@id": "schema:ExercisePlan"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:creditText",
+ "@id": "schema:geoCovers",
"@type": "rdf:Property",
- "rdfs:comment": "Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.",
- "rdfs:label": "creditText",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCovers",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:iswcCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The International Standard Musical Work Code for the composition.",
+ "rdfs:label": "iswcCode",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:MusicComposition"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2659"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:Chiropractic",
- "@type": "schema:MedicineSystem",
- "rdfs:comment": "A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.",
- "rdfs:label": "Chiropractic",
+ "@id": "schema:ReturnShippingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay the return shipping costs when returning a product.",
+ "rdfs:label": "ReturnShippingFees",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:Reservation",
+ "@id": "schema:Florist",
"@type": "rdfs:Class",
- "rdfs:comment": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]].",
- "rdfs:label": "Reservation",
+ "rdfs:comment": "A florist.",
+ "rdfs:label": "Florist",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:Anesthesia",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to study of anesthetics and their application.",
- "rdfs:label": "Anesthesia",
+ "@id": "schema:AnatomicalStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.",
+ "rdfs:label": "AnatomicalStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:backstory",
+ "@id": "schema:screenshot",
"@type": "rdf:Property",
- "rdfs:comment": "For an [[Article]], typically a [[NewsArticle]], the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.",
- "rdfs:label": "backstory",
+ "rdfs:comment": "A link to a screenshot image of the app.",
+ "rdfs:label": "screenshot",
"schema:domainIncludes": {
- "@id": "schema:Article"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": [
{
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:Text"
- }
- ],
- "schema:source": [
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:URL"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ "@id": "schema:ImageObject"
}
]
},
{
- "@id": "schema:WearableMeasurementHips",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the hip section, for example of a skirt",
- "rdfs:label": "WearableMeasurementHips",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:alignmentType",
+ "@id": "schema:ticketNumber",
"@type": "rdf:Property",
- "rdfs:comment": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.",
- "rdfs:label": "alignmentType",
+ "rdfs:comment": "The unique identifier for the ticket.",
+ "rdfs:label": "ticketNumber",
"schema:domainIncludes": {
- "@id": "schema:AlignmentObject"
+ "@id": "schema:Ticket"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:geoEquals",
+ "@id": "schema:WearableSizeSystemBR",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Brazilian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemBR",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:actors",
"@type": "rdf:Property",
- "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship)",
- "rdfs:label": "geoEquals",
+ "rdfs:comment": "An actor, e.g. in TV, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "actors",
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:RadioSeries"
},
{
- "@id": "schema:GeospatialGeometry"
- }
- ],
- "schema:rangeIncludes": [
+ "@id": "schema:Episode"
+ },
{
- "@id": "schema:Place"
+ "@id": "schema:VideoGameSeries"
},
{
- "@id": "schema:GeospatialGeometry"
- }
- ]
- },
- {
- "@id": "schema:applicationSubCategory",
- "@type": "rdf:Property",
- "rdfs:comment": "Subcategory of the application, e.g. 'Arcade Game'.",
- "rdfs:label": "applicationSubCategory",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
- },
- "schema:rangeIncludes": [
+ "@id": "schema:Movie"
+ },
{
- "@id": "schema:URL"
+ "@id": "schema:MovieSeries"
},
{
- "@id": "schema:Text"
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:TVSeries"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:actor"
+ }
},
{
- "@id": "schema:safetyConsideration",
- "@type": "rdf:Property",
- "rdfs:comment": "Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.",
- "rdfs:label": "safetyConsideration",
- "schema:domainIncludes": {
- "@id": "schema:DietarySupplement"
- },
+ "@id": "schema:NonprofitSBBI",
+ "@type": "schema:NLNonprofitType",
+ "rdfs:comment": "NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution (NL).",
+ "rdfs:label": "NonprofitSBBI",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:AlignmentObject",
+ "@id": "schema:DataCatalog",
"@type": "rdfs:Class",
- "rdfs:comment": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.",
- "rdfs:label": "AlignmentObject",
+ "owl:equivalentClass": {
+ "@id": "dcat:Catalog"
+ },
+ "rdfs:comment": "A collection of datasets.",
+ "rdfs:label": "DataCatalog",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:CreativeWork"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
}
},
{
- "@id": "schema:BedAndBreakfast",
+ "@id": "schema:WebPageElement",
"@type": "rdfs:Class",
- "rdfs:comment": "Bed and breakfast.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "BedAndBreakfast",
+ "rdfs:comment": "A web page element, like a table or an image.",
+ "rdfs:label": "WebPageElement",
"rdfs:subClassOf": {
- "@id": "schema:LodgingBusiness"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:BusinessAudience",
- "@type": "rdfs:Class",
- "rdfs:comment": "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.",
- "rdfs:label": "BusinessAudience",
- "rdfs:subClassOf": {
- "@id": "schema:Audience"
- }
+ "@id": "schema:longitude",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).",
+ "rdfs:label": "longitude",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
},
{
- "@id": "schema:subOrganization",
+ "@id": "schema:servicePhone",
"@type": "rdf:Property",
- "rdfs:comment": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.",
- "rdfs:label": "subOrganization",
+ "rdfs:comment": "The phone number to use to access the service.",
+ "rdfs:label": "servicePhone",
"schema:domainIncludes": {
- "@id": "schema:Organization"
- },
- "schema:inverseOf": {
- "@id": "schema:parentOrganization"
+ "@id": "schema:ServiceChannel"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:ContactPoint"
}
},
{
- "@id": "schema:articleSection",
- "@type": "rdf:Property",
- "rdfs:comment": "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.",
- "rdfs:label": "articleSection",
- "schema:domainIncludes": {
- "@id": "schema:Article"
+ "@id": "schema:Apartment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An apartment (in American English) or flat (in British English) is a self-contained housing unit (a type of residential real estate) that occupies only part of a building (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Apartment).",
+ "rdfs:label": "Apartment",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:JoinAction",
+ "@id": "schema:LiteraryEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "An agent joins an event/group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.",
- "rdfs:label": "JoinAction",
+ "rdfs:comment": "Event type: Literary event.",
+ "rdfs:label": "LiteraryEvent",
"rdfs:subClassOf": {
- "@id": "schema:InteractAction"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:numberOfBedrooms",
+ "@id": "schema:highPrice",
"@type": "rdf:Property",
- "rdfs:comment": "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].",
- "rdfs:label": "numberOfBedrooms",
+ "rdfs:comment": "The highest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "highPrice",
+ "schema:domainIncludes": {
+ "@id": "schema:AggregateOffer"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:serviceArea",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area where the service is provided.",
+ "rdfs:label": "serviceArea",
"schema:domainIncludes": [
{
- "@id": "schema:Accommodation"
+ "@id": "schema:Service"
},
{
- "@id": "schema:FloorPlan"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:ApartmentComplex"
+ "@id": "schema:ContactPoint"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:Number"
+ "@id": "schema:AdministrativeArea"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "schema:supersededBy": {
+ "@id": "schema:areaServed"
}
},
{
- "@id": "schema:MedicalTest",
+ "@id": "schema:MovieClip",
"@type": "rdfs:Class",
- "rdfs:comment": "Any medical test, typically performed for diagnostic purposes.",
- "rdfs:label": "MedicalTest",
+ "rdfs:comment": "A short segment/part of a movie.",
+ "rdfs:label": "MovieClip",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Clip"
}
},
{
- "@id": "schema:Person",
+ "@id": "schema:EducationEvent",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://xmlns.com/foaf/0.1/Person"
- },
- "rdfs:comment": "A person (alive, dead, undead, or fictional).",
- "rdfs:label": "Person",
+ "rdfs:comment": "Event type: Education event.",
+ "rdfs:label": "EducationEvent",
"rdfs:subClassOf": {
- "@id": "schema:Thing"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:contactPoint",
+ "@id": "schema:Abdomen",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Abdomen clinical examination.",
+ "rdfs:label": "Abdomen",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:embedUrl",
"@type": "rdf:Property",
- "rdfs:comment": "A contact point for a person or organization.",
- "rdfs:label": "contactPoint",
- "schema:domainIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:HealthInsurancePlan"
- },
- {
- "@id": "schema:Organization"
- }
- ],
+ "rdfs:comment": "A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.",
+ "rdfs:label": "embedUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
"schema:rangeIncludes": {
- "@id": "schema:ContactPoint"
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:BodyMeasurementBust",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Maximum girth of bust. Used, for example, to fit women's suits.",
- "rdfs:label": "BodyMeasurementBust",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "schema:SocialEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Social event.",
+ "rdfs:label": "SocialEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:worstRating",
+ "@id": "schema:permissions",
"@type": "rdf:Property",
- "rdfs:comment": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.",
- "rdfs:label": "worstRating",
+ "rdfs:comment": "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).",
+ "rdfs:label": "permissions",
"schema:domainIncludes": {
- "@id": "schema:Rating"
+ "@id": "schema:SoftwareApplication"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Number"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:MedicalCode",
+ "@id": "schema:ImagingTest",
"@type": "rdfs:Class",
- "rdfs:comment": "A code for a medical entity.",
- "rdfs:label": "MedicalCode",
- "rdfs:subClassOf": [
+ "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes.",
+ "rdfs:label": "ImagingTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:item",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists').",
+ "rdfs:label": "item",
+ "schema:domainIncludes": [
{
- "@id": "schema:CategoryCode"
+ "@id": "schema:ListItem"
},
{
- "@id": "schema:MedicalIntangible"
+ "@id": "schema:DataFeedItem"
}
],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:Enumeration",
+ "@id": "schema:incentiveCompensation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of bonus and commission compensation aspects of the job.",
+ "rdfs:label": "incentiveCompensation",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:InteractionCounter",
"@type": "rdfs:Class",
- "rdfs:comment": "Lists or enumerations—for example, a list of cuisines or music genres, etc.",
- "rdfs:label": "Enumeration",
+ "rdfs:comment": "A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.",
+ "rdfs:label": "InteractionCounter",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:StructuredValue"
}
},
{
- "@id": "schema:publicAccess",
+ "@id": "schema:priceRange",
"@type": "rdf:Property",
- "rdfs:comment": "A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value",
- "rdfs:label": "publicAccess",
+ "rdfs:comment": "The price range of the business, for example ```$$$```.",
+ "rdfs:label": "priceRange",
"schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:LocalBusiness"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:customerRemorseReturnFees",
+ "@id": "schema:ParentAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics describing parents, who can be interested in viewing some content.",
+ "rdfs:label": "ParentAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:PeopleAudience"
+ }
+ },
+ {
+ "@id": "schema:recognizingAuthority",
"@type": "rdf:Property",
- "rdfs:comment": "The type of return fees if the product is returned due to customer remorse.",
- "rdfs:label": "customerRemorseReturnFees",
+ "rdfs:comment": "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.",
+ "rdfs:label": "recognizingAuthority",
"schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
+ "@id": "schema:MedicalEntity"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:ReturnFeesEnumeration"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:Musculoskeletal",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.",
- "rdfs:label": "Musculoskeletal",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:ProductModel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A datasheet or vendor specification of a product (in the sense of a prototypical description).",
+ "rdfs:label": "ProductModel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:experienceRequirements",
+ "@id": "schema:originalMediaLink",
"@type": "rdf:Property",
- "rdfs:comment": "Description of skills and experience needed for the position or Occupation.",
- "rdfs:label": "experienceRequirements",
- "schema:domainIncludes": [
+ "rdfs:comment": "Link to the page containing an original version of the content, or directly to an online copy of the original [[MediaObject]] content, e.g. video file.",
+ "rdfs:label": "originalMediaLink",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaReview"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Occupation"
+ "@id": "schema:WebPage"
},
{
- "@id": "schema:JobPosting"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:OccupationalExperienceRequirements"
+ "@id": "schema:MediaObject"
},
{
- "@id": "schema:Text"
+ "@id": "schema:URL"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- }
- },
- {
- "@id": "schema:BroadcastRelease",
- "@type": "schema:MusicAlbumReleaseType",
- "rdfs:comment": "BroadcastRelease.",
- "rdfs:label": "BroadcastRelease",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
- },
- {
- "@id": "schema:Electrician",
- "@type": "rdfs:Class",
- "rdfs:comment": "An electrician.",
- "rdfs:label": "Electrician",
- "rdfs:subClassOf": {
- "@id": "schema:HomeAndConstructionBusiness"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:legislationPassedBy",
+ "@id": "schema:constrainingProperty",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#passed_by"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#passed_by"
- },
- "rdfs:comment": "The person or organization that originally passed or made the law : typically parliament (for primary legislation) or government (for secondary legislation). This indicates the \"legal author\" of the law, as opposed to its physical author.",
- "rdfs:label": "legislationPassedBy",
- "rdfs:subPropertyOf": {
- "@id": "schema:creator"
- },
+ "rdfs:comment": "Indicates a property used as a constraint to define a [[StatisticalPopulation]] with respect to the set of entities\n corresponding to an indicated type (via [[populationType]]).",
+ "rdfs:label": "constrainingProperty",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:StatisticalPopulation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ],
- "schema:source": [
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
},
{
- "@id": "schema:mainEntityOfPage",
+ "@id": "schema:founder",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.",
- "rdfs:label": "mainEntityOfPage",
+ "rdfs:comment": "A person who founded this organization.",
+ "rdfs:label": "founder",
"schema:domainIncludes": {
- "@id": "schema:Thing"
- },
- "schema:inverseOf": {
- "@id": "schema:mainEntity"
+ "@id": "schema:Organization"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
},
{
- "@id": "schema:orderDate",
+ "@id": "schema:option",
"@type": "rdf:Property",
- "rdfs:comment": "Date order was placed.",
- "rdfs:label": "orderDate",
+ "rdfs:comment": "A sub property of object. The options subject to this action.",
+ "rdfs:label": "option",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
"schema:domainIncludes": {
- "@id": "schema:Order"
+ "@id": "schema:ChooseAction"
},
"schema:rangeIncludes": [
{
- "@id": "schema:DateTime"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Date"
+ "@id": "schema:Thing"
}
- ]
- },
- {
- "@id": "schema:BodyMeasurementWaist",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Girth of natural waistline (between hip bones and lower ribs). Used, for example, to fit pants.",
- "rdfs:label": "BodyMeasurementWaist",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:actionOption"
}
},
{
- "@id": "schema:trackingNumber",
+ "@id": "schema:reviewBody",
"@type": "rdf:Property",
- "rdfs:comment": "Shipper tracking number.",
- "rdfs:label": "trackingNumber",
+ "rdfs:comment": "The actual body of the review.",
+ "rdfs:label": "reviewBody",
"schema:domainIncludes": {
- "@id": "schema:ParcelDelivery"
+ "@id": "schema:Review"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:LeisureTimeActivity",
- "@type": "schema:PhysicalActivityCategory",
- "rdfs:comment": "Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.",
- "rdfs:label": "LeisureTimeActivity",
+ "@id": "schema:PlaceboControlledTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A placebo-controlled trial design.",
+ "rdfs:label": "PlaceboControlledTrial",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Podiatric",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.",
- "rdfs:label": "Podiatric",
+ "@id": "schema:PhotographAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of capturing still images of objects using a camera.",
+ "rdfs:label": "PhotographAction",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:CreateAction"
}
},
{
- "@id": "schema:CancelAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of asserting that a future event/action is no longer going to happen.\\n\\nRelated actions:\\n\\n* [[ConfirmAction]]: The antonym of CancelAction.",
- "rdfs:label": "CancelAction",
- "rdfs:subClassOf": {
- "@id": "schema:PlanAction"
+ "@id": "schema:Nonprofit501c4",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees.",
+ "rdfs:label": "Nonprofit501c4",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:issuedThrough",
+ "@id": "schema:vehicleSpecialUsage",
"@type": "rdf:Property",
- "rdfs:comment": "The service through with the permit was granted.",
- "rdfs:label": "issuedThrough",
+ "rdfs:comment": "Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.",
+ "rdfs:label": "vehicleSpecialUsage",
"schema:domainIncludes": {
- "@id": "schema:Permit"
+ "@id": "schema:Vehicle"
},
- "schema:rangeIncludes": {
- "@id": "schema:Service"
- }
- },
- {
- "@id": "schema:NotYetRecruiting",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Not yet recruiting.",
- "rdfs:label": "NotYetRecruiting",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:AssignAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of allocating an action/event/task to some destination (someone or something).",
- "rdfs:label": "AssignAction",
- "rdfs:subClassOf": {
- "@id": "schema:AllocateAction"
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CarUsageType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:hiringOrganization",
+ "@id": "schema:album",
"@type": "rdf:Property",
- "rdfs:comment": "Organization offering the job position.",
- "rdfs:label": "hiringOrganization",
+ "rdfs:comment": "A music album.",
+ "rdfs:label": "album",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:MusicGroup"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:MusicAlbum"
}
},
{
- "@id": "schema:MediaReview",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [[MediaReview]] is a more specialized form of Review dedicated to the evaluation of media content online, typically in the context of fact-checking and misinformation.\n For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types. This definition is\n a work in progress. While the [[MediaManipulationRatingEnumeration]] list reflects significant community review amongst fact-checkers and others working\n to combat misinformation, the specific structures for representing media objects, their versions and publication context, is still evolving. Similarly, best practices for the relationship between [[MediaReview]] and [[ClaimReview]] markup has not yet been finalized.",
- "rdfs:label": "MediaReview",
- "rdfs:subClassOf": {
- "@id": "schema:Review"
+ "@id": "schema:includedInHealthInsurancePlan",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The insurance plans that cover this drug.",
+ "rdfs:label": "includedInHealthInsurancePlan",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:Airport",
- "@type": "rdfs:Class",
- "rdfs:comment": "An airport.",
- "rdfs:label": "Airport",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:BodyMeasurementWeight",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Body weight. Used, for example, to measure pantyhose.",
+ "rdfs:label": "BodyMeasurementWeight",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:Quiz",
+ "@id": "schema:FlightReservation",
"@type": "rdfs:Class",
- "rdfs:comment": "Quiz: A test of knowledge, skills and abilities.",
- "rdfs:label": "Quiz",
+ "rdfs:comment": "A reservation for air travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "FlightReservation",
"rdfs:subClassOf": {
- "@id": "schema:LearningResource"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2611"
+ "@id": "schema:Reservation"
}
},
{
- "@id": "schema:Retail",
- "@type": "schema:DrugCostCategory",
- "rdfs:comment": "The drug's cost represents the retail cost of the drug.",
- "rdfs:label": "Retail",
+ "@id": "schema:causeOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The condition, complication, symptom, sign, etc. caused.",
+ "rdfs:label": "causeOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCause"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
}
},
{
- "@id": "schema:directApply",
+ "@id": "schema:cutoffTime",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates whether an [[url]] that is associated with a [[JobPosting]] enables direct application for the job, via the posting website. A job posting is considered to have directApply of [[True]] if an application process for the specified job can be directly initiated via the url(s) given (noting that e.g. multiple internet domains might nevertheless be involved at an implementation level). A value of [[False]] is appropriate if there is no clear path to applying directly online for the specified job, navigating directly from the JobPosting url(s) supplied.",
- "rdfs:label": "directApply",
+ "rdfs:comment": "Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the [[ShippingRateSettings]] publication pattern. The time is indicated using the ISO-8601 Time format, e.g. \"23:30:00-05:00\" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).",
+ "rdfs:label": "cutoffTime",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:ShippingDeliveryTime"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Time"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2907"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:increasesRiskOf",
+ "@id": "schema:MonetaryGrant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A monetary grant.",
+ "rdfs:label": "MonetaryGrant",
+ "rdfs:subClassOf": {
+ "@id": "schema:Grant"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:studySubject",
"@type": "rdf:Property",
- "rdfs:comment": "The condition, complication, etc. influenced by this factor.",
- "rdfs:label": "increasesRiskOf",
+ "rdfs:comment": "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.",
+ "rdfs:label": "studySubject",
"schema:domainIncludes": {
- "@id": "schema:MedicalRiskFactor"
+ "@id": "schema:MedicalStudy"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
@@ -1016,27 +1000,57 @@
}
},
{
- "@id": "schema:Dentist",
+ "@id": "schema:TreatmentIndication",
"@type": "rdfs:Class",
- "rdfs:comment": "A dentist.",
- "rdfs:label": "Dentist",
- "rdfs:subClassOf": [
+ "rdfs:comment": "An indication for treating an underlying condition, symptom, etc.",
+ "rdfs:label": "TreatmentIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Cemetery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A graveyard.",
+ "rdfs:label": "Cemetery",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:hasMeasurement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A product measurement, for example the inseam of pants, the wheel size of a bicycle, or the gauge of a screw. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings.",
+ "rdfs:label": "hasMeasurement",
+ "schema:domainIncludes": [
{
- "@id": "schema:LocalBusiness"
+ "@id": "schema:SizeSpecification"
},
{
- "@id": "schema:MedicalOrganization"
+ "@id": "schema:Product"
},
{
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:Offer"
}
- ]
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
},
{
- "@id": "schema:includedDataCatalog",
+ "@id": "schema:catalog",
"@type": "rdf:Property",
- "rdfs:comment": "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').",
- "rdfs:label": "includedDataCatalog",
+ "rdfs:comment": "A data catalog which contains this dataset.",
+ "rdfs:label": "catalog",
"schema:domainIncludes": {
"@id": "schema:Dataset"
},
@@ -1048,90 +1062,98 @@
}
},
{
- "@id": "schema:Synagogue",
- "@type": "rdfs:Class",
- "rdfs:comment": "A synagogue.",
- "rdfs:label": "Synagogue",
- "rdfs:subClassOf": {
- "@id": "schema:PlaceOfWorship"
- }
- },
- {
- "@id": "schema:Order",
- "@type": "rdfs:Class",
- "rdfs:comment": "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.",
- "rdfs:label": "Order",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:EUEnergyEfficiencyCategoryA3Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA3Plus",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:BikeStore",
+ "@id": "schema:DigitalPlatformEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A bike store.",
- "rdfs:label": "BikeStore",
+ "rdfs:comment": "Enumerates some common technology platforms, for use with properties such as [[actionPlatform]]. It is not supposed to be comprehensive - when a suitable code is not enumerated here, textual or URL values can be used instead. These codes are at a fairly high level and do not deal with versioning and other nuance. Additional codes can be suggested [in github](https://github.com/schemaorg/schemaorg/issues/3057). ",
+ "rdfs:label": "DigitalPlatformEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
}
},
{
- "@id": "schema:Embassy",
- "@type": "rdfs:Class",
- "rdfs:comment": "An embassy.",
- "rdfs:label": "Embassy",
- "rdfs:subClassOf": {
- "@id": "schema:GovernmentBuilding"
+ "@id": "schema:datasetTimeInterval",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).",
+ "rdfs:label": "datasetTimeInterval",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:temporalCoverage"
}
},
{
- "@id": "schema:OccupationalActivity",
- "@type": "schema:PhysicalActivityCategory",
- "rdfs:comment": "Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.",
- "rdfs:label": "OccupationalActivity",
+ "@id": "schema:endorsers",
+ "@type": "rdf:Property",
+ "rdfs:comment": "People or organizations that endorse the plan.",
+ "rdfs:label": "endorsers",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:ChooseAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",
- "rdfs:label": "ChooseAction",
- "rdfs:subClassOf": {
- "@id": "schema:AssessAction"
- }
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
},
{
- "@id": "schema:SomeProducts",
- "@type": "rdfs:Class",
- "rdfs:comment": "A placeholder for multiple similar products of the same kind.",
- "rdfs:label": "SomeProducts",
+ "@id": "schema:PublicHealth",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine.",
+ "rdfs:label": "PublicHealth",
"rdfs:subClassOf": {
- "@id": "schema:Product"
+ "@id": "schema:MedicalBusiness"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Nonprofit501c5",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations.",
- "rdfs:label": "Nonprofit501c5",
+ "@id": "schema:WearableSizeSystemEN13402",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "EN 13402 (joint European standard for size labelling of clothes).",
+ "rdfs:label": "WearableSizeSystemEN13402",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:GamePlayMode",
+ "@id": "schema:CheckInAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player.",
- "rdfs:label": "GamePlayMode",
+ "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check-in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\\n\\nRelated actions:\\n\\n* [[CheckOutAction]]: The antonym of CheckInAction.\\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.",
+ "rdfs:label": "CheckInAction",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:CommunicateAction"
}
},
{
@@ -1147,628 +1169,442 @@
}
},
{
- "@id": "schema:duplicateTherapy",
- "@type": "rdf:Property",
- "rdfs:comment": "A therapy that duplicates or overlaps this one.",
- "rdfs:label": "duplicateTherapy",
- "schema:domainIncludes": {
- "@id": "schema:MedicalTherapy"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalTherapy"
- }
- },
- {
- "@id": "schema:numberOfBathroomsTotal",
- "@type": "rdf:Property",
- "rdfs:comment": "The total integer number of bathrooms in a some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): \"The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.\". See also [[numberOfRooms]].",
- "rdfs:label": "numberOfBathroomsTotal",
- "schema:domainIncludes": [
- {
- "@id": "schema:FloorPlan"
- },
- {
- "@id": "schema:Accommodation"
- }
- ],
+ "@id": "schema:WearableSizeGroupExtraShort",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Extra Short\" for wearables.",
+ "rdfs:label": "WearableSizeGroupExtraShort",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:MediaReviewItem",
+ "@id": "schema:EventAttendanceModeEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "Represents an item or group of closely related items treated as a unit for the sake of evaluation in a [[MediaReview]]. Authorship etc. apply to the items rather than to the curation/grouping or reviewing party.",
- "rdfs:label": "MediaReviewItem",
+ "rdfs:comment": "An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline.",
+ "rdfs:label": "EventAttendanceModeEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Enumeration"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
}
},
{
- "@id": "schema:BenefitsHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about the benefits and advantages of usage or utilization of topic.",
- "rdfs:label": "BenefitsHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:sibling",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sibling of the person.",
+ "rdfs:label": "sibling",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
- }
- },
- {
- "@id": "schema:NewCondition",
- "@type": "schema:OfferItemCondition",
- "rdfs:comment": "Indicates that the item is new.",
- "rdfs:label": "NewCondition"
- },
- {
- "@id": "schema:Nose",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Nose function assessment with clinical examination.",
- "rdfs:label": "Nose",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:Head",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Head assessment with clinical examination.",
- "rdfs:label": "Head",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:domainIncludes",
+ "@id": "schema:isGift",
"@type": "rdf:Property",
- "rdfs:comment": "Relates a property to a class that is (one of) the type(s) the property is expected to be used on.",
- "rdfs:label": "domainIncludes",
+ "rdfs:comment": "Indicates whether the offer was accepted as a gift for someone other than the buyer.",
+ "rdfs:label": "isGift",
"schema:domainIncludes": {
- "@id": "schema:Property"
- },
- "schema:isPartOf": {
- "@id": "https://meta.schema.org"
+ "@id": "schema:Order"
},
"schema:rangeIncludes": {
- "@id": "schema:Class"
- }
- },
- {
- "@id": "schema:BookmarkAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "An agent bookmarks/flags/labels/tags/marks an object.",
- "rdfs:label": "BookmarkAction",
- "rdfs:subClassOf": {
- "@id": "schema:OrganizeAction"
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:annualPercentageRate",
+ "@id": "schema:countryOfAssembly",
"@type": "rdf:Property",
- "rdfs:comment": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.",
- "rdfs:label": "annualPercentageRate",
+ "rdfs:comment": "The place where the product was assembled.",
+ "rdfs:label": "countryOfAssembly",
"schema:domainIncludes": {
- "@id": "schema:FinancialProduct"
+ "@id": "schema:Product"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:Number"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- },
- {
- "@id": "schema:ReturnLabelDownloadAndPrint",
- "@type": "schema:ReturnLabelSourceEnumeration",
- "rdfs:comment": "Indicated that a return label must be downloaded and printed by the customer.",
- "rdfs:label": "ReturnLabelDownloadAndPrint",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/991"
}
},
{
- "@id": "schema:legislationConsolidates",
+ "@id": "schema:applicationDeadline",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#consolidates"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#consolidates"
- },
- "rdfs:comment": "Indicates another legislation taken into account in this consolidated legislation (which is usually the product of an editorial process that revises the legislation). This property should be used multiple times to refer to both the original version or the previous consolidated version, and to the legislations making the change.",
- "rdfs:label": "legislationConsolidates",
+ "rdfs:comment": "The date at which the program stops collecting applications for the next enrollment cycle.",
+ "rdfs:label": "applicationDeadline",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:EducationalOccupationalProgram"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:Date"
},
- "schema:source": [
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
+ },
+ {
+ "@id": "schema:eligibleQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.",
+ "rdfs:label": "eligibleQuantity",
+ "schema:domainIncludes": [
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:Demand"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Offer"
}
- ]
- },
- {
- "@id": "schema:torque",
- "@type": "rdf:Property",
- "rdfs:comment": "The torque (turning force) of the vehicle's engine.\\n\\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\\n\\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "torque",
- "schema:domainIncludes": {
- "@id": "schema:EngineSpecification"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
+ ],
"schema:rangeIncludes": {
"@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:subEvent",
+ "@id": "schema:performer",
"@type": "rdf:Property",
- "rdfs:comment": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.",
- "rdfs:label": "subEvent",
+ "rdfs:comment": "A performer at the event—for example, a presenter, musician, musical group or actor.",
+ "rdfs:label": "performer",
"schema:domainIncludes": {
"@id": "schema:Event"
},
- "schema:inverseOf": {
- "@id": "schema:superEvent"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WearableSizeSystemJP",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Japanese size system for wearables.",
+ "rdfs:label": "WearableSizeSystemJP",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Event"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:Saturday",
- "@type": "schema:DayOfWeek",
- "rdfs:comment": "The day of the week between Friday and Sunday.",
- "rdfs:label": "Saturday",
- "schema:sameAs": {
- "@id": "http://www.wikidata.org/entity/Q131"
- }
- },
- {
- "@id": "schema:sender",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The participant who is at the sending end of the action.",
- "rdfs:label": "sender",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
- },
- "schema:domainIncludes": [
- {
- "@id": "schema:Message"
- },
- {
- "@id": "schema:ReceiveAction"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Audience"
- },
- {
- "@id": "schema:Person"
- }
- ]
+ "@id": "schema:OrderCancelled",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing cancellation of an order.",
+ "rdfs:label": "OrderCancelled"
},
{
- "@id": "schema:repetitions",
- "@type": "rdf:Property",
- "rdfs:comment": "Number of times one should repeat the activity.",
- "rdfs:label": "repetitions",
- "schema:domainIncludes": {
- "@id": "schema:ExercisePlan"
- },
+ "@id": "schema:StrengthTraining",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.",
+ "rdfs:label": "StrengthTraining",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:Number"
- }
- ]
+ }
},
{
- "@id": "schema:about",
- "@type": "rdf:Property",
- "rdfs:comment": "The subject matter of the content.",
- "rdfs:label": "about",
- "schema:domainIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:CommunicateAction"
- }
- ],
- "schema:inverseOf": {
- "@id": "schema:subjectOf"
+ "@id": "schema:MedicalProcedure",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/50731006"
},
- "schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "rdfs:comment": "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.",
+ "rdfs:label": "MedicalProcedure",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:text",
- "@type": "rdf:Property",
- "rdfs:comment": "The textual content of this CreativeWork.",
- "rdfs:label": "text",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:FoodEstablishmentReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation to dine at a food-related business.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "FoodEstablishmentReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
}
},
{
- "@id": "schema:Nonprofit501c18",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust (created before 25 June 1959).",
- "rdfs:label": "Nonprofit501c18",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:CoverArt",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The artwork on the outer surface of a CreativeWork.",
+ "rdfs:label": "CoverArt",
+ "rdfs:subClassOf": {
+ "@id": "schema:VisualArtwork"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
}
},
{
- "@id": "schema:hasMeasurement",
- "@type": "rdf:Property",
- "rdfs:comment": "A product measurement, for example the inseam of pants, the wheel size of a bicycle, or the gauge of a screw. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings.",
- "rdfs:label": "hasMeasurement",
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:SizeSpecification"
- }
- ],
+ "@id": "schema:Osteopathic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine focused on promoting the body's innate ability to heal itself.",
+ "rdfs:label": "Osteopathic",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:cholesterolContent",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of milligrams of cholesterol.",
- "rdfs:label": "cholesterolContent",
- "schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "@id": "schema:DigitalAudioTapeFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DigitalAudioTapeFormat.",
+ "rdfs:label": "DigitalAudioTapeFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:timeToComplete",
- "@type": "rdf:Property",
- "rdfs:comment": "The expected length of time to complete the program if attending full-time.",
- "rdfs:label": "timeToComplete",
- "schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:HealthInsurancePlan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A US-style health insurance plan, including PPOs, EPOs, and HMOs. ",
+ "rdfs:label": "HealthInsurancePlan",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Duration"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:OfflineTemporarily",
- "@type": "schema:GameServerStatus",
- "rdfs:comment": "Game server status: OfflineTemporarily. Server is offline now but it can be online soon.",
- "rdfs:label": "OfflineTemporarily"
+ "@id": "schema:SportsOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.",
+ "rdfs:label": "SportsOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ }
},
{
- "@id": "schema:arrivalStation",
- "@type": "rdf:Property",
- "rdfs:comment": "The station where the train trip ends.",
- "rdfs:label": "arrivalStation",
- "schema:domainIncludes": {
- "@id": "schema:TrainTrip"
- },
- "schema:rangeIncludes": {
- "@id": "schema:TrainStation"
+ "@id": "schema:CreateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of deliberately creating/producing/generating/building a result out of the agent.",
+ "rdfs:label": "CreateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:risks",
- "@type": "rdf:Property",
- "rdfs:comment": "Specific physiologic risks associated to the diet plan.",
- "rdfs:label": "risks",
- "schema:domainIncludes": {
- "@id": "schema:Diet"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:AutoRepair",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Car repair business.",
+ "rdfs:label": "AutoRepair",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
}
},
{
- "@id": "schema:recommendedIntake",
- "@type": "rdf:Property",
- "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
- "rdfs:label": "recommendedIntake",
- "schema:domainIncludes": {
- "@id": "schema:DietarySupplement"
+ "@id": "schema:OnlineBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular online business, either standalone or the online part of a broader organization. Examples include an eCommerce site, an online travel booking site, an online learning site, an online logistics and shipping provider, an online (virtual) doctor, etc.",
+ "rdfs:label": "OnlineBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:RecommendedDoseSchedule"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3028"
}
},
{
- "@id": "schema:geoDisjoint",
- "@type": "rdf:Property",
- "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries.\" (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM))",
- "rdfs:label": "geoDisjoint",
- "schema:domainIncludes": [
- {
- "@id": "schema:GeospatialGeometry"
- },
- {
- "@id": "schema:Place"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:GeospatialGeometry"
- }
- ]
+ "@id": "schema:ResultsAvailable",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Results are available.",
+ "rdfs:label": "ResultsAvailable",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
},
{
- "@id": "schema:epidemiology",
+ "@id": "schema:broadcastChannelId",
"@type": "rdf:Property",
- "rdfs:comment": "The characteristics of associated patients, such as age, gender, race etc.",
- "rdfs:label": "epidemiology",
- "schema:domainIncludes": [
- {
- "@id": "schema:PhysicalActivity"
- },
- {
- "@id": "schema:MedicalCondition"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "rdfs:comment": "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.",
+ "rdfs:label": "broadcastChannelId",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:Zoo",
+ "@id": "schema:Suite",
"@type": "rdfs:Class",
- "rdfs:comment": "A zoo.",
- "rdfs:label": "Zoo",
+ "rdfs:comment": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Suite",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:permittedUsage",
+ "@id": "schema:closes",
"@type": "rdf:Property",
- "rdfs:comment": "Indications regarding the permitted usage of the accommodation.",
- "rdfs:label": "permittedUsage",
+ "rdfs:comment": "The closing hour of the place or service on the given day(s) of the week.",
+ "rdfs:label": "closes",
"schema:domainIncludes": {
- "@id": "schema:Accommodation"
+ "@id": "schema:OpeningHoursSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Time"
},
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:domiciledMortgage",
+ "@id": "schema:legislationTransposes",
"@type": "rdf:Property",
- "rdfs:comment": "Whether borrower is a resident of the jurisdiction where the property is located.",
- "rdfs:label": "domiciledMortgage",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#transposes"
+ },
+ "rdfs:comment": "Indicates that this legislation (or part of legislation) fulfills the objectives set by another legislation, by passing appropriate implementation measures. Typically, some legislations of European Union's member states or regions transpose European Directives. This indicates a legally binding link between the 2 legislations.",
+ "rdfs:label": "legislationTransposes",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:legislationApplies"
+ },
"schema:domainIncludes": {
- "@id": "schema:MortgageLoan"
+ "@id": "schema:Legislation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Legislation"
},
"schema:source": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
}
- ]
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#transposes"
+ }
},
{
- "@id": "schema:option",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. The options subject to this action.",
- "rdfs:label": "option",
- "rdfs:subPropertyOf": {
- "@id": "schema:object"
- },
- "schema:domainIncludes": {
- "@id": "schema:ChooseAction"
+ "@id": "schema:EUEnergyEfficiencyCategoryG",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryG",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Thing"
- }
- ],
- "schema:supersededBy": {
- "@id": "schema:actionOption"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:reservationId",
+ "@id": "schema:itemShipped",
"@type": "rdf:Property",
- "rdfs:comment": "A unique identifier for the reservation.",
- "rdfs:label": "reservationId",
+ "rdfs:comment": "Item(s) being shipped.",
+ "rdfs:label": "itemShipped",
"schema:domainIncludes": {
- "@id": "schema:Reservation"
+ "@id": "schema:ParcelDelivery"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Product"
}
},
{
- "@id": "schema:LegalValueLevel",
- "@type": "rdfs:Class",
- "http://www.w3.org/2004/02/skos/core#closeMatch": {
- "@id": "http://data.europa.eu/eli/ontology#LegalValue"
- },
- "rdfs:comment": "A list of possible levels for the legal validity of a legislation.",
- "rdfs:label": "LegalValueLevel",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- }
- ]
+ "@id": "schema:ParcelService",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A private parcel service as the delivery mode available for a certain offer.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
+ "rdfs:label": "ParcelService",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
},
{
- "@id": "schema:recipeInstructions",
+ "@id": "schema:ownedThrough",
"@type": "rdf:Property",
- "rdfs:comment": "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.",
- "rdfs:label": "recipeInstructions",
- "rdfs:subPropertyOf": {
- "@id": "schema:step"
- },
+ "rdfs:comment": "The date and time of giving up ownership on the product.",
+ "rdfs:label": "ownedThrough",
"schema:domainIncludes": {
- "@id": "schema:Recipe"
+ "@id": "schema:OwnershipInfo"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:ItemList"
- },
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:BookSeries",
+ "@id": "schema:TipAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A series of books. Included books can be indicated with the hasPart property.",
- "rdfs:label": "BookSeries",
+ "rdfs:comment": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.",
+ "rdfs:label": "TipAction",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWorkSeries"
+ "@id": "schema:TradeAction"
}
},
{
- "@id": "schema:BodyMeasurementInsideLeg",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Inside leg (measured between crotch and soles of feet). Used, for example, to fit pants.",
- "rdfs:label": "BodyMeasurementInsideLeg",
+ "@id": "schema:LearningResource",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes.\n\n[[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[VideoObject]], [[Product]] etc.\n\n[[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one.",
+ "rdfs:label": "LearningResource",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1401"
}
},
{
- "@id": "schema:Park",
- "@type": "rdfs:Class",
- "rdfs:comment": "A park.",
- "rdfs:label": "Park",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:abridged",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether the book is an abridged edition.",
+ "rdfs:label": "abridged",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:DrugCostCategory",
+ "@id": "schema:MedicalAudienceType",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerated categories of medical drug costs.",
- "rdfs:label": "DrugCostCategory",
+ "rdfs:comment": "Target audiences types for medical web pages. Enumerated type.",
+ "rdfs:label": "MedicalAudienceType",
"rdfs:subClassOf": {
"@id": "schema:MedicalEnumeration"
},
@@ -1777,1049 +1613,1124 @@
}
},
{
- "@id": "schema:UnincorporatedAssociationCharity",
- "@type": "schema:UKNonprofitType",
- "rdfs:comment": "UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated (UK).",
- "rdfs:label": "UnincorporatedAssociationCharity",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:BedAndBreakfast",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Bed and breakfast.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "BedAndBreakfast",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ }
+ },
+ {
+ "@id": "schema:EngineSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities.",
+ "rdfs:label": "EngineSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:SeatingMap",
- "@type": "schema:MapCategoryType",
- "rdfs:comment": "A seating map.",
- "rdfs:label": "SeatingMap"
+ "@id": "schema:Bridge",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bridge.",
+ "rdfs:label": "Bridge",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
},
{
- "@id": "schema:Nonprofit501f",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501f: Non-profit type referring to Cooperative Service Organizations.",
- "rdfs:label": "Nonprofit501f",
+ "@id": "schema:OnlineStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An eCommerce site.",
+ "rdfs:label": "OnlineStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:OnlineBusiness"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3028"
}
},
{
- "@id": "schema:FoodEstablishment",
- "@type": "rdfs:Class",
- "rdfs:comment": "A food-related business.",
- "rdfs:label": "FoodEstablishment",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
- }
- },
- {
- "@id": "schema:typicalTest",
- "@type": "rdf:Property",
- "rdfs:comment": "A medical test typically performed given this condition.",
- "rdfs:label": "typicalTest",
- "schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalTest"
- }
+ "@id": "schema:ReservationCancelled",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status for a previously confirmed reservation that is now cancelled.",
+ "rdfs:label": "ReservationCancelled"
},
{
- "@id": "schema:dateDeleted",
+ "@id": "schema:numberOfRooms",
"@type": "rdf:Property",
- "rdfs:comment": "The datetime the item was removed from the DataFeed.",
- "rdfs:label": "dateDeleted",
- "schema:domainIncludes": {
- "@id": "schema:DataFeedItem"
- },
+ "rdfs:comment": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.",
+ "rdfs:label": "numberOfRooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Apartment"
+ },
+ {
+ "@id": "schema:SingleFamilyResidence"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:House"
+ },
+ {
+ "@id": "schema:Suite"
+ }
+ ],
"schema:rangeIncludes": [
{
- "@id": "schema:Date"
+ "@id": "schema:Number"
},
{
- "@id": "schema:DateTime"
+ "@id": "schema:QuantitativeValue"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
},
{
- "@id": "schema:character",
+ "@id": "schema:Thesis",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.",
+ "rdfs:label": "Thesis",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.productontology.org/id/Thesis"
+ }
+ },
+ {
+ "@id": "schema:smokingAllowed",
"@type": "rdf:Property",
- "rdfs:comment": "Fictional person connected with a creative work.",
- "rdfs:label": "character",
+ "rdfs:comment": "Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.",
+ "rdfs:label": "smokingAllowed",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Place"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:cookTime",
+ "@id": "schema:BusinessAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.",
+ "rdfs:label": "BusinessAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
+ }
+ },
+ {
+ "@id": "schema:amountOfThisGood",
"@type": "rdf:Property",
- "rdfs:comment": "The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
- "rdfs:label": "cookTime",
- "rdfs:subPropertyOf": {
- "@id": "schema:performTime"
- },
+ "rdfs:comment": "The quantity of the goods included in the offer.",
+ "rdfs:label": "amountOfThisGood",
"schema:domainIncludes": {
- "@id": "schema:Recipe"
+ "@id": "schema:TypeAndQuantityNode"
},
"schema:rangeIncludes": {
- "@id": "schema:Duration"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:suggestedGender",
+ "@id": "schema:toLocation",
"@type": "rdf:Property",
- "rdfs:comment": "The suggested gender of the intended person or audience, for example \"male\", \"female\", or \"unisex\".",
- "rdfs:label": "suggestedGender",
+ "rdfs:comment": "A sub property of location. The final location of the object or the agent after the action.",
+ "rdfs:label": "toLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
"schema:domainIncludes": [
{
- "@id": "schema:SizeSpecification"
+ "@id": "schema:TransferAction"
},
{
- "@id": "schema:PeopleAudience"
- }
- ],
- "schema:rangeIncludes": [
+ "@id": "schema:MoveAction"
+ },
{
- "@id": "schema:GenderType"
+ "@id": "schema:InsertAction"
},
{
- "@id": "schema:Text"
+ "@id": "schema:ExerciseAction"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
},
{
- "@id": "schema:actors",
+ "@id": "schema:Event",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "dcmitype:Event"
+ },
+ "rdfs:comment": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects.",
+ "rdfs:label": "Event",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:containsSeason",
"@type": "rdf:Property",
- "rdfs:comment": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
- "rdfs:label": "actors",
+ "rdfs:comment": "A season that is part of the media series.",
+ "rdfs:label": "containsSeason",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
"schema:domainIncludes": [
- {
- "@id": "schema:Movie"
- },
{
"@id": "schema:TVSeries"
},
{
- "@id": "schema:Clip"
- },
- {
- "@id": "schema:VideoGame"
- },
- {
- "@id": "schema:VideoObject"
+ "@id": "schema:RadioSeries"
},
{
"@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:Episode"
- },
- {
- "@id": "schema:MovieSeries"
- },
- {
- "@id": "schema:RadioSeries"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Person"
- },
- "schema:supersededBy": {
- "@id": "schema:actor"
+ "@id": "schema:CreativeWorkSeason"
}
},
{
- "@id": "schema:geoTouches",
+ "@id": "schema:pickupLocation",
"@type": "rdf:Property",
- "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points.\" (a symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) )",
- "rdfs:label": "geoTouches",
+ "rdfs:comment": "Where a taxi will pick up a passenger or a rental car can be picked up.",
+ "rdfs:label": "pickupLocation",
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:TaxiReservation"
},
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:RentalCarReservation"
}
],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:GeospatialGeometry"
- }
- ]
- },
- {
- "@id": "schema:LendAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\\n\\nRelated actions:\\n\\n* [[BorrowAction]]: Reciprocal of LendAction.",
- "rdfs:label": "LendAction",
- "rdfs:subClassOf": {
- "@id": "schema:TransferAction"
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:legislationChanges",
+ "@id": "schema:clincalPharmacology",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#changes"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#changes"
- },
- "rdfs:comment": "Another legislation that this legislation changes. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change (textual or non-textual amendment) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the legislationConsolidates property.",
- "rdfs:label": "legislationChanges",
+ "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
+ "rdfs:label": "clincalPharmacology",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:clinicalPharmacology"
+ }
+ },
+ {
+ "@id": "schema:BrokerageAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm.",
+ "rdfs:label": "BrokerageAccount",
+ "rdfs:subClassOf": {
+ "@id": "schema:InvestmentOrDeposit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
},
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
]
},
{
- "@id": "schema:skills",
+ "@id": "schema:isicV4",
"@type": "rdf:Property",
- "rdfs:comment": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.",
- "rdfs:label": "skills",
+ "rdfs:comment": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
+ "rdfs:label": "isicV4",
"schema:domainIncludes": [
{
- "@id": "schema:JobPosting"
+ "@id": "schema:Place"
},
{
- "@id": "schema:Occupation"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:DefinedTerm"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2322"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:includesObject",
+ "@id": "schema:legislationPassedBy",
"@type": "rdf:Property",
- "rdfs:comment": "This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].",
- "rdfs:label": "includesObject",
- "schema:domainIncludes": [
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#passed_by"
+ },
+ "rdfs:comment": "The person or organization that originally passed or made the law: typically parliament (for primary legislation) or government (for secondary legislation). This indicates the \"legal author\" of the law, as opposed to its physical author.",
+ "rdfs:label": "legislationPassedBy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:creator"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:ProductCollection"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Demand"
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:Offer"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:TypeAndQuantityNode"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#passed_by"
}
},
{
- "@id": "schema:DrugCost",
+ "@id": "schema:USNonprofitType",
"@type": "rdfs:Class",
- "rdfs:comment": "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.",
- "rdfs:label": "DrugCost",
+ "rdfs:comment": "USNonprofitType: Non-profit organization type originating from the United States.",
+ "rdfs:label": "USNonprofitType",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:NonprofitType"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:priceRange",
- "@type": "rdf:Property",
- "rdfs:comment": "The price range of the business, for example ```$$$```.",
- "rdfs:label": "priceRange",
- "schema:domainIncludes": {
- "@id": "schema:LocalBusiness"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:AutomatedTeller",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "ATM/cash machine.",
+ "rdfs:label": "AutomatedTeller",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
}
},
{
- "@id": "schema:artworkSurface",
+ "@id": "schema:confirmationNumber",
"@type": "rdf:Property",
- "rdfs:comment": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.",
- "rdfs:label": "artworkSurface",
- "schema:domainIncludes": {
- "@id": "schema:VisualArtwork"
+ "rdfs:comment": "A number that confirms the given order or payment has been received.",
+ "rdfs:label": "confirmationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
},
- "schema:rangeIncludes": [
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Invoice"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Order"
}
- ]
- },
- {
- "@id": "schema:processorRequirements",
- "@type": "rdf:Property",
- "rdfs:comment": "Processor architecture required to run the application (e.g. IA64).",
- "rdfs:label": "processorRequirements",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
- },
+ ],
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:Demand",
- "@type": "rdfs:Class",
- "rdfs:comment": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.",
- "rdfs:label": "Demand",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "schema:Thursday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Wednesday and Friday.",
+ "rdfs:label": "Thursday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q129"
}
},
{
- "@id": "schema:issueNumber",
+ "@id": "schema:departureTime",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/ontology/bibo/issue"
- },
- "rdfs:comment": "Identifies the issue of publication; for example, \"iii\" or \"2\".",
- "rdfs:label": "issueNumber",
- "rdfs:subPropertyOf": {
- "@id": "schema:position"
- },
+ "rdfs:comment": "The expected departure time.",
+ "rdfs:label": "departureTime",
"schema:domainIncludes": {
- "@id": "schema:PublicationIssue"
+ "@id": "schema:Trip"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Integer"
+ "@id": "schema:Time"
},
{
- "@id": "schema:Text"
+ "@id": "schema:DateTime"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
- }
+ ]
},
{
- "@id": "schema:offers",
+ "@id": "schema:hasBroadcastChannel",
"@type": "rdf:Property",
- "rdfs:comment": "An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.\n ",
- "rdfs:label": "offers",
- "schema:domainIncludes": [
- {
- "@id": "schema:Trip"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:AggregateOffer"
- },
- {
- "@id": "schema:EducationalOccupationalProgram"
- },
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:Service"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:MenuItem"
- }
- ],
+ "rdfs:comment": "A broadcast channel of a broadcast service.",
+ "rdfs:label": "hasBroadcastChannel",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
"schema:inverseOf": {
- "@id": "schema:itemOffered"
+ "@id": "schema:providesBroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BroadcastChannel"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:Offer"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
}
},
{
- "@id": "schema:InStoreOnly",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item is available only at physical locations.",
- "rdfs:label": "InStoreOnly"
- },
- {
- "@id": "schema:SportsActivityLocation",
+ "@id": "schema:Crematorium",
"@type": "rdfs:Class",
- "rdfs:comment": "A sports location, such as a playing field.",
- "rdfs:label": "SportsActivityLocation",
+ "rdfs:comment": "A crematorium.",
+ "rdfs:label": "Crematorium",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:UserReview",
- "@type": "rdfs:Class",
- "rdfs:comment": "A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]].",
- "rdfs:label": "UserReview",
- "rdfs:subClassOf": {
- "@id": "schema:Review"
+ "@id": "schema:customerRemorseReturnFees",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of return fees if the product is returned due to customer remorse.",
+ "rdfs:label": "customerRemorseReturnFees",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnFeesEnumeration"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:BusinessEntityType",
- "@type": "rdfs:Class",
- "rdfs:comment": "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Business\\n* http://purl.org/goodrelations/v1#Enduser\\n* http://purl.org/goodrelations/v1#PublicInstitution\\n* http://purl.org/goodrelations/v1#Reseller\n\t ",
- "rdfs:label": "BusinessEntityType",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:encodingType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The supported encoding type(s) for an EntryPoint request.",
+ "rdfs:label": "encodingType",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:LocationFeatureSpecification",
+ "@id": "schema:MedicalConditionStage",
"@type": "rdfs:Class",
- "rdfs:comment": "Specifies a location feature by providing a structured value representing a feature of an accommodation as a property-value pair of varying degrees of formality.",
- "rdfs:label": "LocationFeatureSpecification",
+ "rdfs:comment": "A stage of a medical condition, such as 'Stage IIIa'.",
+ "rdfs:label": "MedicalConditionStage",
"rdfs:subClassOf": {
- "@id": "schema:PropertyValue"
+ "@id": "schema:MedicalIntangible"
},
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:meetsEmissionStandard",
+ "@id": "schema:itinerary",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates that the vehicle meets the respective emission standard.",
- "rdfs:label": "meetsEmissionStandard",
+ "rdfs:comment": "Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples).",
+ "rdfs:label": "itinerary",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:Trip"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:ItemList"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
},
{
- "@id": "schema:QualitativeValue"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
- },
- {
- "@id": "schema:BookStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A bookstore.",
- "rdfs:label": "BookStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
- }
+ ]
},
{
- "@id": "schema:StagesHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Stages that can be observed from a topic.",
- "rdfs:label": "StagesHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:valueAddedTaxIncluded",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.",
+ "rdfs:label": "valueAddedTaxIncluded",
+ "schema:domainIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:TherapeuticProcedure",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/277132007"
- },
- "rdfs:comment": "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.",
- "rdfs:label": "TherapeuticProcedure",
+ "@id": "schema:DietNutrition",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Dietetics and nutrition as a medical specialty.",
+ "rdfs:label": "DietNutrition",
"rdfs:subClassOf": {
- "@id": "schema:MedicalProcedure"
+ "@id": "schema:MedicalBusiness"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:contactlessPayment",
+ "@id": "schema:bitrate",
"@type": "rdf:Property",
- "rdfs:comment": "A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology.",
- "rdfs:label": "contactlessPayment",
+ "rdfs:comment": "The bitrate of the media object.",
+ "rdfs:label": "bitrate",
"schema:domainIncludes": {
- "@id": "schema:PaymentCard"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:MediaObject"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- ]
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:LegislativeBuilding",
+ "@id": "schema:Rheumatologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.",
+ "rdfs:label": "Rheumatologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AssessAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A legislative building—for example, the state capitol.",
- "rdfs:label": "LegislativeBuilding",
+ "rdfs:comment": "The act of forming one's opinion, reaction or sentiment.",
+ "rdfs:label": "AssessAction",
"rdfs:subClassOf": {
- "@id": "schema:GovernmentBuilding"
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:estimatedSalary",
+ "@id": "schema:requirements",
"@type": "rdf:Property",
- "rdfs:comment": "An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.",
- "rdfs:label": "estimatedSalary",
- "schema:domainIncludes": [
- {
- "@id": "schema:Occupation"
- },
- {
- "@id": "schema:JobPosting"
- }
- ],
+ "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (examples: DirectX, Java or .NET runtime).",
+ "rdfs:label": "requirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Number"
- },
- {
- "@id": "schema:MonetaryAmountDistribution"
+ "@id": "schema:Text"
},
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:URL"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- }
- },
- {
- "@id": "schema:WebPage",
- "@type": "rdfs:Class",
- "rdfs:comment": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.",
- "rdfs:label": "WebPage",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "schema:supersededBy": {
+ "@id": "schema:softwareRequirements"
}
},
{
- "@id": "schema:SizeSystemMetric",
- "@type": "schema:SizeSystemEnumeration",
- "rdfs:comment": "Metric size system.",
- "rdfs:label": "SizeSystemMetric",
+ "@id": "schema:associatedMediaReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An associated [[MediaReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].",
+ "rdfs:label": "associatedMediaReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:associatedReview"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:LowLactoseDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet appropriate for people with lactose intolerance.",
- "rdfs:label": "LowLactoseDiet"
+ "@id": "schema:FireStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A fire station. With firemen.",
+ "rdfs:label": "FireStation",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:EmergencyService"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ]
},
{
- "@id": "schema:Statement",
- "@type": "rdfs:Class",
- "rdfs:comment": "A statement about something, for example a fun or interesting fact. If known, the main entity this statement is about, can be indicated using mainEntity. For more formal claims (e.g. in Fact Checking), consider using [[Claim]] instead. Use the [[text]] property to capture the text of the statement.",
- "rdfs:label": "Statement",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:legislationDate",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#date_document"
+ },
+ "rdfs:comment": "The date of adoption or signature of the legislation. This is the date at which the text is officially aknowledged to be a legislation, even though it might not even be published or in force.",
+ "rdfs:label": "legislationDate",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:dateCreated"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2912"
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#date_document"
}
},
{
- "@id": "schema:XRay",
- "@type": "schema:MedicalImagingTechnique",
- "rdfs:comment": "X-ray imaging.",
- "rdfs:label": "XRay",
+ "@id": "schema:workTranslation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A work that is a translation of the content of this work. E.g. 西遊記 has an English workTranslation “Journey to the West”, a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.",
+ "rdfs:label": "workTranslation",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:translationOfWork"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:PaymentPastDue",
- "@type": "schema:PaymentStatusType",
- "rdfs:comment": "The payment is due and considered late.",
- "rdfs:label": "PaymentPastDue"
- },
- {
- "@id": "schema:SelfCareHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Self care actions or measures that can be taken to sooth, health or avoid a topic. This may be carried at home and can be carried/managed by the person itself.",
- "rdfs:label": "SelfCareHealthAspect",
+ "@id": "schema:CssSelectorType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Text representing a CSS selector.",
+ "rdfs:label": "CssSelectorType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
- }
- },
- {
- "@id": "schema:Clip",
- "@type": "rdfs:Class",
- "rdfs:comment": "A short TV or radio program or a segment/part of a program.",
- "rdfs:label": "Clip",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1672"
}
},
{
- "@id": "schema:prescribingInfo",
+ "@id": "schema:observedNode",
"@type": "rdf:Property",
- "rdfs:comment": "Link to prescribing information for the drug.",
- "rdfs:label": "prescribingInfo",
+ "rdfs:comment": "The observedNode of an [[Observation]], often a [[StatisticalPopulation]].",
+ "rdfs:label": "observedNode",
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:Observation"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
}
},
{
- "@id": "schema:tributary",
+ "@id": "schema:LaserDiscFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "LaserDiscFormat.",
+ "rdfs:label": "LaserDiscFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:busName",
"@type": "rdf:Property",
- "rdfs:comment": "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.",
- "rdfs:label": "tributary",
+ "rdfs:comment": "The name of the bus (e.g. Bolt Express).",
+ "rdfs:label": "busName",
"schema:domainIncludes": {
- "@id": "schema:Vein"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:BusTrip"
},
"schema:rangeIncludes": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:customerRemorseReturnShippingFeesAmount",
+ "@id": "schema:studyDesign",
"@type": "rdf:Property",
- "rdfs:comment": "The amount of shipping costs if a product is returned due to customer remorse. Applicable when property [[customerRemorseReturnFees]] equals [[ReturnShippingFees]].",
- "rdfs:label": "customerRemorseReturnShippingFeesAmount",
+ "rdfs:comment": "Specifics about the observational study design (enumerated).",
+ "rdfs:label": "studyDesign",
"schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
+ "@id": "schema:MedicalObservationalStudy"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
- }
- },
- {
- "@id": "schema:WearableSizeGroupPlus",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Plus\" for wearables.",
- "rdfs:label": "WearableSizeGroupPlus",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "schema:MedicalObservationalStudyDesign"
}
},
{
- "@id": "schema:SideEffectsHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Side effects that can be observed from the usage of the topic.",
- "rdfs:label": "SideEffectsHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "schema:Ticket",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe a ticket to an event, a flight, a bus ride, etc.",
+ "rdfs:label": "Ticket",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:locationCreated",
+ "@id": "schema:playersOnline",
"@type": "rdf:Property",
- "rdfs:comment": "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.",
- "rdfs:label": "locationCreated",
+ "rdfs:comment": "Number of players on the server.",
+ "rdfs:label": "playersOnline",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:GameServer"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:announcementLocation",
+ "@id": "schema:securityClearanceRequirement",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a specific [[CivicStructure]] or [[LocalBusiness]] associated with the SpecialAnnouncement. For example, a specific testing facility or business with special opening hours. For a larger geographic region like a quarantine of an entire region, use [[spatialCoverage]].",
- "rdfs:label": "announcementLocation",
- "rdfs:subPropertyOf": {
- "@id": "schema:spatialCoverage"
- },
+ "rdfs:comment": "A description of any security clearance requirements of the job.",
+ "rdfs:label": "securityClearanceRequirement",
"schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
+ "@id": "schema:JobPosting"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:CivicStructure"
+ "@id": "schema:Text"
},
{
- "@id": "schema:LocalBusiness"
+ "@id": "schema:URL"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2514"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
}
},
{
- "@id": "schema:doorTime",
+ "@id": "schema:dataset",
"@type": "rdf:Property",
- "rdfs:comment": "The time admission will commence.",
- "rdfs:label": "doorTime",
+ "rdfs:comment": "A dataset contained in this catalog.",
+ "rdfs:label": "dataset",
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:DataCatalog"
},
- "schema:rangeIncludes": [
+ "schema:inverseOf": {
+ "@id": "schema:includedInDataCatalog"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Dataset"
+ }
+ },
+ {
+ "@id": "schema:UsedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is used.",
+ "rdfs:label": "UsedCondition"
+ },
+ {
+ "@id": "schema:codeValue",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short textual code that uniquely identifies the value.",
+ "rdfs:label": "codeValue",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:termCode"
+ },
+ "schema:domainIncludes": [
{
- "@id": "schema:Time"
+ "@id": "schema:CategoryCode"
},
{
- "@id": "schema:DateTime"
+ "@id": "schema:MedicalCode"
}
- ]
- },
- {
- "@id": "schema:colleagues",
- "@type": "rdf:Property",
- "rdfs:comment": "A colleague of the person.",
- "rdfs:label": "colleagues",
- "schema:domainIncludes": {
- "@id": "schema:Person"
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
},
- "schema:supersededBy": {
- "@id": "schema:colleague"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:Room",
+ "@id": "schema:InvestmentOrDeposit",
"@type": "rdfs:Class",
- "rdfs:comment": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "Room",
+ "rdfs:comment": "A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.",
+ "rdfs:label": "InvestmentOrDeposit",
"rdfs:subClassOf": {
- "@id": "schema:Accommodation"
+ "@id": "schema:FinancialProduct"
},
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:exceptDate",
+ "@id": "schema:CollectionPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Collection page.",
+ "rdfs:label": "CollectionPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:eventAttendanceMode",
"@type": "rdf:Property",
- "rdfs:comment": "Defines a [[Date]] or [[DateTime]] during which a scheduled [[Event]] will not take place. The property allows exceptions to\n a [[Schedule]] to be specified. If an exception is specified as a [[DateTime]] then only the event that would have started at that specific date and time\n should be excluded from the schedule. If an exception is specified as a [[Date]] then any event that is scheduled for that 24 hour period should be\n excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.",
- "rdfs:label": "exceptDate",
+ "rdfs:comment": "The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.",
+ "rdfs:label": "eventAttendanceMode",
"schema:domainIncludes": {
- "@id": "schema:Schedule"
+ "@id": "schema:Event"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Date"
- },
- {
- "@id": "schema:DateTime"
- }
- ],
+ "schema:rangeIncludes": {
+ "@id": "schema:EventAttendanceModeEnumeration"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
}
},
{
- "@id": "schema:VideoGameSeries",
+ "@id": "schema:PhysicalActivity",
"@type": "rdfs:Class",
- "rdfs:comment": "A video game series.",
- "rdfs:label": "VideoGameSeries",
+ "rdfs:comment": "Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.",
+ "rdfs:label": "PhysicalActivity",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWorkSeries"
+ "@id": "schema:LifestyleModification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:additionalType",
+ "@id": "schema:marginOfError",
"@type": "rdf:Property",
- "rdfs:comment": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
- "rdfs:label": "additionalType",
- "rdfs:subPropertyOf": {
- "@id": "rdf:type"
- },
+ "rdfs:comment": "A marginOfError for an [[Observation]].",
+ "rdfs:label": "marginOfError",
"schema:domainIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Observation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
}
},
{
- "@id": "schema:StrengthTraining",
- "@type": "schema:PhysicalActivityCategory",
- "rdfs:comment": "Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.",
- "rdfs:label": "StrengthTraining",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:LiquorStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits.",
+ "rdfs:label": "LiquorStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:result",
+ "@id": "schema:resultComment",
"@type": "rdf:Property",
- "rdfs:comment": "The result produced in the action. e.g. John wrote *a book*.",
- "rdfs:label": "result",
- "schema:domainIncludes": {
- "@id": "schema:Action"
+ "rdfs:comment": "A sub property of result. The Comment created or sent as a result of this action.",
+ "rdfs:label": "resultComment",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:result"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ReplyAction"
+ },
+ {
+ "@id": "schema:CommentAction"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Comment"
}
},
{
- "@id": "schema:knownVehicleDamages",
+ "@id": "schema:deliveryLeadTime",
"@type": "rdf:Property",
- "rdfs:comment": "A textual description of known damages, both repaired and unrepaired.",
- "rdfs:label": "knownVehicleDamages",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
+ "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.",
+ "rdfs:label": "deliveryLeadTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Demand"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:thumbnail",
+ "@id": "schema:width",
"@type": "rdf:Property",
- "rdfs:comment": "Thumbnail image for an image or video.",
- "rdfs:label": "thumbnail",
+ "rdfs:comment": "The width of the item.",
+ "rdfs:label": "width",
"schema:domainIncludes": [
{
- "@id": "schema:VideoObject"
+ "@id": "schema:VisualArtwork"
},
{
- "@id": "schema:ImageObject"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:ImageObject"
- }
- },
- {
- "@id": "schema:OccupationalExperienceRequirements",
- "@type": "rdfs:Class",
- "rdfs:comment": "Indicates employment-related experience requirements, e.g. [[monthsOfExperience]].",
- "rdfs:label": "OccupationalExperienceRequirements",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Distance"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
},
{
- "@id": "schema:broadcastFrequency",
+ "@id": "schema:broker",
"@type": "rdf:Property",
- "rdfs:comment": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\".",
- "rdfs:label": "broadcastFrequency",
+ "rdfs:comment": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
+ "rdfs:label": "broker",
"schema:domainIncludes": [
{
- "@id": "schema:BroadcastService"
+ "@id": "schema:Service"
},
{
- "@id": "schema:BroadcastChannel"
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:Order"
+ },
+ {
+ "@id": "schema:Invoice"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
},
{
- "@id": "schema:BroadcastFrequencySpecification"
+ "@id": "schema:Organization"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
- }
+ ]
},
{
- "@id": "schema:SpeechPathology",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "The scientific study and treatment of defects, disorders, and malfunctions of speech and voice, as stuttering, lisping, or lalling, and of language disturbances, as aphasia or delayed language acquisition.",
- "rdfs:label": "SpeechPathology",
+ "@id": "schema:FDAcategoryX",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.",
+ "rdfs:label": "FDAcategoryX",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:object",
+ "@id": "schema:hasPOS",
"@type": "rdf:Property",
- "rdfs:comment": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read *a book*.",
- "rdfs:label": "object",
- "schema:domainIncludes": {
- "@id": "schema:Action"
- },
+ "rdfs:comment": "Points-of-Sales operated by the organization or person.",
+ "rdfs:label": "hasPOS",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Place"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:MolecularEntity",
- "@type": "rdfs:Class",
- "http://purl.org/dc/terms/source": {
- "@id": "http://bioschemas.org"
+ "@id": "schema:globalLocationNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
+ "rdfs:label": "globalLocationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
},
- "rdfs:comment": "Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.",
- "rdfs:label": "MolecularEntity",
- "rdfs:subClassOf": {
- "@id": "schema:BioChemEntity"
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:numTracks",
+ "@id": "schema:postOp",
"@type": "rdf:Property",
- "rdfs:comment": "The number of tracks in this album or playlist.",
- "rdfs:label": "numTracks",
+ "rdfs:comment": "A description of the postoperative procedures, care, and/or followups for this device.",
+ "rdfs:label": "postOp",
"schema:domainIncludes": {
- "@id": "schema:MusicPlaylist"
+ "@id": "schema:MedicalDevice"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:isBasedOnUrl",
+ "@id": "schema:Store",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A retail good store.",
+ "rdfs:label": "Store",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:characterAttribute",
"@type": "rdf:Property",
- "rdfs:comment": "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.",
- "rdfs:label": "isBasedOnUrl",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
+ "rdfs:comment": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).",
+ "rdfs:label": "characterAttribute",
+ "schema:domainIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:VideoGameSeries"
},
{
- "@id": "schema:Product"
+ "@id": "schema:Game"
}
],
- "schema:supersededBy": {
- "@id": "schema:isBasedOn"
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:Gastroenterologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.",
- "rdfs:label": "Gastroenterologic",
+ "@id": "schema:EducationalOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An educational organization.",
+ "rdfs:label": "EducationalOrganization",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CivicStructure"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EventSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property.\n\nAn EventSeries is a collection of events that share some unifying characteristic. For example, \"The Olympic Games\" is a series, which\nis repeated regularly. The \"2012 London Olympics\" can be presented both as an [[Event]] in the series \"Olympic Games\", and as an\n[[EventSeries]] that included a number of sporting competitions as Events.\n\nThe nature of the association between the events in an [[EventSeries]] can vary, but typical examples could\ninclude a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers.\n\nEventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without\nworrying about which kinds of series are really event-like enough to call an Event. In general an EventSeries\nmay seem more Event-like when the period of time is compact and when aspects such as location are fixed, but\nit may also sometimes prove useful to describe a longer-term series as an Event.\n ",
+ "rdfs:label": "EventSeries",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Series"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/447"
}
},
{
- "@id": "schema:WearableMeasurementBack",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the back section, for example of a jacket",
- "rdfs:label": "WearableMeasurementBack",
+ "@id": "schema:WearableSizeGroupPetite",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Petite\" for wearables.",
+ "rdfs:label": "WearableSizeGroupPetite",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -2828,171 +2739,120 @@
}
},
{
- "@id": "schema:numberOfDoors",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of doors.\\n\\nTypical unit code(s): C62",
- "rdfs:label": "numberOfDoors",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:PrognosisHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Typical progression and happenings of life course of the topic.",
+ "rdfs:label": "PrognosisHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:Number"
- }
- ],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:loanMortgageMandateAmount",
- "@type": "rdf:Property",
- "rdfs:comment": "Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.",
- "rdfs:label": "loanMortgageMandateAmount",
- "schema:domainIncludes": {
- "@id": "schema:MortgageLoan"
- },
+ "@id": "schema:PartiallyInForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that parts of the legislation are in force, and parts are not.",
+ "rdfs:label": "PartiallyInForce",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
"schema:source": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- ]
- },
- {
- "@id": "schema:multipleValues",
- "@type": "rdf:Property",
- "rdfs:comment": "Whether multiple values are allowed for the property. Default is false.",
- "rdfs:label": "multipleValues",
- "schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
- }
- },
- {
- "@id": "schema:openingHours",
- "@type": "rdf:Property",
- "rdfs:comment": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>.",
- "rdfs:label": "openingHours",
- "schema:domainIncludes": [
- {
- "@id": "schema:CivicStructure"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:LocalBusiness"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-partiallyInForce"
}
},
{
- "@id": "schema:ReimbursementCap",
- "@type": "schema:DrugCostCategory",
- "rdfs:comment": "The drug's cost represents the maximum reimbursement paid by an insurer for the drug.",
- "rdfs:label": "ReimbursementCap",
+ "@id": "schema:RestockingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay a restocking fee when returning a product.",
+ "rdfs:label": "RestockingFees",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:BusinessSupport",
- "@type": "schema:GovernmentBenefitsType",
- "rdfs:comment": "BusinessSupport: this is a benefit for supporting businesses.",
- "rdfs:label": "BusinessSupport",
+ "@id": "schema:WearableMeasurementHips",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the hip section, for example of a skirt",
+ "rdfs:label": "WearableMeasurementHips",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:lesser",
+ "@id": "schema:transitTime",
"@type": "rdf:Property",
- "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than the object.",
- "rdfs:label": "lesser",
+ "rdfs:comment": "The typical delay the order has been sent for delivery and the goods reach the final customer. Typical properties: minValue, maxValue, unitCode (d for DAY).",
+ "rdfs:label": "transitTime",
"schema:domainIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:jobTitle",
- "@type": "rdf:Property",
- "rdfs:comment": "The job title of the person (for example, Financial Manager).",
- "rdfs:label": "jobTitle",
- "schema:domainIncludes": {
- "@id": "schema:Person"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:UserPageVisits",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPageVisits",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:DefinedTerm"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
}
},
{
- "@id": "schema:ActivationFee",
- "@type": "schema:PriceComponentTypeEnumeration",
- "rdfs:comment": "Represents the activation fee part of the total price for an offered product, for example a cellphone contract.",
- "rdfs:label": "ActivationFee",
+ "@id": "schema:cvdNumBedsOcc",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.",
+ "rdfs:label": "cvdNumBedsOcc",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:areaServed",
+ "@id": "schema:priceType",
"@type": "rdf:Property",
- "rdfs:comment": "The geographic area where a service or offered item is provided.",
- "rdfs:label": "areaServed",
+ "rdfs:comment": "Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration.",
+ "rdfs:label": "priceType",
"schema:domainIncludes": [
{
- "@id": "schema:DeliveryChargeSpecification"
- },
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:ContactPoint"
- },
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Demand"
+ "@id": "schema:CompoundPriceSpecification"
},
{
- "@id": "schema:Service"
+ "@id": "schema:UnitPriceSpecification"
}
],
"schema:rangeIncludes": [
@@ -3000,666 +2860,601 @@
"@id": "schema:Text"
},
{
- "@id": "schema:GeoShape"
- },
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:PriceTypeEnumeration"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:specialOpeningHoursSpecification",
- "@type": "rdf:Property",
- "rdfs:comment": "The special opening hours of a certain place.\\n\\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].\n ",
- "rdfs:label": "specialOpeningHoursSpecification",
- "schema:domainIncludes": {
- "@id": "schema:Place"
- },
- "schema:rangeIncludes": {
- "@id": "schema:OpeningHoursSpecification"
- }
+ "@id": "schema:CommentPermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to add comments to the document.",
+ "rdfs:label": "CommentPermission"
},
{
- "@id": "schema:paymentDue",
- "@type": "rdf:Property",
- "rdfs:comment": "The date that payment is due.",
- "rdfs:label": "paymentDue",
- "schema:domainIncludes": [
- {
- "@id": "schema:Invoice"
- },
- {
- "@id": "schema:Order"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "@id": "schema:OriginalMediaContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'as original media content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'original': No evidence the footage has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n\nFor an [[ImageObject]] to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[ImageObject]] with embedded text to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[AudioObject]] to be 'original': No evidence the audio has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n",
+ "rdfs:label": "OriginalMediaContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:supersededBy": {
- "@id": "schema:paymentDueDate"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:serverStatus",
+ "@id": "schema:trailerWeight",
"@type": "rdf:Property",
- "rdfs:comment": "Status of a game server.",
- "rdfs:label": "serverStatus",
+ "rdfs:comment": "The permitted weight of a trailer attached to the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "trailerWeight",
"schema:domainIncludes": {
- "@id": "schema:GameServer"
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:GameServerStatus"
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:color",
+ "@id": "schema:cargoVolume",
"@type": "rdf:Property",
- "rdfs:comment": "The color of the product.",
- "rdfs:label": "color",
+ "rdfs:comment": "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\\n\\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\\n\\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "cargoVolume",
"schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:Vehicle"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:CorrectionComment",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [[comment]] that corrects [[CreativeWork]].",
- "rdfs:label": "CorrectionComment",
- "rdfs:subClassOf": {
- "@id": "schema:Comment"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ "@id": "schema:DVDFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DVDFormat.",
+ "rdfs:label": "DVDFormat",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:ReturnMethodEnumeration",
+ "@id": "schema:UserDownloads",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerates several types of product return methods.",
- "rdfs:label": "ReturnMethodEnumeration",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserDownloads",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:UserInteraction"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
}
},
{
- "@id": "schema:Residence",
+ "@id": "schema:albumReleaseType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The kind of release which this album is: single, EP or album.",
+ "rdfs:label": "albumReleaseType",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbumReleaseType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:TrainReservation",
"@type": "rdfs:Class",
- "rdfs:comment": "The place where a person lives.",
- "rdfs:label": "Residence",
+ "rdfs:comment": "A reservation for train travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "TrainReservation",
"rdfs:subClassOf": {
- "@id": "schema:Place"
+ "@id": "schema:Reservation"
}
},
{
- "@id": "schema:medicalSpecialty",
+ "@id": "schema:childMinAge",
"@type": "rdf:Property",
- "rdfs:comment": "A medical specialty of the provider.",
- "rdfs:label": "medicalSpecialty",
- "schema:domainIncludes": [
- {
- "@id": "schema:MedicalOrganization"
- },
- {
- "@id": "schema:MedicalClinic"
- },
- {
- "@id": "schema:Physician"
- },
- {
- "@id": "schema:Hospital"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "rdfs:comment": "Minimal age of the child.",
+ "rdfs:label": "childMinAge",
+ "schema:domainIncludes": {
+ "@id": "schema:ParentAudience"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalSpecialty"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:Manuscript",
+ "@id": "schema:isAccessoryOrSparePartFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to another product (or multiple products) for which this product is an accessory or spare part.",
+ "rdfs:label": "isAccessoryOrSparePartFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:MusicPlaylist",
"@type": "rdfs:Class",
- "rdfs:comment": "A book, document, or piece of music written by hand rather than typed or printed.",
- "rdfs:label": "Manuscript",
+ "rdfs:comment": "A collection of music tracks in playlist form.",
+ "rdfs:label": "MusicPlaylist",
"rdfs:subClassOf": {
"@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:releaseOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The album this is a release of.",
+ "rdfs:label": "releaseOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:albumRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:seasonNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Position of the season within an ordered group of seasons.",
+ "rdfs:label": "seasonNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ]
+ },
+ {
+ "@id": "schema:VirtualLocation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An online or virtual location for attending events. For example, one may attend an online seminar or educational event. While a virtual location may be used as the location of an event, virtual locations should not be confused with physical locations in the real world.",
+ "rdfs:label": "VirtualLocation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
}
},
{
- "@id": "schema:SiteNavigationElement",
+ "@id": "schema:AdultEntertainment",
"@type": "rdfs:Class",
- "rdfs:comment": "A navigation element of the page.",
- "rdfs:label": "SiteNavigationElement",
+ "rdfs:comment": "An adult entertainment establishment.",
+ "rdfs:label": "AdultEntertainment",
"rdfs:subClassOf": {
- "@id": "schema:WebPageElement"
+ "@id": "schema:EntertainmentBusiness"
}
},
{
- "@id": "schema:SheetMusic",
+ "@id": "schema:Recommendation",
"@type": "rdfs:Class",
- "rdfs:comment": "Printed music, as opposed to performed or recorded music.",
- "rdfs:label": "SheetMusic",
+ "rdfs:comment": "[[Recommendation]] is a type of [[Review]] that suggests or proposes something as the best option or best course of action. Recommendations may be for products or services, or other concrete things, as in the case of a ranked list or product guide. A [[Guide]] may list multiple recommendations for different categories. For example, in a [[Guide]] about which TVs to buy, the author may have several [[Recommendation]]s.",
+ "rdfs:label": "Recommendation",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Review"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2405"
}
},
{
- "@id": "schema:diagnosis",
+ "@id": "schema:storageRequirements",
"@type": "rdf:Property",
- "rdfs:comment": "One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process.",
- "rdfs:label": "diagnosis",
- "schema:domainIncludes": [
+ "rdfs:comment": "Storage requirements (free space required).",
+ "rdfs:label": "storageRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Patient"
+ "@id": "schema:URL"
},
{
- "@id": "schema:DDxElement"
+ "@id": "schema:Text"
}
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalCondition"
- }
+ ]
},
{
- "@id": "schema:cvdNumVentUse",
+ "@id": "schema:nerveMotor",
"@type": "rdf:Property",
- "rdfs:comment": "numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.",
- "rdfs:label": "cvdNumVentUse",
+ "rdfs:comment": "The neurological pathway extension that involves muscle control.",
+ "rdfs:label": "nerveMotor",
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
+ "@id": "schema:Nerve"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "schema:Muscle"
}
},
{
- "@id": "schema:RsvpResponseNo",
- "@type": "schema:RsvpResponseType",
- "rdfs:comment": "The invitee will not attend.",
- "rdfs:label": "RsvpResponseNo"
- },
- {
- "@id": "schema:riskFactor",
+ "@id": "schema:permitAudience",
"@type": "rdf:Property",
- "rdfs:comment": "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.",
- "rdfs:label": "riskFactor",
+ "rdfs:comment": "The target audience for this permit.",
+ "rdfs:label": "permitAudience",
"schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Permit"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalRiskFactor"
+ "@id": "schema:Audience"
}
},
{
- "@id": "schema:DataType",
- "@type": "rdfs:Class",
- "rdfs:comment": "The basic data types such as Integers, Strings, etc.",
- "rdfs:label": "DataType",
- "rdfs:subClassOf": {
- "@id": "rdfs:Class"
+ "@id": "schema:requiredCollateral",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)",
+ "rdfs:label": "requiredCollateral",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:AutoPartsStore",
+ "@id": "schema:Audiobook",
"@type": "rdfs:Class",
- "rdfs:comment": "An auto parts store.",
- "rdfs:label": "AutoPartsStore",
+ "rdfs:comment": "An audiobook.",
+ "rdfs:label": "Audiobook",
"rdfs:subClassOf": [
{
- "@id": "schema:Store"
+ "@id": "schema:AudioObject"
},
{
- "@id": "schema:AutomotiveBusiness"
+ "@id": "schema:Book"
}
- ]
- },
- {
- "@id": "schema:RadioEpisode",
- "@type": "rdfs:Class",
- "rdfs:comment": "A radio episode which can be part of a series or season.",
- "rdfs:label": "RadioEpisode",
- "rdfs:subClassOf": {
- "@id": "schema:Episode"
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
}
},
{
- "@id": "schema:isPartOf",
+ "@id": "schema:actionApplication",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.",
- "rdfs:label": "isPartOf",
+ "rdfs:comment": "An application that can complete the request.",
+ "rdfs:label": "actionApplication",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:EntryPoint"
},
- "schema:inverseOf": {
- "@id": "schema:hasPart"
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ }
+ },
+ {
+ "@id": "schema:Patient",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/116154003"
},
- "schema:rangeIncludes": [
+ "rdfs:comment": "A patient is any person recipient of health care services.",
+ "rdfs:label": "Patient",
+ "rdfs:subClassOf": [
{
- "@id": "schema:URL"
+ "@id": "schema:MedicalAudience"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Person"
}
- ]
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
},
{
- "@id": "schema:loanRepaymentForm",
+ "@id": "schema:paymentDueDate",
"@type": "rdf:Property",
- "rdfs:comment": "A form of paying back money previously borrowed from a lender. Repayment usually takes the form of periodic payments that normally include part principal plus interest in each payment.",
- "rdfs:label": "loanRepaymentForm",
- "schema:domainIncludes": {
- "@id": "schema:LoanOrCredit"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:RepaymentSpecification"
- },
- "schema:source": [
+ "rdfs:comment": "The date that payment is due.",
+ "rdfs:label": "paymentDueDate",
+ "schema:domainIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "schema:Invoice"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
}
]
},
{
- "@id": "schema:Season",
- "@type": "rdfs:Class",
- "rdfs:comment": "A media season e.g. tv, radio, video game etc.",
- "rdfs:label": "Season",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:targetProduct",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.",
+ "rdfs:label": "targetProduct",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
},
- "schema:supersededBy": {
- "@id": "schema:CreativeWorkSeason"
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
}
},
{
- "@id": "schema:HalalDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet conforming to Islamic dietary practices.",
- "rdfs:label": "HalalDiet"
- },
- {
- "@id": "schema:ingredients",
+ "@id": "schema:buyer",
"@type": "rdf:Property",
- "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
- "rdfs:label": "ingredients",
+ "rdfs:comment": "A sub property of participant. The participant/person/organization that bought the object.",
+ "rdfs:label": "buyer",
"rdfs:subPropertyOf": {
- "@id": "schema:supply"
+ "@id": "schema:participant"
},
"schema:domainIncludes": {
- "@id": "schema:Recipe"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:SellAction"
},
- "schema:supersededBy": {
- "@id": "schema:recipeIngredient"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
},
{
- "@id": "schema:clinicalPharmacology",
+ "@id": "schema:busNumber",
"@type": "rdf:Property",
- "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
- "rdfs:label": "clinicalPharmacology",
+ "rdfs:comment": "The unique identifier for the bus.",
+ "rdfs:label": "busNumber",
"schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:BusTrip"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:DaySpa",
- "@type": "rdfs:Class",
- "rdfs:comment": "A day spa.",
- "rdfs:label": "DaySpa",
- "rdfs:subClassOf": {
- "@id": "schema:HealthAndBeautyBusiness"
- }
- },
- {
- "@id": "schema:percentile75",
+ "@id": "schema:hiringOrganization",
"@type": "rdf:Property",
- "rdfs:comment": "The 75th percentile value.",
- "rdfs:label": "percentile75",
+ "rdfs:comment": "Organization or Person offering the job position.",
+ "rdfs:label": "hiringOrganization",
"schema:domainIncludes": {
- "@id": "schema:QuantitativeValueDistribution"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- }
- },
- {
- "@id": "schema:AnalysisNewsArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "An AnalysisNewsArticle is a [[NewsArticle]] that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.",
- "rdfs:label": "AnalysisNewsArticle",
- "rdfs:subClassOf": {
- "@id": "schema:NewsArticle"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:JobPosting"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:Organization"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:energyEfficiencyScaleMax",
+ "@id": "schema:legislationConsolidates",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
- "rdfs:label": "energyEfficiencyScaleMax",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#consolidates"
+ },
+ "rdfs:comment": "Indicates another legislation taken into account in this consolidated legislation (which is usually the product of an editorial process that revises the legislation). This property should be used multiple times to refer to both the original version or the previous consolidated version, and to the legislations making the change.",
+ "rdfs:label": "legislationConsolidates",
"schema:domainIncludes": {
- "@id": "schema:EnergyConsumptionDetails"
+ "@id": "schema:Legislation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:EUEnergyEfficiencyEnumeration"
+ "@id": "schema:Legislation"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
- }
- },
- {
- "@id": "schema:hasMenuSection",
- "@type": "rdf:Property",
- "rdfs:comment": "A subgrouping of the menu (by dishes, course, serving time period, etc.).",
- "rdfs:label": "hasMenuSection",
- "schema:domainIncludes": [
+ "schema:source": [
{
- "@id": "schema:Menu"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:MenuSection"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:MenuSection"
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#consolidates"
}
},
{
- "@id": "schema:StudioAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "StudioAlbum.",
- "rdfs:label": "StudioAlbum",
+ "@id": "schema:BusinessSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "BusinessSupport: this is a benefit for supporting businesses.",
+ "rdfs:label": "BusinessSupport",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
}
},
{
- "@id": "schema:ReturnShippingFees",
- "@type": "schema:ReturnFeesEnumeration",
- "rdfs:comment": "Specifies that the customer must pay the return shipping costs when returning a product",
- "rdfs:label": "ReturnShippingFees",
+ "@id": "schema:GovernmentBenefitsType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered.",
+ "rdfs:label": "GovernmentBenefitsType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
}
},
{
- "@id": "schema:actionableFeedbackPolicy",
+ "@id": "schema:member",
"@type": "rdf:Property",
- "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.",
- "rdfs:label": "actionableFeedbackPolicy",
- "rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
- },
+ "rdfs:comment": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
+ "rdfs:label": "member",
"schema:domainIncludes": [
{
- "@id": "schema:NewsMediaOrganization"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:ProgramMembership"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:memberOf"
},
"schema:rangeIncludes": [
{
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:URL"
- }
- ],
- "schema:source": [
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:Organization"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:containsSeason",
+ "@id": "schema:howPerformed",
"@type": "rdf:Property",
- "rdfs:comment": "A season that is part of the media series.",
- "rdfs:label": "containsSeason",
- "rdfs:subPropertyOf": {
- "@id": "schema:hasPart"
+ "rdfs:comment": "How the procedure is performed.",
+ "rdfs:label": "howPerformed",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:TVSeries"
- },
- {
- "@id": "schema:RadioSeries"
- }
- ],
"schema:rangeIncludes": {
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:polygon",
+ "@id": "schema:appliesToPaymentMethod",
"@type": "rdf:Property",
- "rdfs:comment": "A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.",
- "rdfs:label": "polygon",
+ "rdfs:comment": "The payment method(s) to which the payment charge specification applies.",
+ "rdfs:label": "appliesToPaymentMethod",
"schema:domainIncludes": {
- "@id": "schema:GeoShape"
+ "@id": "schema:PaymentChargeSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:valueMaxLength",
- "@type": "rdf:Property",
- "rdfs:comment": "Specifies the allowed range for number of characters in a literal value.",
- "rdfs:label": "valueMaxLength",
- "schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- }
- },
- {
- "@id": "schema:parentOrganization",
- "@type": "rdf:Property",
- "rdfs:comment": "The larger organization that this organization is a [[subOrganization]] of, if any.",
- "rdfs:label": "parentOrganization",
- "schema:domainIncludes": {
- "@id": "schema:Organization"
- },
- "schema:inverseOf": {
- "@id": "schema:subOrganization"
+ "@id": "schema:PaymentMethod"
},
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:materialExtent",
+ "@id": "schema:shippingSettingsLink",
"@type": "rdf:Property",
- "rdfs:comment": {
- "@language": "en",
- "@value": "The quantity of the materials being described or an expression of the physical space they occupy."
- },
- "rdfs:label": {
- "@language": "en",
- "@value": "materialExtent"
- },
+ "rdfs:comment": "Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.",
+ "rdfs:label": "shippingSettingsLink",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:OfferShippingDetails"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:QuantitativeValue"
- }
- ],
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1759"
- }
- },
- {
- "@id": "schema:Energy",
- "@type": "rdfs:Class",
- "rdfs:comment": "Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.",
- "rdfs:label": "Energy",
- "rdfs:subClassOf": {
- "@id": "schema:Quantity"
- }
- },
- {
- "@id": "schema:DeactivateAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).",
- "rdfs:label": "DeactivateAction",
- "rdfs:subClassOf": {
- "@id": "schema:ControlAction"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:discount",
+ "@id": "schema:numberOfSeasons",
"@type": "rdf:Property",
- "rdfs:comment": "Any discount applied (to an Order).",
- "rdfs:label": "discount",
- "schema:domainIncludes": {
- "@id": "schema:Order"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The number of seasons in this series.",
+ "rdfs:label": "numberOfSeasons",
+ "schema:domainIncludes": [
{
- "@id": "schema:Number"
+ "@id": "schema:RadioSeries"
},
{
- "@id": "schema:Text"
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
},
{
- "@id": "schema:contentReferenceTime",
- "@type": "rdf:Property",
- "rdfs:comment": "The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.",
- "rdfs:label": "contentReferenceTime",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
+ "@id": "schema:SatireOrParodyContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'satire or parody content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'satire or parody content': A video that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] with embedded text to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[AudioObject]] to be 'satire or parody content': Audio that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n",
+ "rdfs:label": "SatireOrParodyContent",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1050"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:MusicAlbum",
- "@type": "rdfs:Class",
- "rdfs:comment": "A collection of music tracks.",
- "rdfs:label": "MusicAlbum",
- "rdfs:subClassOf": {
- "@id": "schema:MusicPlaylist"
+ "@id": "schema:Genitourinary",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Genitourinary system function assessment with clinical examination.",
+ "rdfs:label": "Genitourinary",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:isPartOfBioChemEntity",
+ "@id": "schema:hasBioChemEntityPart",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
+ "dcterms:source": {
"@id": "http://www.bioschemas.org"
},
- "rdfs:comment": "Indicates a BioChemEntity that is (in some sense) a part of this BioChemEntity. ",
- "rdfs:label": "isPartOfBioChemEntity",
+ "rdfs:comment": "Indicates a BioChemEntity that (in some sense) has this BioChemEntity as a part. ",
+ "rdfs:label": "hasBioChemEntityPart",
"schema:domainIncludes": {
"@id": "schema:BioChemEntity"
},
"schema:inverseOf": {
- "@id": "schema:hasBioChemEntityPart"
+ "@id": "schema:isPartOfBioChemEntity"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
@@ -3669,850 +3464,1100 @@
}
},
{
- "@id": "schema:vehicleSpecialUsage",
+ "@id": "schema:educationalLevel",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.",
- "rdfs:label": "vehicleSpecialUsage",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
+ "rdfs:comment": "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.",
+ "rdfs:label": "educationalLevel",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:EducationEvent"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:CarUsageType"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Text"
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
}
],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
- },
- {
- "@id": "schema:TravelAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.",
- "rdfs:label": "TravelAction",
- "rdfs:subClassOf": {
- "@id": "schema:MoveAction"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
},
{
- "@id": "schema:installUrl",
+ "@id": "schema:availableThrough",
"@type": "rdf:Property",
- "rdfs:comment": "URL at which the app may be installed, if different from the URL of the item.",
- "rdfs:label": "installUrl",
+ "rdfs:comment": "After this date, the item will no longer be available for pickup.",
+ "rdfs:label": "availableThrough",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:DeliveryEvent"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:DateTime"
}
},
{
- "@id": "schema:healthcareReportingData",
+ "@id": "schema:softwareRequirements",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].",
- "rdfs:label": "healthcareReportingData",
+ "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (examples: DirectX, Java or .NET runtime).",
+ "rdfs:label": "softwareRequirements",
"schema:domainIncludes": {
- "@id": "schema:Hospital"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Dataset"
+ "@id": "schema:Text"
},
{
- "@id": "schema:CDCPMDRecord"
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ProductCollection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]].",
+ "rdfs:label": "ProductCollection",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Collection"
+ },
+ {
+ "@id": "schema:Product"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2597"
}
},
{
- "@id": "schema:programMembershipUsed",
+ "@id": "schema:OrganizationRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subclass of Role used to describe roles within organizations.",
+ "rdfs:label": "OrganizationRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ }
+ },
+ {
+ "@id": "schema:trackingNumber",
"@type": "rdf:Property",
- "rdfs:comment": "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.",
- "rdfs:label": "programMembershipUsed",
+ "rdfs:comment": "Shipper tracking number.",
+ "rdfs:label": "trackingNumber",
"schema:domainIncludes": {
- "@id": "schema:Reservation"
+ "@id": "schema:ParcelDelivery"
},
"schema:rangeIncludes": {
- "@id": "schema:ProgramMembership"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:nationality",
+ "@id": "schema:seatSection",
"@type": "rdf:Property",
- "rdfs:comment": "Nationality of the person.",
- "rdfs:label": "nationality",
+ "rdfs:comment": "The section location of the reserved seat (e.g. Orchestra).",
+ "rdfs:label": "seatSection",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Seat"
},
"schema:rangeIncludes": {
- "@id": "schema:Country"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:availableDeliveryMethod",
+ "@id": "schema:associatedMedia",
"@type": "rdf:Property",
- "rdfs:comment": "The delivery method(s) available for this offer.",
- "rdfs:label": "availableDeliveryMethod",
+ "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for encoding.",
+ "rdfs:label": "associatedMedia",
"schema:domainIncludes": [
{
- "@id": "schema:Offer"
+ "@id": "schema:HyperToc"
},
{
- "@id": "schema:Demand"
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:HyperTocEntry"
}
],
"schema:rangeIncludes": {
- "@id": "schema:DeliveryMethod"
+ "@id": "schema:MediaObject"
+ }
+ },
+ {
+ "@id": "schema:healthPlanCoinsuranceRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The rate of coinsurance expressed as a number between 0.0 and 1.0.",
+ "rdfs:label": "healthPlanCoinsuranceRate",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:Permit",
+ "@id": "schema:FindAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A permit issued by an organization, e.g. a parking pass.",
- "rdfs:label": "Permit",
+ "rdfs:comment": "The act of finding an object.\\n\\nRelated actions:\\n\\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily.",
+ "rdfs:label": "FindAction",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:honorificPrefix",
+ "@id": "schema:actionPlatform",
"@type": "rdf:Property",
- "rdfs:comment": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.",
- "rdfs:label": "honorificPrefix",
+ "rdfs:comment": "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.",
+ "rdfs:label": "actionPlatform",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:EntryPoint"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DigitalPlatformEnumeration"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:GeoCircle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.\n ",
+ "rdfs:label": "GeoCircle",
+ "rdfs:subClassOf": {
+ "@id": "schema:GeoShape"
}
},
{
- "@id": "schema:recipeCuisine",
+ "@id": "schema:steeringPosition",
"@type": "rdf:Property",
- "rdfs:comment": "The cuisine of the recipe (for example, French or Ethiopian).",
- "rdfs:label": "recipeCuisine",
+ "rdfs:comment": "The position of the steering wheel or similar device (mostly for cars).",
+ "rdfs:label": "steeringPosition",
"schema:domainIncludes": {
- "@id": "schema:Recipe"
+ "@id": "schema:Vehicle"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:Gynecologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.",
- "rdfs:label": "Gynecologic",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:SteeringPositionValue"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:albumProductionType",
+ "@id": "schema:prepTime",
"@type": "rdf:Property",
- "rdfs:comment": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.",
- "rdfs:label": "albumProductionType",
- "schema:domainIncludes": {
- "@id": "schema:MusicAlbum"
- },
+ "rdfs:comment": "The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "prepTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToDirection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:MusicAlbumProductionType"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:Duration"
}
},
{
- "@id": "schema:maintainer",
+ "@id": "schema:SportsActivityLocation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sports location, such as a playing field.",
+ "rdfs:label": "SportsActivityLocation",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:warning",
"@type": "rdf:Property",
- "rdfs:comment": "A maintainer of a [[Dataset]], software package ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a [[Person]] or [[Organization]] that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on \"upstream\" sources. When [[maintainer]] is applied to a specific version of something e.g. a particular version or packaging of a [[Dataset]], it is always possible that the upstream source has a different maintainer. The [[isBasedOn]] property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.\n ",
- "rdfs:label": "maintainer",
+ "rdfs:comment": "Any FDA or other warnings about the drug (text or URL).",
+ "rdfs:label": "warning",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:URL"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2311"
- }
+ ]
},
{
- "@id": "schema:additionalNumberOfGuests",
- "@type": "rdf:Property",
- "rdfs:comment": "If responding yes, the number of guests who will attend in addition to the invitee.",
- "rdfs:label": "additionalNumberOfGuests",
- "schema:domainIncludes": {
- "@id": "schema:RsvpAction"
+ "@id": "schema:MeetingRoom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A meeting room, conference room, or conference hall is a room provided for singular events such as business conferences and meetings (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Conference_hall).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "MeetingRoom",
+ "rdfs:subClassOf": {
+ "@id": "schema:Room"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:workLocation",
+ "@id": "schema:expectedArrivalUntil",
"@type": "rdf:Property",
- "rdfs:comment": "A contact location for a person's place of work.",
- "rdfs:label": "workLocation",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
+ "rdfs:comment": "The latest date the package may arrive.",
+ "rdfs:label": "expectedArrivalUntil",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:ParcelDelivery"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:ContactPoint"
+ "@id": "schema:Date"
}
]
},
{
- "@id": "schema:numberedPosition",
+ "@id": "schema:exampleOfWork",
"@type": "rdf:Property",
- "rdfs:comment": "A number associated with a role in an organization, for example, the number on an athlete's jersey.",
- "rdfs:label": "numberedPosition",
+ "rdfs:comment": "A creative work that this work is an example/instance/realization/derivation of.",
+ "rdfs:label": "exampleOfWork",
"schema:domainIncludes": {
- "@id": "schema:OrganizationRole"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:workExample"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:EffectivenessHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about the effectiveness-related aspects of a health topic.",
- "rdfs:label": "EffectivenessHealthAspect",
+ "@id": "schema:cvdNumBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.",
+ "rdfs:label": "cvdNumBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
- }
- },
- {
- "@id": "schema:WholesaleStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A wholesale store.",
- "rdfs:label": "WholesaleStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:membershipNumber",
+ "@id": "schema:lyrics",
"@type": "rdf:Property",
- "rdfs:comment": "A unique identifier for the membership.",
- "rdfs:label": "membershipNumber",
+ "rdfs:comment": "The words in the song.",
+ "rdfs:label": "lyrics",
"schema:domainIncludes": {
- "@id": "schema:ProgramMembership"
+ "@id": "schema:MusicComposition"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:FundingScheme",
- "@type": "rdfs:Class",
- "rdfs:comment": "A FundingScheme combines organizational, project and policy aspects of grant-based funding\n that sets guidelines, principles and mechanisms to support other kinds of projects and activities.\n Funding is typically organized via [[Grant]] funding. Examples of funding schemes: Swiss Priority Programmes (SPPs); EU Framework 7 (FP7); Horizon 2020; the NIH-R01 Grant Program; Wellcome institutional strategic support fund. For large scale public sector funding, the management and administration of grant awards is often handled by other, dedicated, organizations - [[FundingAgency]]s such as ERC, REA, ...",
- "rdfs:label": "FundingScheme",
- "rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "schema:broadcastSignalModulation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The modulation (e.g. FM, AM, etc) used by a particular broadcast service.",
+ "rdfs:label": "broadcastSignalModulation",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastFrequencySpecification"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ "@id": "schema:Text"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ "@id": "schema:QualitativeValue"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2111"
+ }
},
{
- "@id": "schema:Recommendation",
- "@type": "rdfs:Class",
- "rdfs:comment": "[[Recommendation]] is a type of [[Review]] that suggests or proposes something as the best option or best course of action. Recommendations may be for products or services, or other concrete things, as in the case of a ranked list or product guide. A [[Guide]] may list multiple recommendations for different categories. For example, in a [[Guide]] about which TVs to buy, the author may have several [[Recommendation]]s.",
- "rdfs:label": "Recommendation",
- "rdfs:subClassOf": {
- "@id": "schema:Review"
+ "@id": "schema:loanType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of a loan or credit.",
+ "rdfs:label": "loanType",
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2405"
- }
- },
- {
- "@id": "schema:Clinician",
- "@type": "schema:MedicalAudienceType",
- "rdfs:comment": "Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.",
- "rdfs:label": "Clinician",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
},
{
- "@id": "schema:medicineSystem",
+ "@id": "schema:seriousAdverseOutcome",
"@type": "rdf:Property",
- "rdfs:comment": "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.",
- "rdfs:label": "medicineSystem",
- "schema:domainIncludes": {
- "@id": "schema:MedicalEntity"
- },
+ "rdfs:comment": "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.",
+ "rdfs:label": "seriousAdverseOutcome",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalTherapy"
+ },
+ {
+ "@id": "schema:MedicalDevice"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicineSystem"
+ "@id": "schema:MedicalEntity"
}
},
{
- "@id": "schema:usesDevice",
- "@type": "rdf:Property",
- "rdfs:comment": "Device used to perform the test.",
- "rdfs:label": "usesDevice",
- "schema:domainIncludes": {
- "@id": "schema:MedicalTest"
+ "@id": "schema:UKNonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UKNonprofitType: Non-profit organization type originating from the United Kingdom.",
+ "rdfs:label": "UKNonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:NonprofitType"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalDevice"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:typicalAgeRange",
+ "@id": "schema:workFeatured",
"@type": "rdf:Property",
- "rdfs:comment": "The typical expected age range, e.g. '7-9', '11-'.",
- "rdfs:label": "typicalAgeRange",
- "schema:domainIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:Event"
- }
- ],
+ "rdfs:comment": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).",
+ "rdfs:label": "workFeatured",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:author",
+ "@id": "schema:BoatTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A trip on a commercial ferry line.",
+ "rdfs:label": "BoatTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ }
+ },
+ {
+ "@id": "schema:baseSalary",
"@type": "rdf:Property",
- "rdfs:comment": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.",
- "rdfs:label": "author",
+ "rdfs:comment": "The base salary of the job or of an employee in an EmployeeRole.",
+ "rdfs:label": "baseSalary",
"schema:domainIncludes": [
{
- "@id": "schema:Rating"
+ "@id": "schema:JobPosting"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:EmployeeRole"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:MonetaryAmount"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:PriceSpecification"
}
]
},
{
- "@id": "schema:inStoreReturnsOffered",
- "@type": "rdf:Property",
- "rdfs:comment": "Are in-store returns offered? (for more advanced return methods use the [[returnMethod]] property)",
- "rdfs:label": "inStoreReturnsOffered",
- "schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
- }
- },
- {
- "@id": "schema:collectionSize",
+ "@id": "schema:course",
"@type": "rdf:Property",
- "rdfs:comment": {
- "@language": "en",
- "@value": "The number of items in the [[Collection]]."
- },
- "rdfs:label": {
- "@language": "en",
- "@value": "collectionSize"
+ "rdfs:comment": "A sub property of location. The course where this action was taken.",
+ "rdfs:label": "course",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
},
"schema:domainIncludes": {
- "@id": "schema:Collection"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:ExerciseAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:Place"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1759"
+ "schema:supersededBy": {
+ "@id": "schema:exerciseCourse"
}
},
{
- "@id": "schema:MarryAction",
+ "@id": "schema:EmployeeRole",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of marrying a person.",
- "rdfs:label": "MarryAction",
+ "rdfs:comment": "A subclass of OrganizationRole used to describe employee relationships.",
+ "rdfs:label": "EmployeeRole",
"rdfs:subClassOf": {
- "@id": "schema:InteractAction"
+ "@id": "schema:OrganizationRole"
}
},
{
- "@id": "schema:isAccessoryOrSparePartFor",
+ "@id": "schema:gameAvailabilityType",
"@type": "rdf:Property",
- "rdfs:comment": "A pointer to another product (or multiple products) for which this product is an accessory or spare part.",
- "rdfs:label": "isAccessoryOrSparePartFor",
+ "rdfs:comment": "Indicates the availability type of the game content associated with this action, such as whether it is a full version or a demo.",
+ "rdfs:label": "gameAvailabilityType",
"schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:PlayGameAction"
},
- "schema:rangeIncludes": {
- "@id": "schema:Product"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:GameAvailabilityEnumeration"
+ }
+ ],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
}
},
{
- "@id": "schema:DataDownload",
+ "@id": "schema:BookStore",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://www.w3.org/ns/dcat#Distribution"
- },
- "rdfs:comment": "A dataset in downloadable form.",
- "rdfs:label": "DataDownload",
+ "rdfs:comment": "A bookstore.",
+ "rdfs:label": "BookStore",
"rdfs:subClassOf": {
- "@id": "schema:MediaObject"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:associatedMediaReview",
+ "@id": "schema:Gastroenterologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.",
+ "rdfs:label": "Gastroenterologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:nerve",
"@type": "rdf:Property",
- "rdfs:comment": "An associated [[MediaReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].",
- "rdfs:label": "associatedMediaReview",
- "rdfs:subPropertyOf": {
- "@id": "schema:associatedReview"
- },
+ "rdfs:comment": "The underlying innervation associated with the muscle.",
+ "rdfs:label": "nerve",
"schema:domainIncludes": {
- "@id": "schema:Review"
+ "@id": "schema:Muscle"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Review"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "schema:Nerve"
}
},
{
- "@id": "schema:BoatReservation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A reservation for boat travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
- "rdfs:label": "BoatReservation",
- "rdfs:subClassOf": {
- "@id": "schema:Reservation"
- },
+ "@id": "schema:competencyRequired",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.",
+ "rdfs:label": "competencyRequired",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:LearningResource"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
},
{
- "@id": "schema:HinduTemple",
+ "@id": "schema:UpdateAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A Hindu temple.",
- "rdfs:label": "HinduTemple",
+ "rdfs:comment": "The act of managing by changing/editing the state of the object.",
+ "rdfs:label": "UpdateAction",
"rdfs:subClassOf": {
- "@id": "schema:PlaceOfWorship"
- }
- },
- {
- "@id": "schema:Diagnostic",
- "@type": "schema:MedicalDevicePurpose",
- "rdfs:comment": "A medical device used for diagnostic purposes.",
- "rdfs:label": "Diagnostic",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:serviceOutput",
+ "@id": "schema:remainingAttendeeCapacity",
"@type": "rdf:Property",
- "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.",
- "rdfs:label": "serviceOutput",
+ "rdfs:comment": "The number of attendee places for an event that remain unallocated.",
+ "rdfs:label": "remainingAttendeeCapacity",
"schema:domainIncludes": {
- "@id": "schema:Service"
+ "@id": "schema:Event"
},
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:Nerve",
- "@type": "rdfs:Class",
- "rdfs:comment": "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.",
- "rdfs:label": "Nerve",
- "rdfs:subClassOf": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:parentTaxon",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
+ },
+ "rdfs:comment": "Closest parent taxon of the taxon in question.",
+ "rdfs:label": "parentTaxon",
+ "schema:domainIncludes": {
+ "@id": "schema:Taxon"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:childTaxon"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ }
+ ]
},
{
- "@id": "schema:requiredMaxAge",
+ "@id": "schema:parentService",
"@type": "rdf:Property",
- "rdfs:comment": "Audiences defined by a person's maximum age.",
- "rdfs:label": "requiredMaxAge",
+ "rdfs:comment": "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.",
+ "rdfs:label": "parentService",
"schema:domainIncludes": {
- "@id": "schema:PeopleAudience"
+ "@id": "schema:BroadcastService"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:BroadcastService"
}
},
{
- "@id": "schema:DrivingSchoolVehicleUsage",
- "@type": "schema:CarUsageType",
- "rdfs:comment": "Indicates the usage of the vehicle for driving school.",
- "rdfs:label": "DrivingSchoolVehicleUsage",
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "schema:replacee",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The object that is being replaced.",
+ "rdfs:label": "replacee",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
- },
- {
- "@id": "schema:TelevisionStation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A television station.",
- "rdfs:label": "TelevisionStation",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "schema:domainIncludes": {
+ "@id": "schema:ReplaceAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:shippingLabel",
+ "@id": "schema:tracks",
"@type": "rdf:Property",
- "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).",
- "rdfs:label": "shippingLabel",
+ "rdfs:comment": "A music recording (track)—usually a single song.",
+ "rdfs:label": "tracks",
"schema:domainIncludes": [
{
- "@id": "schema:ShippingRateSettings"
+ "@id": "schema:MusicPlaylist"
},
{
- "@id": "schema:OfferShippingDetails"
+ "@id": "schema:MusicGroup"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MusicRecording"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "schema:supersededBy": {
+ "@id": "schema:track"
}
},
{
- "@id": "schema:language",
+ "@id": "schema:spouse",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of instrument. The language used on this action.",
- "rdfs:label": "language",
- "rdfs:subPropertyOf": {
- "@id": "schema:instrument"
+ "rdfs:comment": "The person's spouse.",
+ "rdfs:label": "spouse",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:CommunicateAction"
- },
- {
- "@id": "schema:WriteAction"
- }
- ],
"schema:rangeIncludes": {
- "@id": "schema:Language"
- },
- "schema:supersededBy": {
- "@id": "schema:inLanguage"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:Osteopathic",
- "@type": "schema:MedicineSystem",
- "rdfs:comment": "A system of medicine focused on promoting the body's innate ability to heal itself.",
- "rdfs:label": "Osteopathic",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:MobileApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A software application designed specifically to work well on a mobile device such as a telephone.",
+ "rdfs:label": "MobileApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:SoftwareApplication"
}
},
{
- "@id": "schema:underName",
+ "@id": "schema:pageEnd",
"@type": "rdf:Property",
- "rdfs:comment": "The person or organization the reservation or ticket is for.",
- "rdfs:label": "underName",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pageEnd"
+ },
+ "rdfs:comment": "The page on which the work ends; for example \"138\" or \"xvi\".",
+ "rdfs:label": "pageEnd",
"schema:domainIncludes": [
{
- "@id": "schema:Ticket"
+ "@id": "schema:PublicationVolume"
},
{
- "@id": "schema:Reservation"
+ "@id": "schema:PublicationIssue"
+ },
+ {
+ "@id": "schema:Chapter"
+ },
+ {
+ "@id": "schema:Article"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Integer"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Text"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
},
{
- "@id": "schema:WearableSizeGroupMens",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Mens\" for wearables.",
- "rdfs:label": "WearableSizeGroupMens",
+ "@id": "schema:diseaseSpreadStatistics",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Statistical information about the spread of a disease, either as [[WebContent]], or\n described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is\n provided, the page indicated might also contain more such markup.",
+ "rdfs:label": "diseaseSpreadStatistics",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:Observation"
+ },
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
}
},
{
- "@id": "schema:CollectionPage",
+ "@id": "schema:DiagnosticProcedure",
"@type": "rdfs:Class",
- "rdfs:comment": "Web page type: Collection page.",
- "rdfs:label": "CollectionPage",
+ "rdfs:comment": "A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.",
+ "rdfs:label": "DiagnosticProcedure",
"rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Question",
+ "@id": "schema:Attorney",
"@type": "rdfs:Class",
- "rdfs:comment": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.",
- "rdfs:label": "Question",
+ "rdfs:comment": "Professional service: Attorney. \\n\\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous.",
+ "rdfs:label": "Attorney",
"rdfs:subClassOf": {
- "@id": "schema:Comment"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"
+ "@id": "schema:LegalService"
}
},
{
- "@id": "schema:serialNumber",
+ "@id": "schema:layoutImage",
"@type": "rdf:Property",
- "rdfs:comment": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
- "rdfs:label": "serialNumber",
+ "rdfs:comment": "A schematic image showing the floorplan layout.",
+ "rdfs:label": "layoutImage",
"rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "@id": "schema:image"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
+ "schema:domainIncludes": {
+ "@id": "schema:FloorPlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:IndividualProduct"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Demand"
+ "@id": "schema:ImageObject"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2690"
}
},
{
- "@id": "schema:Substance",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/105590001"
+ "@id": "schema:additionalNumberOfGuests",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If responding yes, the number of guests who will attend in addition to the invitee.",
+ "rdfs:label": "additionalNumberOfGuests",
+ "schema:domainIncludes": {
+ "@id": "schema:RsvpAction"
},
- "rdfs:comment": "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.",
- "rdfs:label": "Substance",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:dateline",
+ "@id": "schema:availabilityEnds",
"@type": "rdf:Property",
- "rdfs:comment": "A [dateline](https://en.wikipedia.org/wiki/Dateline) is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.\n\nStructured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].\n\nDateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".\n ",
- "rdfs:label": "dateline",
+ "rdfs:comment": "The end of the availability of the product or service included in the offer.",
+ "rdfs:label": "availabilityEnds",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ }
+ ]
+ },
+ {
+ "@id": "schema:structuralClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name given to how bone physically connects to each other.",
+ "rdfs:label": "structuralClass",
"schema:domainIncludes": {
- "@id": "schema:NewsArticle"
+ "@id": "schema:Joint"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:OnlineOnly",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item is available only online.",
- "rdfs:label": "OnlineOnly"
+ "@id": "schema:TradeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.",
+ "rdfs:label": "TradeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
},
{
- "@id": "schema:transitTime",
+ "@id": "schema:programmingModel",
"@type": "rdf:Property",
- "rdfs:comment": "The typical delay the order has been sent for delivery and the goods reach the final customer. Typical properties: minValue, maxValue, unitCode (d for DAY).",
- "rdfs:label": "transitTime",
+ "rdfs:comment": "Indicates whether API is managed or unmanaged.",
+ "rdfs:label": "programmingModel",
"schema:domainIncludes": {
- "@id": "schema:ShippingDeliveryTime"
+ "@id": "schema:APIReference"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:fuelConsumption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\\n\\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel consumption to another value.",
+ "rdfs:label": "fuelConsumption",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
"schema:rangeIncludes": {
"@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:alumniOf",
+ "@id": "schema:grantee",
"@type": "rdf:Property",
- "rdfs:comment": "An organization that the person is an alumni of.",
- "rdfs:label": "alumniOf",
+ "rdfs:comment": "The person, organization, contact point, or audience that has been granted this permission.",
+ "rdfs:label": "grantee",
"schema:domainIncludes": {
- "@id": "schema:Person"
- },
- "schema:inverseOf": {
- "@id": "schema:alumni"
+ "@id": "schema:DigitalDocumentPermission"
},
"schema:rangeIncludes": [
+ {
+ "@id": "schema:Audience"
+ },
{
"@id": "schema:Organization"
},
{
- "@id": "schema:EducationalOrganization"
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:contentType",
+ "@id": "schema:BloodTest",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical test performed on a sample of a patient's blood.",
+ "rdfs:label": "BloodTest",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:activeIngredient",
"@type": "rdf:Property",
- "rdfs:comment": "The supported content type(s) for an EntryPoint response.",
- "rdfs:label": "contentType",
- "schema:domainIncludes": {
- "@id": "schema:EntryPoint"
+ "rdfs:comment": "An active ingredient, typically chemical compounds and/or biologic substances.",
+ "rdfs:label": "activeIngredient",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DrugStrength"
+ },
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:Substance"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:benefits",
+ "@id": "schema:RadioStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio station.",
+ "rdfs:label": "RadioStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:warrantyScope",
"@type": "rdf:Property",
- "rdfs:comment": "Description of benefits associated with the job.",
- "rdfs:label": "benefits",
+ "rdfs:comment": "The scope of the warranty promise.",
+ "rdfs:label": "warrantyScope",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:WarrantyPromise"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:WarrantyScope"
},
- "schema:supersededBy": {
- "@id": "schema:jobBenefits"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:childMinAge",
+ "@id": "schema:ComputerStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A computer store.",
+ "rdfs:label": "ComputerStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:muscleAction",
"@type": "rdf:Property",
- "rdfs:comment": "Minimal age of the child.",
- "rdfs:label": "childMinAge",
+ "rdfs:comment": "The movement the muscle generates.",
+ "rdfs:label": "muscleAction",
"schema:domainIncludes": {
- "@id": "schema:ParentAudience"
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:funder",
+ "@id": "schema:RentalCarReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for a rental car.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "RentalCarReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:ItemList",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.",
+ "rdfs:label": "ItemList",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:CausesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about the causes and main actions that gave rise to the topic.",
+ "rdfs:label": "CausesHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:VegetarianDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of animal meat.",
+ "rdfs:label": "VegetarianDiet"
+ },
+ {
+ "@id": "schema:seller",
"@type": "rdf:Property",
- "rdfs:comment": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
- "rdfs:label": "funder",
+ "rdfs:comment": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.",
+ "rdfs:label": "seller",
"rdfs:subPropertyOf": {
- "@id": "schema:sponsor"
+ "@id": "schema:participant"
},
"schema:domainIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:MonetaryGrant"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:Event"
+ "@id": "schema:BuyAction"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Order"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Flight"
}
],
"schema:rangeIncludes": [
@@ -4525,1233 +4570,1048 @@
]
},
{
- "@id": "schema:Accommodation",
- "@type": "rdfs:Class",
- "rdfs:comment": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "Accommodation",
- "rdfs:subClassOf": {
- "@id": "schema:Place"
+ "@id": "schema:studyLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location in which the study is taking/took place.",
+ "rdfs:label": "studyLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalStudy"
},
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
}
},
{
- "@id": "schema:cvdNumTotBeds",
+ "@id": "schema:mapType",
"@type": "rdf:Property",
- "rdfs:comment": "numtotbeds - ALL HOSPITAL BEDS: Total number of all Inpatient and outpatient beds, including all staffed,ICU, licensed, and overflow (surge) beds used for inpatients or outpatients.",
- "rdfs:label": "cvdNumTotBeds",
+ "rdfs:comment": "Indicates the kind of Map, from the MapCategoryType Enumeration.",
+ "rdfs:label": "mapType",
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Map"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "schema:MapCategoryType"
}
},
{
- "@id": "schema:globalLocationNumber",
+ "@id": "schema:fromLocation",
"@type": "rdf:Property",
- "rdfs:comment": "The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
- "rdfs:label": "globalLocationNumber",
+ "rdfs:comment": "A sub property of location. The original location of the object or the agent before the action.",
+ "rdfs:label": "fromLocation",
"rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "@id": "schema:location"
},
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:MoveAction"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:ExerciseAction"
},
{
- "@id": "schema:Person"
+ "@id": "schema:TransferAction"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:GasStation",
+ "@id": "schema:ReturnFeesEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A gas station.",
- "rdfs:label": "GasStation",
+ "rdfs:comment": "Enumerates several kinds of policies for product return fees.",
+ "rdfs:label": "ReturnFeesEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:AutomotiveBusiness"
- }
- },
- {
- "@id": "schema:archiveHeld",
- "@type": "rdf:Property",
- "rdfs:comment": {
- "@language": "en",
- "@value": "Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]]."
- },
- "rdfs:label": {
- "@language": "en",
- "@value": "archiveHeld"
- },
- "schema:domainIncludes": {
- "@id": "schema:ArchiveOrganization"
- },
- "schema:inverseOf": {
- "@id": "schema:holdingArchive"
+ "@id": "schema:Enumeration"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:ArchiveComponent"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
- }
- },
- {
- "@id": "schema:Pediatric",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that specializes in the care of infants, children and adolescents.",
- "rdfs:label": "Pediatric",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:EvidenceLevelC",
- "@type": "schema:MedicalEvidenceLevel",
- "rdfs:comment": "Only consensus opinion of experts, case studies, or standard-of-care.",
- "rdfs:label": "EvidenceLevelC",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:MultiPlayer",
- "@type": "schema:GamePlayMode",
- "rdfs:comment": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.",
- "rdfs:label": "MultiPlayer"
- },
- {
- "@id": "schema:ItemListUnordered",
- "@type": "schema:ItemListOrderType",
- "rdfs:comment": "An ItemList ordered with no explicit order.",
- "rdfs:label": "ItemListUnordered"
- },
- {
- "@id": "schema:numberOfPartialBathrooms",
+ "@id": "schema:knowsAbout",
"@type": "rdf:Property",
- "rdfs:comment": "Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsPartial field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). ",
- "rdfs:label": "numberOfPartialBathrooms",
+ "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.",
+ "rdfs:label": "knowsAbout",
"schema:domainIncludes": [
{
- "@id": "schema:Accommodation"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:FloorPlan"
+ "@id": "schema:Person"
}
],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
- }
- },
- {
- "@id": "schema:Message",
- "@type": "rdfs:Class",
- "rdfs:comment": "A single message from a sender to one or more organizations or people.",
- "rdfs:label": "Message",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:TennisComplex",
- "@type": "rdfs:Class",
- "rdfs:comment": "A tennis complex.",
- "rdfs:label": "TennisComplex",
- "rdfs:subClassOf": {
- "@id": "schema:SportsActivityLocation"
- }
- },
- {
- "@id": "schema:doesNotShip",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates when shipping to a particular [[shippingDestination]] is not available.",
- "rdfs:label": "doesNotShip",
- "schema:domainIncludes": [
+ "schema:rangeIncludes": [
{
- "@id": "schema:OfferShippingDetails"
+ "@id": "schema:Thing"
},
{
- "@id": "schema:ShippingRateSettings"
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
- }
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ }
+ ]
},
{
- "@id": "schema:MedicalContraindication",
+ "@id": "schema:MerchantReturnPolicySeasonalOverride",
"@type": "rdfs:Class",
- "rdfs:comment": "A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures).",
- "rdfs:label": "MedicalContraindication",
+ "rdfs:comment": "A seasonal override of a return policy, for example used for holidays.",
+ "rdfs:label": "MerchantReturnPolicySeasonalOverride",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:cvdNumC19Died",
- "@type": "rdf:Property",
- "rdfs:comment": "numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location.",
- "rdfs:label": "cvdNumC19Died",
- "schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
+ "@id": "schema:RearWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Real-wheel drive is a transmission layout where the engine drives the rear wheels.",
+ "rdfs:label": "RearWheelDriveConfiguration",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:legislationDate",
+ "@id": "schema:mainEntityOfPage",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#date_document"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#date_document"
- },
- "rdfs:comment": "The date of adoption or signature of the legislation. This is the date at which the text is officially aknowledged to be a legislation, even though it might not even be published or in force.",
- "rdfs:label": "legislationDate",
- "rdfs:subPropertyOf": {
- "@id": "schema:dateCreated"
- },
+ "rdfs:comment": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.",
+ "rdfs:label": "mainEntityOfPage",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Thing"
},
- "schema:rangeIncludes": {
- "@id": "schema:Date"
+ "schema:inverseOf": {
+ "@id": "schema:mainEntity"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:URL"
},
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:CreativeWork"
}
]
},
{
- "@id": "schema:MediaGallery",
- "@type": "rdfs:Class",
- "rdfs:comment": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia.",
- "rdfs:label": "MediaGallery",
- "rdfs:subClassOf": {
- "@id": "schema:CollectionPage"
- }
- },
- {
- "@id": "schema:RegisterAction",
+ "@id": "schema:ContactPointOption",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of registering to be a user of a service, product or web page.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\\n* [FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.",
- "rdfs:label": "RegisterAction",
+ "rdfs:comment": "Enumerated options related to a ContactPoint.",
+ "rdfs:label": "ContactPointOption",
"rdfs:subClassOf": {
- "@id": "schema:InteractAction"
+ "@id": "schema:Enumeration"
}
},
{
- "@id": "schema:AmpStory",
- "@type": "rdfs:Class",
- "rdfs:comment": "A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices.",
- "rdfs:label": "AmpStory",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2646"
- }
- },
- {
- "@id": "schema:typicalCreditsPerTerm",
+ "@id": "schema:actor",
"@type": "rdf:Property",
- "rdfs:comment": "The number of credits or units a full-time student would be expected to take in 1 term however 'term' is defined by the institution.",
- "rdfs:label": "typicalCreditsPerTerm",
- "schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "actor",
+ "schema:domainIncludes": [
{
- "@id": "schema:StructuredValue"
+ "@id": "schema:VideoGameSeries"
},
{
- "@id": "schema:Integer"
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:TVSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:PodcastSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:illustrator",
+ "@id": "schema:releasedEvent",
"@type": "rdf:Property",
- "rdfs:comment": "The illustrator of the book.",
- "rdfs:label": "illustrator",
+ "rdfs:comment": "The place and time the release was issued, expressed as a PublicationEvent.",
+ "rdfs:label": "releasedEvent",
"schema:domainIncludes": {
- "@id": "schema:Book"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
- }
- },
- {
- "@id": "schema:ExercisePlan",
- "@type": "rdfs:Class",
- "rdfs:comment": "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.",
- "rdfs:label": "ExercisePlan",
- "rdfs:subClassOf": [
- {
- "@id": "schema:PhysicalActivity"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:ChildCare",
- "@type": "rdfs:Class",
- "rdfs:comment": "A Childcare center.",
- "rdfs:label": "ChildCare",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:PublicationEvent"
}
},
{
- "@id": "schema:MediaManipulationRatingEnumeration",
+ "@id": "schema:IgnoreAction",
"@type": "rdfs:Class",
- "rdfs:comment": " Codes for use with the [[mediaAuthenticityCategory]] property, indicating the authenticity of a media object (in the context of how it was published or shared). In general these codes are not mutually exclusive, although some combinations (such as 'original' versus 'transformed', 'edited' and 'staged') would be contradictory if applied in the same [[MediaReview]]. Note that the application of these codes is with regard to a piece of media shared or published in a particular context.",
- "rdfs:label": "MediaManipulationRatingEnumeration",
+ "rdfs:comment": "The act of intentionally disregarding the object. An agent ignores an object.",
+ "rdfs:label": "IgnoreAction",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "schema:AssessAction"
}
},
{
- "@id": "schema:stage",
+ "@id": "schema:publicationType",
"@type": "rdf:Property",
- "rdfs:comment": "The stage of the condition, if applicable.",
- "rdfs:label": "stage",
+ "rdfs:comment": "The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html).",
+ "rdfs:label": "publicationType",
"schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
+ "@id": "schema:MedicalScholarlyArticle"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalConditionStage"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:productID",
- "@type": "rdf:Property",
- "rdfs:comment": "The product identifier, such as ISBN. For example: ``` meta itemprop=\"productID\" content=\"isbn:123-456-789\" ```.",
- "rdfs:label": "productID",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "@id": "schema:UserCheckins",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserCheckins",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
},
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:polygon",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.",
+ "rdfs:label": "polygon",
"schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:GeoShape"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:ComedyClub",
+ "@id": "schema:ArriveAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A comedy club.",
- "rdfs:label": "ComedyClub",
+ "rdfs:comment": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.",
+ "rdfs:label": "ArriveAction",
"rdfs:subClassOf": {
- "@id": "schema:EntertainmentBusiness"
+ "@id": "schema:MoveAction"
}
},
{
- "@id": "schema:speakable",
+ "@id": "schema:RecyclingCenter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recycling center.",
+ "rdfs:label": "RecyclingCenter",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:musicalKey",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.\n\n\nFor more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this\nwe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.\n ",
- "rdfs:label": "speakable",
+ "rdfs:comment": "The key, mode, or scale this composition uses.",
+ "rdfs:label": "musicalKey",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:value",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "value",
"schema:domainIncludes": [
{
- "@id": "schema:Article"
+ "@id": "schema:PropertyValue"
},
{
- "@id": "schema:WebPage"
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:StructuredValue"
},
{
- "@id": "schema:SpeakableSpecification"
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ },
+ {
+ "@id": "schema:Number"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:SendAction",
+ "@id": "schema:RoofingContractor",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\\n\\n* [[ReceiveAction]]: The reciprocal of SendAction.\\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).",
- "rdfs:label": "SendAction",
+ "rdfs:comment": "A roofing contractor.",
+ "rdfs:label": "RoofingContractor",
"rdfs:subClassOf": {
- "@id": "schema:TransferAction"
+ "@id": "schema:HomeAndConstructionBusiness"
}
},
{
- "@id": "schema:yearBuilt",
- "@type": "rdf:Property",
- "rdfs:comment": "The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). ",
- "rdfs:label": "yearBuilt",
- "schema:domainIncludes": {
- "@id": "schema:Accommodation"
- },
+ "@id": "schema:WearableMeasurementLength",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Represents the length, for example of a dress",
+ "rdfs:label": "WearableMeasurementLength",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:includedComposition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Smaller compositions included in this work (e.g. a movement in a symphony).",
+ "rdfs:label": "includedComposition",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:MusicComposition"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:preOp",
+ "@id": "schema:bookFormat",
"@type": "rdf:Property",
- "rdfs:comment": "A description of the workup, testing, and other preparations required before implanting this device.",
- "rdfs:label": "preOp",
+ "rdfs:comment": "The format of the book.",
+ "rdfs:label": "bookFormat",
"schema:domainIncludes": {
- "@id": "schema:MedicalDevice"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Book"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:BookFormatType"
}
},
{
- "@id": "schema:Thesis",
+ "@id": "schema:ReservationConfirmed",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a confirmed reservation.",
+ "rdfs:label": "ReservationConfirmed"
+ },
+ {
+ "@id": "schema:Specialty",
"@type": "rdfs:Class",
- "rdfs:comment": "A thesis or dissertation document submitted in support of candidature for an academic degree or professional qualification.",
- "rdfs:label": "Thesis",
+ "rdfs:comment": "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.",
+ "rdfs:label": "Specialty",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:healthCondition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifying the health condition(s) of a patient, medical study, or other target audience.",
+ "rdfs:label": "healthCondition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalStudy"
+ },
+ {
+ "@id": "schema:Patient"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "http://www.productontology.org/id/Thesis"
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
}
},
{
- "@id": "schema:ShortStory",
- "@type": "rdfs:Class",
- "rdfs:comment": "Short story or tale. A brief work of literature, usually written in narrative prose.",
- "rdfs:label": "ShortStory",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
+ "@id": "schema:EUEnergyEfficiencyCategoryC",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryC",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1976"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:ScheduleAction",
+ "@id": "schema:GeoCoordinates",
"@type": "rdfs:Class",
- "rdfs:comment": "Scheduling future actions, events, or tasks.\\n\\nRelated actions:\\n\\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.",
- "rdfs:label": "ScheduleAction",
+ "rdfs:comment": "The geographic coordinates of a place or event.",
+ "rdfs:label": "GeoCoordinates",
"rdfs:subClassOf": {
- "@id": "schema:PlanAction"
+ "@id": "schema:StructuredValue"
}
},
{
- "@id": "schema:model",
+ "@id": "schema:version",
"@type": "rdf:Property",
- "rdfs:comment": "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.",
- "rdfs:label": "model",
+ "rdfs:comment": "The version of the CreativeWork embodied by a specified resource.",
+ "rdfs:label": "version",
"schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Number"
},
{
- "@id": "schema:ProductModel"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:Ayurvedic",
- "@type": "schema:MedicineSystem",
- "rdfs:comment": "A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.",
- "rdfs:label": "Ayurvedic",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:depth",
+ "@id": "schema:locationCreated",
"@type": "rdf:Property",
- "rdfs:comment": "The depth of the item.",
- "rdfs:label": "depth",
- "schema:domainIncludes": [
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:VisualArtwork"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Distance"
- },
- {
- "@id": "schema:QuantitativeValue"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "rdfs:comment": "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork.",
+ "rdfs:label": "locationCreated",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:Nonprofit501c26",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals.",
- "rdfs:label": "Nonprofit501c26",
+ "@id": "schema:SRP",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the suggested retail price (\"SRP\") of an offered product.",
+ "rdfs:label": "SRP",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
}
},
{
- "@id": "schema:workPresented",
+ "@id": "schema:relevantSpecialty",
"@type": "rdf:Property",
- "rdfs:comment": "The movie presented during this event.",
- "rdfs:label": "workPresented",
- "rdfs:subPropertyOf": {
- "@id": "schema:workFeatured"
- },
+ "rdfs:comment": "If applicable, a medical specialty in which this entity is relevant.",
+ "rdfs:label": "relevantSpecialty",
"schema:domainIncludes": {
- "@id": "schema:ScreeningEvent"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Movie"
+ "@id": "schema:MedicalSpecialty"
}
},
{
- "@id": "schema:hasDriveThroughService",
+ "@id": "schema:floorLevel",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.",
- "rdfs:label": "hasDriveThroughService",
+ "rdfs:comment": "The floor level for an [[Accommodation]] in a multi-storey building. Since counting\n systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.",
+ "rdfs:label": "floorLevel",
"schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Accommodation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:exchangeRateSpread",
+ "@id": "schema:isConsumableFor",
"@type": "rdf:Property",
- "rdfs:comment": "The difference between the price at which a broker or other intermediary buys and sells foreign currency.",
- "rdfs:label": "exchangeRateSpread",
+ "rdfs:comment": "A pointer to another product (or multiple products) for which this product is a consumable.",
+ "rdfs:label": "isConsumableFor",
"schema:domainIncludes": {
- "@id": "schema:ExchangeRateSpecification"
+ "@id": "schema:Product"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:TaxiStand",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A taxi stand.",
+ "rdfs:label": "TaxiStand",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c2",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c2: Non-profit type referring to Title-holding Corporations for Exempt Organizations.",
+ "rdfs:label": "Nonprofit501c2",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:MonetaryAmount"
- },
- {
- "@id": "schema:Number"
- }
- ],
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
},
{
- "@id": "schema:maximumAttendeeCapacity",
+ "@id": "schema:ClothingStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A clothing store.",
+ "rdfs:label": "ClothingStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:nonProprietaryName",
"@type": "rdf:Property",
- "rdfs:comment": "The total number of individuals that may attend an event or venue.",
- "rdfs:label": "maximumAttendeeCapacity",
+ "rdfs:comment": "The generic name of this drug or supplement.",
+ "rdfs:label": "nonProprietaryName",
"schema:domainIncludes": [
{
- "@id": "schema:Event"
+ "@id": "schema:DietarySupplement"
},
{
- "@id": "schema:Place"
+ "@id": "schema:Drug"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- }
- },
- {
- "@id": "schema:inPlaylist",
- "@type": "rdf:Property",
- "rdfs:comment": "The playlist to which this recording belongs.",
- "rdfs:label": "inPlaylist",
- "schema:domainIncludes": {
- "@id": "schema:MusicRecording"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MusicPlaylist"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:RadiationTherapy",
+ "@id": "schema:VideoObjectSnapshot",
"@type": "rdfs:Class",
- "rdfs:comment": "A process of care using radiation aimed at improving a health condition.",
- "rdfs:label": "RadiationTherapy",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of a [[VideoObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "VideoObjectSnapshot",
"rdfs:subClassOf": {
- "@id": "schema:MedicalTherapy"
+ "@id": "schema:VideoObject"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:naturalProgression",
- "@type": "rdf:Property",
- "rdfs:comment": "The expected progression of the condition if it is not treated and allowed to progress naturally.",
- "rdfs:label": "naturalProgression",
- "schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
- },
+ "@id": "schema:OverviewHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction.",
+ "rdfs:label": "OverviewHealthAspect",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:numberOfSeasons",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of seasons in this series.",
- "rdfs:label": "numberOfSeasons",
- "schema:domainIncludes": [
- {
- "@id": "schema:RadioSeries"
- },
+ "@id": "schema:Guide",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "[[Guide]] is a page or article that recommends specific products or services, or aspects of a thing for a user to consider. A [[Guide]] may represent a Buying Guide and detail aspects of products or services for a user to consider. A [[Guide]] may represent a Product Guide and recommend specific products or services. A [[Guide]] may represent a Ranked List and recommend specific products or services with ranking.",
+ "rdfs:label": "Guide",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2405"
+ }
+ },
+ {
+ "@id": "schema:availableLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]].",
+ "rdfs:label": "availableLanguage",
+ "schema:domainIncludes": [
{
- "@id": "schema:TVSeries"
+ "@id": "schema:TouristAttraction"
},
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:ServiceChannel"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- }
- },
- {
- "@id": "schema:employees",
- "@type": "rdf:Property",
- "rdfs:comment": "People working for this organization.",
- "rdfs:label": "employees",
- "schema:domainIncludes": {
- "@id": "schema:Organization"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
- },
- "schema:supersededBy": {
- "@id": "schema:employee"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Language"
+ }
+ ]
},
{
- "@id": "schema:EUEnergyEfficiencyEnumeration",
+ "@id": "schema:MoneyTransfer",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369.",
- "rdfs:label": "EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "The act of transferring money from one place to another place. This may occur electronically or physically.",
+ "rdfs:label": "MoneyTransfer",
"rdfs:subClassOf": {
- "@id": "schema:EnergyEfficiencyEnumeration"
+ "@id": "schema:TransferAction"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
},
{
- "@id": "schema:predecessorOf",
- "@type": "rdf:Property",
- "rdfs:comment": "A pointer from a previous, often discontinued variant of the product to its newer variant.",
- "rdfs:label": "predecessorOf",
- "schema:domainIncludes": {
- "@id": "schema:ProductModel"
+ "@id": "schema:MeasurementTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumeration of common measurement types (or dimensions), for example \"chest\" for a person, \"inseam\" for pants, \"gauge\" for screws, or \"wheel\" for bicycles.",
+ "rdfs:label": "MeasurementTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
- "schema:rangeIncludes": {
- "@id": "schema:ProductModel"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:departurePlatform",
- "@type": "rdf:Property",
- "rdfs:comment": "The platform from which the train departs.",
- "rdfs:label": "departurePlatform",
- "schema:domainIncludes": {
- "@id": "schema:TrainTrip"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:expires",
+ "@id": "schema:partOfTVSeries",
"@type": "rdf:Property",
- "rdfs:comment": "Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.",
- "rdfs:label": "expires",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "rdfs:comment": "The TV series to which this episode or season belongs.",
+ "rdfs:label": "partOfTVSeries",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:TVClip"
+ },
+ {
+ "@id": "schema:TVSeason"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Date"
- }
- },
- {
- "@id": "schema:seatNumber",
- "@type": "rdf:Property",
- "rdfs:comment": "The location of the reserved seat (e.g., 27).",
- "rdfs:label": "seatNumber",
- "schema:domainIncludes": {
- "@id": "schema:Seat"
+ "@id": "schema:TVSeries"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:supersededBy": {
+ "@id": "schema:partOfSeries"
}
},
{
- "@id": "schema:DiscoverAction",
+ "@id": "schema:Festival",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of discovering/finding an object.",
- "rdfs:label": "DiscoverAction",
+ "rdfs:comment": "Event type: Festival.",
+ "rdfs:label": "Festival",
"rdfs:subClassOf": {
- "@id": "schema:FindAction"
- }
- },
- {
- "@id": "schema:Monday",
- "@type": "schema:DayOfWeek",
- "rdfs:comment": "The day of the week between Sunday and Tuesday.",
- "rdfs:label": "Monday",
- "schema:sameAs": {
- "@id": "http://www.wikidata.org/entity/Q105"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:estimatesRiskOf",
+ "@id": "schema:sha256",
"@type": "rdf:Property",
- "rdfs:comment": "The condition, complication, or symptom whose risk is being estimated.",
- "rdfs:label": "estimatesRiskOf",
+ "rdfs:comment": "The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'",
+ "rdfs:label": "sha256",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
"schema:domainIncludes": {
- "@id": "schema:MedicalRiskEstimator"
+ "@id": "schema:MediaObject"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalEntity"
- }
- },
- {
- "@id": "schema:RecommendedDoseSchedule",
- "@type": "rdfs:Class",
- "rdfs:comment": "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
- "rdfs:label": "RecommendedDoseSchedule",
- "rdfs:subClassOf": {
- "@id": "schema:DoseSchedule"
+ "@id": "schema:Text"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:cutoffTime",
+ "@id": "schema:musicReleaseFormat",
"@type": "rdf:Property",
- "rdfs:comment": "Order cutoff time allows merchants to describe the time after which they will no longer process orders received on that day. For orders processed after cutoff time, one day gets added to the delivery time estimate. This property is expected to be most typically used via the [[ShippingRateSettings]] publication pattern. The time is indicated using the ISO-8601 Time format, e.g. \"23:30:00-05:00\" would represent 6:30 pm Eastern Standard Time (EST) which is 5 hours behind Coordinated Universal Time (UTC).",
- "rdfs:label": "cutoffTime",
+ "rdfs:comment": "Format of this release (the type of recording media used, i.e. compact disc, digital media, LP, etc.).",
+ "rdfs:label": "musicReleaseFormat",
"schema:domainIncludes": {
- "@id": "schema:ShippingDeliveryTime"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:MusicRelease"
},
"schema:rangeIncludes": {
- "@id": "schema:Time"
+ "@id": "schema:MusicReleaseFormatType"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:requiredCollateral",
+ "@id": "schema:acquireLicensePage",
"@type": "rdf:Property",
- "rdfs:comment": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)",
- "rdfs:label": "requiredCollateral",
+ "rdfs:comment": "Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.",
+ "rdfs:label": "acquireLicensePage",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:usageInfo"
+ },
"schema:domainIncludes": {
- "@id": "schema:LoanOrCredit"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Thing"
+ "@id": "schema:URL"
}
],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2454"
}
},
{
- "@id": "schema:weight",
- "@type": "rdf:Property",
- "rdfs:comment": "The weight of the product or person.",
- "rdfs:label": "weight",
- "schema:domainIncludes": [
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:Person"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:Endocrine",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.",
+ "rdfs:label": "Endocrine",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:gtin13",
- "@type": "rdf:Property",
- "rdfs:comment": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
- "rdfs:label": "gtin13",
- "rdfs:subPropertyOf": [
- {
- "@id": "schema:identifier"
- },
- {
- "@id": "schema:gtin"
- }
- ],
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:Product"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:WearableMeasurementOutsideLeg",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the outside leg, for example of pants",
+ "rdfs:label": "WearableMeasurementOutsideLeg",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:PartiallyInForce",
- "@type": "schema:LegalForceStatus",
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#InForce-partiallyInForce"
+ "@id": "schema:MusicAlbum",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A collection of music tracks.",
+ "rdfs:label": "MusicAlbum",
+ "rdfs:subClassOf": {
+ "@id": "schema:MusicPlaylist"
+ }
+ },
+ {
+ "@id": "schema:AskPublicNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[NewsArticle]] expressing an open call by a [[NewsMediaOrganization]] asking the public for input, insights, clarifications, anecdotes, documentation, etc., on an issue, for reporting purposes.",
+ "rdfs:label": "AskPublicNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
},
- "rdfs:comment": "Indicates that parts of the legislation are in force, and parts are not.",
- "rdfs:label": "PartiallyInForce",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": [
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
]
},
{
- "@id": "schema:energyEfficiencyScaleMin",
- "@type": "rdf:Property",
- "rdfs:comment": "Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
- "rdfs:label": "energyEfficiencyScaleMin",
- "schema:domainIncludes": {
- "@id": "schema:EnergyConsumptionDetails"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:EUEnergyEfficiencyEnumeration"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "schema:ServiceChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A means for accessing a service, e.g. a government office location, web site, or phone number.",
+ "rdfs:label": "ServiceChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:providerMobility",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').",
- "rdfs:label": "providerMobility",
- "schema:domainIncludes": {
- "@id": "schema:Service"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Saturday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Friday and Sunday.",
+ "rdfs:label": "Saturday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q131"
}
},
{
- "@id": "schema:sizeGroup",
+ "@id": "schema:recipeYield",
"@type": "rdf:Property",
- "rdfs:comment": "The size group (also known as \"size type\") for a product's size. Size groups are common in the fashion industry to define size segments and suggested audiences for wearable products. Multiple values can be combined, for example \"men's big and tall\", \"petite maternity\" or \"regular\"",
- "rdfs:label": "sizeGroup",
- "schema:domainIncludes": {
- "@id": "schema:SizeSpecification"
+ "rdfs:comment": "The quantity produced by the recipe (for example, number of people served, number of servings, etc).",
+ "rdfs:label": "recipeYield",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:yield"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:SizeGroupEnumeration"
+ "@id": "schema:Text"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:BankOrCreditUnion",
- "@type": "rdfs:Class",
- "rdfs:comment": "Bank or credit union.",
- "rdfs:label": "BankOrCreditUnion",
- "rdfs:subClassOf": {
- "@id": "schema:FinancialService"
- }
- },
- {
- "@id": "schema:MedicalSymptom",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.",
- "rdfs:label": "MedicalSymptom",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalSignOrSymptom"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ ]
},
{
- "@id": "schema:HealthAspectEnumeration",
+ "@id": "schema:OccupationalExperienceRequirements",
"@type": "rdfs:Class",
- "rdfs:comment": "HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]].",
- "rdfs:label": "HealthAspectEnumeration",
+ "rdfs:comment": "Indicates employment-related experience requirements, e.g. [[monthsOfExperience]].",
+ "rdfs:label": "OccupationalExperienceRequirements",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
}
},
{
- "@id": "schema:itemShipped",
+ "@id": "schema:thumbnailUrl",
"@type": "rdf:Property",
- "rdfs:comment": "Item(s) being shipped.",
- "rdfs:label": "itemShipped",
+ "rdfs:comment": "A thumbnail image relevant to the Thing.",
+ "rdfs:label": "thumbnailUrl",
"schema:domainIncludes": {
- "@id": "schema:ParcelDelivery"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:abridged",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates whether the book is an abridged edition.",
- "rdfs:label": "abridged",
- "schema:domainIncludes": {
- "@id": "schema:Book"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Organization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An organization such as a school, NGO, corporation, club, etc.",
+ "rdfs:label": "Organization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:diversityPolicy",
+ "@id": "schema:numberOfFullBathrooms",
"@type": "rdf:Property",
- "rdfs:comment": "Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.",
- "rdfs:label": "diversityPolicy",
+ "rdfs:comment": "Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field).",
+ "rdfs:label": "numberOfFullBathrooms",
"schema:domainIncludes": [
{
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:NewsMediaOrganization"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:CreativeWork"
+ "@id": "schema:FloorPlan"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Accommodation"
}
],
- "schema:source": [
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
- }
- ]
- },
- {
- "@id": "schema:scheduleTimezone",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the timezone for which the time(s) indicated in the [[Schedule]] are given. The value provided should be among those listed in the IANA Time Zone Database.",
- "rdfs:label": "scheduleTimezone",
- "schema:domainIncludes": {
- "@id": "schema:Schedule"
- },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Number"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:MathSolver",
+ "@id": "schema:HealthPlanNetwork",
"@type": "rdfs:Class",
- "rdfs:comment": "A math solver which is capable of solving a subset of mathematical problems.",
- "rdfs:label": "MathSolver",
+ "rdfs:comment": "A US-style health insurance plan network. ",
+ "rdfs:label": "HealthPlanNetwork",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
- }
- },
- {
- "@id": "schema:candidate",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. The candidate subject of this action.",
- "rdfs:label": "candidate",
- "rdfs:subPropertyOf": {
- "@id": "schema:object"
- },
- "schema:domainIncludes": {
- "@id": "schema:VoteAction"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:functionalClass",
- "@type": "rdf:Property",
- "rdfs:comment": "The degree of mobility the joint allows.",
- "rdfs:label": "functionalClass",
- "schema:domainIncludes": {
- "@id": "schema:Joint"
+ "@id": "schema:TouristTrip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tourist trip. A created itinerary of visits to one or more places of interest ([[TouristAttraction]]/[[TouristDestination]]) often linked by a similar theme, geographic area, or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors.\n (See examples below.)",
+ "rdfs:label": "TouristTrip",
+ "rdfs:subClassOf": {
+ "@id": "schema:Trip"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:Text"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
},
{
- "@id": "schema:MedicalEntity"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
}
]
},
{
- "@id": "schema:ReturnFeesCustomerResponsibility",
- "@type": "schema:ReturnFeesEnumeration",
- "rdfs:comment": "Specifies that product returns must be paid for, and are the responsibility of, the customer.",
- "rdfs:label": "ReturnFeesCustomerResponsibility",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
- }
- },
- {
- "@id": "schema:VinylFormat",
- "@type": "schema:MusicReleaseFormatType",
- "rdfs:comment": "VinylFormat.",
- "rdfs:label": "VinylFormat",
+ "@id": "schema:SymptomsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Symptoms or related symptoms of a Topic.",
+ "rdfs:label": "SymptomsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:priceValidUntil",
+ "@id": "schema:floorLimit",
"@type": "rdf:Property",
- "rdfs:comment": "The date after which the price is no longer available.",
- "rdfs:label": "priceValidUntil",
+ "rdfs:comment": "A floor limit is the amount of money above which credit card transactions must be authorized.",
+ "rdfs:label": "floorLimit",
"schema:domainIncludes": {
- "@id": "schema:Offer"
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:Neuro",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Neurological system clinical examination.",
+ "rdfs:label": "Neuro",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:DigitalAudioTapeFormat",
- "@type": "schema:MusicReleaseFormatType",
- "rdfs:comment": "DigitalAudioTapeFormat.",
- "rdfs:label": "DigitalAudioTapeFormat",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:requiredGender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Audiences defined by a person's gender.",
+ "rdfs:label": "requiredGender",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:MedicalSign",
+ "@id": "schema:HobbyShop",
"@type": "rdfs:Class",
- "rdfs:comment": "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.",
- "rdfs:label": "MedicalSign",
+ "rdfs:comment": "A store that sells materials useful or necessary for various hobbies.",
+ "rdfs:label": "HobbyShop",
"rdfs:subClassOf": {
- "@id": "schema:MedicalSignOrSymptom"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:discountCode",
+ "@id": "schema:proficiencyLevel",
"@type": "rdf:Property",
- "rdfs:comment": "Code used to redeem a discount.",
- "rdfs:label": "discountCode",
+ "rdfs:comment": "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.",
+ "rdfs:label": "proficiencyLevel",
"schema:domainIncludes": {
- "@id": "schema:Order"
+ "@id": "schema:TechArticle"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:BodyMeasurementWeight",
+ "@id": "schema:BodyMeasurementFoot",
"@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Body weight. Used, for example, to measure pantyhose.",
- "rdfs:label": "BodyMeasurementWeight",
+ "rdfs:comment": "Foot length (measured between end of the most prominent toe and the most prominent part of the heel). Used, for example, to measure socks.",
+ "rdfs:label": "BodyMeasurementFoot",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -5760,696 +5620,741 @@
}
},
{
- "@id": "schema:userInteractionCount",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.",
- "rdfs:label": "userInteractionCount",
- "schema:domainIncludes": {
- "@id": "schema:InteractionCounter"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:Casino",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A casino.",
+ "rdfs:label": "Casino",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
}
},
{
- "@id": "schema:genre",
+ "@id": "schema:productSupported",
"@type": "rdf:Property",
- "rdfs:comment": "Genre of the creative work, broadcast channel or group.",
- "rdfs:label": "genre",
- "schema:domainIncludes": [
- {
- "@id": "schema:MusicGroup"
- },
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:BroadcastChannel"
- }
- ],
+ "rdfs:comment": "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\").",
+ "rdfs:label": "productSupported",
+ "schema:domainIncludes": {
+ "@id": "schema:ContactPoint"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Product"
}
]
},
{
- "@id": "schema:contactType",
+ "@id": "schema:SoftwareSourceCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
+ "rdfs:label": "SoftwareSourceCode",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:nextItem",
"@type": "rdf:Property",
- "rdfs:comment": "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.",
- "rdfs:label": "contactType",
+ "rdfs:comment": "A link to the ListItem that follows the current one.",
+ "rdfs:label": "nextItem",
"schema:domainIncludes": {
- "@id": "schema:ContactPoint"
+ "@id": "schema:ListItem"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:ListItem"
}
},
{
- "@id": "schema:workTranslation",
- "@type": "rdf:Property",
- "rdfs:comment": "A work that is a translation of the content of this work. e.g. 西遊記 has an English workTranslation “Journey to the West”,a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.",
- "rdfs:label": "workTranslation",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:inverseOf": {
- "@id": "schema:translationOfWork"
+ "@id": "schema:MultiCenterTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial that takes place at multiple centers.",
+ "rdfs:label": "MultiCenterTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:BackOrder",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available on back order.",
+ "rdfs:label": "BackOrder"
+ },
+ {
+ "@id": "schema:PodcastSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used.",
+ "rdfs:label": "PodcastSeason",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeason"
},
"schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
}
},
{
- "@id": "schema:nerve",
+ "@id": "schema:EventReservation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservation for an event like a concert, sporting event, or lecture.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "EventReservation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:branch",
"@type": "rdf:Property",
- "rdfs:comment": "The underlying innervation associated with the muscle.",
- "rdfs:label": "nerve",
+ "rdfs:comment": "The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]].",
+ "rdfs:label": "branch",
"schema:domainIncludes": {
- "@id": "schema:Muscle"
+ "@id": "schema:Nerve"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Nerve"
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:arterialBranch"
}
},
{
- "@id": "schema:Mass",
- "@type": "rdfs:Class",
- "rdfs:comment": "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.",
- "rdfs:label": "Mass",
- "rdfs:subClassOf": {
- "@id": "schema:Quantity"
+ "@id": "schema:sodiumContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of milligrams of sodium.",
+ "rdfs:label": "sodiumContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
}
},
{
- "@id": "schema:duringMedia",
+ "@id": "schema:steps",
"@type": "rdf:Property",
- "rdfs:comment": "A media object representing the circumstances while performing this direction.",
- "rdfs:label": "duringMedia",
- "schema:domainIncludes": {
- "@id": "schema:HowToDirection"
- },
+ "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).",
+ "rdfs:label": "steps",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToSection"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Text"
},
{
- "@id": "schema:MediaObject"
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
- ]
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:step"
+ }
},
{
- "@id": "schema:FinancialProduct",
- "@type": "rdfs:Class",
- "rdfs:comment": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.",
- "rdfs:label": "FinancialProduct",
- "rdfs:subClassOf": {
- "@id": "schema:Service"
+ "@id": "schema:inSupportOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Qualification, candidature, degree, application that Thesis supports.",
+ "rdfs:label": "inSupportOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Thesis"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:SoftwareApplication",
- "@type": "rdfs:Class",
- "rdfs:comment": "A software application.",
- "rdfs:label": "SoftwareApplication",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:significantLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
+ "rdfs:label": "significantLink",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:WearableSizeSystemEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerates common size systems specific for wearable products",
- "rdfs:label": "WearableSizeSystemEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:SizeSystemEnumeration"
+ "@id": "schema:timeToComplete",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected length of time to complete the program if attending full-time.",
+ "rdfs:label": "timeToComplete",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:Flexibility",
- "@type": "schema:PhysicalActivityCategory",
- "rdfs:comment": "Physical activity that is engaged in to improve joint and muscle flexibility.",
- "rdfs:label": "Flexibility",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
},
{
- "@id": "schema:PalliativeProcedure",
- "@type": "rdfs:Class",
- "rdfs:comment": "A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.",
- "rdfs:label": "PalliativeProcedure",
- "rdfs:subClassOf": [
+ "@id": "schema:makesOffer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A pointer to products or services offered by the organization or person.",
+ "rdfs:label": "makesOffer",
+ "schema:domainIncludes": [
{
- "@id": "schema:MedicalTherapy"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:MedicalProcedure"
+ "@id": "schema:Person"
}
],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:reviewCount",
- "@type": "rdf:Property",
- "rdfs:comment": "The count of total number of reviews.",
- "rdfs:label": "reviewCount",
- "schema:domainIncludes": {
- "@id": "schema:AggregateRating"
+ "schema:inverseOf": {
+ "@id": "schema:offeredBy"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:Offer"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:TravelAgency",
+ "@id": "schema:MedicalProcedureType",
"@type": "rdfs:Class",
- "rdfs:comment": "A travel agency.",
- "rdfs:label": "TravelAgency",
+ "rdfs:comment": "An enumeration that describes different types of medical procedures.",
+ "rdfs:label": "MedicalProcedureType",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:RecyclingCenter",
+ "@id": "schema:AggregateRating",
"@type": "rdfs:Class",
- "rdfs:comment": "A recycling center.",
- "rdfs:label": "RecyclingCenter",
+ "rdfs:comment": "The average rating based on multiple ratings or reviews.",
+ "rdfs:label": "AggregateRating",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:Rating"
}
},
{
- "@id": "schema:readonlyValue",
+ "@id": "schema:sourcedFrom",
"@type": "rdf:Property",
- "rdfs:comment": "Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.",
- "rdfs:label": "readonlyValue",
+ "rdfs:comment": "The neurological pathway that originates the neurons.",
+ "rdfs:label": "sourcedFrom",
"schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:BrainStructure"
}
},
{
- "@id": "schema:photo",
+ "@id": "schema:measuredValue",
"@type": "rdf:Property",
- "rdfs:comment": "A photograph of this place.",
- "rdfs:label": "photo",
- "rdfs:subPropertyOf": {
- "@id": "schema:image"
- },
+ "rdfs:comment": "The measuredValue of an [[Observation]].",
+ "rdfs:label": "measuredValue",
"schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Observation"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Photograph"
- },
- {
- "@id": "schema:ImageObject"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
},
{
- "@id": "schema:TaxiReservation",
+ "@id": "schema:DataDownload",
"@type": "rdfs:Class",
- "rdfs:comment": "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
- "rdfs:label": "TaxiReservation",
+ "owl:equivalentClass": {
+ "@id": "dcat:Distribution"
+ },
+ "rdfs:comment": "All or part of a [[Dataset]] in downloadable form. ",
+ "rdfs:label": "DataDownload",
"rdfs:subClassOf": {
- "@id": "schema:Reservation"
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
}
},
{
- "@id": "schema:sport",
+ "@id": "schema:nutrition",
"@type": "rdf:Property",
- "rdfs:comment": "A type of sport (e.g. Baseball).",
- "rdfs:label": "sport",
+ "rdfs:comment": "Nutrition information about the recipe or menu item.",
+ "rdfs:label": "nutrition",
"schema:domainIncludes": [
{
- "@id": "schema:SportsOrganization"
+ "@id": "schema:MenuItem"
},
{
- "@id": "schema:SportsEvent"
+ "@id": "schema:Recipe"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:NutritionInformation"
+ }
+ },
+ {
+ "@id": "schema:endTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. E.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
+ "rdfs:label": "endTime",
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:InteractionCounter"
},
{
- "@id": "schema:URL"
+ "@id": "schema:FoodEstablishmentReservation"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Action"
+ },
+ {
+ "@id": "schema:MediaObject"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1951"
- }
- },
- {
- "@id": "schema:ComicCoverArt",
- "@type": "rdfs:Class",
- "rdfs:comment": "The artwork on the cover of a comic.",
- "rdfs:label": "ComicCoverArt",
- "rdfs:subClassOf": [
+ "schema:rangeIncludes": [
{
- "@id": "schema:CoverArt"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:ComicStory"
+ "@id": "schema:Time"
}
],
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2493"
}
},
{
- "@id": "schema:departureBusStop",
+ "@id": "schema:subjectOf",
"@type": "rdf:Property",
- "rdfs:comment": "The stop or station from which the bus departs.",
- "rdfs:label": "departureBusStop",
+ "rdfs:comment": "A CreativeWork or Event about this Thing.",
+ "rdfs:label": "subjectOf",
"schema:domainIncludes": {
- "@id": "schema:BusTrip"
+ "@id": "schema:Thing"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:about"
},
"schema:rangeIncludes": [
{
- "@id": "schema:BusStop"
+ "@id": "schema:Event"
},
{
- "@id": "schema:BusStation"
+ "@id": "schema:CreativeWork"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
+ }
},
{
- "@id": "schema:valueMinLength",
+ "@id": "schema:albumRelease",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies the minimum allowed range for number of characters in a literal value.",
- "rdfs:label": "valueMinLength",
+ "rdfs:comment": "A release of this album.",
+ "rdfs:label": "albumRelease",
"schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:releaseOf"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:MusicRelease"
}
},
{
- "@id": "schema:ProductModel",
- "@type": "rdfs:Class",
- "rdfs:comment": "A datasheet or vendor specification of a product (in the sense of a prototypical description).",
- "rdfs:label": "ProductModel",
- "rdfs:subClassOf": {
- "@id": "schema:Product"
+ "@id": "schema:MerchantReturnUnlimitedWindow",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that there is an unlimited window for product returns.",
+ "rdfs:label": "MerchantReturnUnlimitedWindow",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:recipe",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of instrument. The recipe/instructions used to perform the action.",
- "rdfs:label": "recipe",
- "rdfs:subPropertyOf": {
- "@id": "schema:instrument"
- },
- "schema:domainIncludes": {
- "@id": "schema:CookAction"
+ "@id": "schema:ComicSeries",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sequential publication of comic stories under a\n \tunifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n \tWanderer\".",
+ "rdfs:label": "ComicSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:Periodical"
},
- "schema:rangeIncludes": {
- "@id": "schema:Recipe"
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
}
},
{
- "@id": "schema:healthPlanCoinsuranceOption",
+ "@id": "schema:cashBack",
"@type": "rdf:Property",
- "rdfs:comment": "Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?",
- "rdfs:label": "healthPlanCoinsuranceOption",
+ "rdfs:comment": "A cardholder benefit that pays the cardholder a small percentage of their net expenditures.",
+ "rdfs:label": "cashBack",
"schema:domainIncludes": {
- "@id": "schema:HealthPlanCostSharingSpecification"
+ "@id": "schema:PaymentCard"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Boolean"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SexualContentConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item contains sexually oriented content such as nudity, suggestive or explicit material, or related online services, or is intended to enhance sexual activity. Examples: Erotic videos or magazine, sexual enhancement devices, sex toys.",
+ "rdfs:label": "SexualContentConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:originatesFrom",
+ "@id": "schema:GovernmentService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.",
+ "rdfs:label": "GovernmentService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:Continent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "One of the continents (for example, Europe or Africa).",
+ "rdfs:label": "Continent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
+ }
+ },
+ {
+ "@id": "schema:EducationalOccupationalCredential",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc., that may be awarded to a person or other entity that meets the requirements defined by the credentialer.",
+ "rdfs:label": "EducationalOccupationalCredential",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ }
+ },
+ {
+ "@id": "schema:InfectiousDisease",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.",
+ "rdfs:label": "InfectiousDisease",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:riskFactor",
"@type": "rdf:Property",
- "rdfs:comment": "The vasculature the lymphatic structure originates, or afferents, from.",
- "rdfs:label": "originatesFrom",
+ "rdfs:comment": "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.",
+ "rdfs:label": "riskFactor",
"schema:domainIncludes": {
- "@id": "schema:LymphaticVessel"
+ "@id": "schema:MedicalCondition"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Vessel"
+ "@id": "schema:MedicalRiskFactor"
}
},
{
- "@id": "schema:cvdNumC19HOPats",
+ "@id": "schema:greater",
"@type": "rdf:Property",
- "rdfs:comment": "numc19hopats - HOSPITAL ONSET: Patients hospitalized in an NHSN inpatient care location with onset of suspected or confirmed COVID-19 14 or more days after hospitalization.",
- "rdfs:label": "cvdNumC19HOPats",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than the object.",
+ "rdfs:label": "greater",
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:QualitativeValue"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:QualitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:productionDate",
+ "@id": "schema:priceComponentType",
"@type": "rdf:Property",
- "rdfs:comment": "The date of production of the item, e.g. vehicle.",
- "rdfs:label": "productionDate",
- "schema:domainIncludes": [
- {
- "@id": "schema:Vehicle"
- },
- {
- "@id": "schema:Product"
- }
- ],
+ "rdfs:comment": "Identifies a price component (for example, a line item on an invoice), part of the total price for an offer.",
+ "rdfs:label": "priceComponentType",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:PriceComponentTypeEnumeration"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
}
},
{
- "@id": "schema:WearableSizeSystemContinental",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "Continental size system for wearables.",
- "rdfs:label": "WearableSizeSystemContinental",
+ "@id": "schema:ReturnByMail",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be done by mail.",
+ "rdfs:label": "ReturnByMail",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:aggregateRating",
+ "@id": "schema:ownershipFundingInfo",
"@type": "rdf:Property",
- "rdfs:comment": "The overall rating, based on a collection of reviews or ratings, of the item.",
- "rdfs:label": "aggregateRating",
+ "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.",
+ "rdfs:label": "ownershipFundingInfo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
"schema:domainIncludes": [
{
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Service"
- },
- {
- "@id": "schema:CreativeWork"
+ "@id": "schema:NewsMediaOrganization"
},
{
"@id": "schema:Organization"
- },
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:AboutPage"
},
{
- "@id": "schema:Product"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Brand"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Event"
+ "@id": "schema:URL"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:AggregateRating"
- }
- },
- {
- "@id": "schema:boardingPolicy",
- "@type": "rdf:Property",
- "rdfs:comment": "The type of boarding policy used by the airline (e.g. zone-based or group-based).",
- "rdfs:label": "boardingPolicy",
- "schema:domainIncludes": [
+ "schema:source": [
{
- "@id": "schema:Flight"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "schema:Airline"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:BoardingPolicyType"
- }
+ ]
},
{
- "@id": "schema:DietNutrition",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "Dietetic and nutrition as a medical specialty.",
- "rdfs:label": "DietNutrition",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
+ "@id": "schema:Prion",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "A prion is an infectious agent composed of protein in a misfolded form.",
+ "rdfs:label": "Prion",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:administrationRoute",
+ "@id": "schema:timeOfDay",
"@type": "rdf:Property",
- "rdfs:comment": "A route by which this drug may be administered, e.g. 'oral'.",
- "rdfs:label": "administrationRoute",
+ "rdfs:comment": "The time of day the program normally runs. For example, \"evenings\".",
+ "rdfs:label": "timeOfDay",
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:EducationalOccupationalProgram"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
}
},
{
- "@id": "schema:mileageFromOdometer",
+ "@id": "schema:specialty",
"@type": "rdf:Property",
- "rdfs:comment": "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\\n\\nTypical unit code(s): KMT for kilometers, SMI for statute miles",
- "rdfs:label": "mileageFromOdometer",
+ "rdfs:comment": "One of the domain specialities to which this web page's content applies.",
+ "rdfs:label": "specialty",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:WebPage"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:Specialty"
}
},
{
- "@id": "schema:eligibleCustomerType",
+ "@id": "schema:letterer",
"@type": "rdf:Property",
- "rdfs:comment": "The type(s) of customers for which the given offer is valid.",
- "rdfs:label": "eligibleCustomerType",
+ "rdfs:comment": "The individual who adds lettering, including speech balloons and sound effects, to artwork.",
+ "rdfs:label": "letterer",
"schema:domainIncludes": [
{
- "@id": "schema:Offer"
+ "@id": "schema:VisualArtwork"
},
{
- "@id": "schema:Demand"
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:BusinessEntityType"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:DeliveryMethod",
- "@type": "rdfs:Class",
- "rdfs:comment": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\\n* http://purl.org/goodrelations/v1#DeliveryModeMail\\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
- "rdfs:label": "DeliveryMethod",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:containedIn",
+ "@id": "schema:billingStart",
"@type": "rdf:Property",
- "rdfs:comment": "The basic containment relation between a place and one that contains it.",
- "rdfs:label": "containedIn",
+ "rdfs:comment": "Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property.",
+ "rdfs:label": "billingStart",
"schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Number"
},
- "schema:supersededBy": {
- "@id": "schema:containedInPlace"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
}
},
{
- "@id": "schema:targetPopulation",
+ "@id": "schema:roleName",
"@type": "rdf:Property",
- "rdfs:comment": "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.",
- "rdfs:label": "targetPopulation",
- "schema:domainIncludes": [
+ "rdfs:comment": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.",
+ "rdfs:label": "roleName",
+ "schema:domainIncludes": {
+ "@id": "schema:Role"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:DietarySupplement"
+ "@id": "schema:Text"
},
{
- "@id": "schema:DoseSchedule"
+ "@id": "schema:URL"
}
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ ]
},
{
- "@id": "schema:audienceType",
+ "@id": "schema:securityScreening",
"@type": "rdf:Property",
- "rdfs:comment": "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).",
- "rdfs:label": "audienceType",
+ "rdfs:comment": "The type of security screening the passenger is subject to.",
+ "rdfs:label": "securityScreening",
"schema:domainIncludes": {
- "@id": "schema:Audience"
+ "@id": "schema:FlightReservation"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:MerchantReturnPolicy",
- "@type": "rdfs:Class",
- "rdfs:comment": "A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]], [[Product]], or [[Offer]].",
- "rdfs:label": "MerchantReturnPolicy",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
- }
- },
- {
- "@id": "schema:PropertyValue",
- "@type": "rdfs:Class",
- "rdfs:comment": "A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.\\n\\n Always use specific schema.org properties when a) they exist and b) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.\n ",
- "rdfs:label": "PropertyValue",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "@id": "schema:competitor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A competitor in a sports event.",
+ "rdfs:label": "competitor",
+ "schema:domainIncludes": {
+ "@id": "schema:SportsEvent"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SportsTeam"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
},
{
- "@id": "schema:postalCode",
+ "@id": "schema:provider",
"@type": "rdf:Property",
- "rdfs:comment": "The postal code. For example, 94043.",
- "rdfs:label": "postalCode",
+ "rdfs:comment": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.",
+ "rdfs:label": "provider",
"schema:domainIncludes": [
{
- "@id": "schema:PostalAddress"
+ "@id": "schema:Service"
},
{
- "@id": "schema:DefinedRegion"
+ "@id": "schema:EducationalOccupationalProgram"
},
{
- "@id": "schema:GeoCoordinates"
+ "@id": "schema:Reservation"
},
{
- "@id": "schema:GeoShape"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
- }
- },
- {
- "@id": "schema:quarantineGuidelines",
- "@type": "rdf:Property",
- "rdfs:comment": "Guidelines about quarantine rules, e.g. in the context of a pandemic.",
- "rdfs:label": "quarantineGuidelines",
- "schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "@id": "schema:CreativeWork"
+ },
{
- "@id": "schema:WebContent"
+ "@id": "schema:ParcelDelivery"
},
{
- "@id": "schema:URL"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
- }
- },
- {
- "@id": "schema:WritePermission",
- "@type": "schema:DigitalDocumentPermissionType",
- "rdfs:comment": "Permission to write or edit the document.",
- "rdfs:label": "WritePermission"
- },
- {
- "@id": "schema:knowsLanguage",
- "@type": "rdf:Property",
- "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).",
- "rdfs:label": "knowsLanguage",
- "schema:domainIncludes": [
+ "@id": "schema:Trip"
+ },
{
- "@id": "schema:Organization"
+ "@id": "schema:Invoice"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Action"
}
],
"schema:isPartOf": {
@@ -6457,346 +6362,326 @@
},
"schema:rangeIncludes": [
{
- "@id": "schema:Language"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
],
"schema:source": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2927"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
]
},
{
- "@id": "schema:episodeNumber",
- "@type": "rdf:Property",
- "rdfs:comment": "Position of the episode within an ordered group of episodes.",
- "rdfs:label": "episodeNumber",
- "rdfs:subPropertyOf": {
- "@id": "schema:position"
- },
- "schema:domainIncludes": {
- "@id": "schema:Episode"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Integer"
- }
- ]
+ "@id": "schema:MusicGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.",
+ "rdfs:label": "MusicGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:PerformingGroup"
+ }
},
{
- "@id": "schema:embeddedTextCaption",
- "@type": "rdf:Property",
- "rdfs:comment": "Represents textual captioning from a [[MediaObject]], e.g. text of a 'meme'.",
- "rdfs:label": "embeddedTextCaption",
- "rdfs:subPropertyOf": {
- "@id": "schema:caption"
- },
- "schema:domainIncludes": [
- {
- "@id": "schema:ImageObject"
- },
- {
- "@id": "schema:VideoObject"
- },
- {
- "@id": "schema:AudioObject"
- }
- ],
+ "@id": "schema:SingleCenterTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial that takes place at a single center.",
+ "rdfs:label": "SingleCenterTrial",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:occupationLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": " The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.",
+ "rdfs:label": "occupationLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:Occupation"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:AdministrativeArea"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:Apartment",
- "@type": "rdfs:Class",
- "rdfs:comment": "An apartment (in American English) or flat (in British English) is a self-contained housing unit (a type of residential real estate) that occupies only part of a building (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Apartment).",
- "rdfs:label": "Apartment",
- "rdfs:subClassOf": {
- "@id": "schema:Accommodation"
+ "@id": "schema:Nonprofit501c10",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations.",
+ "rdfs:label": "Nonprofit501c10",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:MedicalObservationalStudy",
- "@type": "rdfs:Class",
- "rdfs:comment": "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.",
- "rdfs:label": "MedicalObservationalStudy",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalStudy"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:courseWorkload",
+ "@id": "schema:orderItemStatus",
"@type": "rdf:Property",
- "rdfs:comment": "The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, \"2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week\".",
- "rdfs:label": "courseWorkload",
+ "rdfs:comment": "The current status of the order item.",
+ "rdfs:label": "orderItemStatus",
"schema:domainIncludes": {
- "@id": "schema:CourseInstance"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:OrderItem"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1909"
+ "@id": "schema:OrderStatus"
}
},
{
- "@id": "schema:transmissionMethod",
+ "@id": "schema:currenciesAccepted",
"@type": "rdf:Property",
- "rdfs:comment": "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.",
- "rdfs:label": "transmissionMethod",
+ "rdfs:comment": "The currency accepted.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "currenciesAccepted",
"schema:domainIncludes": {
- "@id": "schema:InfectiousDisease"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:LocalBusiness"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:BowlingAlley",
+ "@id": "schema:MedicalTestPanel",
"@type": "rdfs:Class",
- "rdfs:comment": "A bowling alley.",
- "rdfs:label": "BowlingAlley",
+ "rdfs:comment": "Any collection of tests commonly ordered together.",
+ "rdfs:label": "MedicalTestPanel",
"rdfs:subClassOf": {
- "@id": "schema:SportsActivityLocation"
- }
- },
- {
- "@id": "schema:album",
- "@type": "rdf:Property",
- "rdfs:comment": "A music album.",
- "rdfs:label": "album",
- "schema:domainIncludes": {
- "@id": "schema:MusicGroup"
+ "@id": "schema:MedicalTest"
},
- "schema:rangeIncludes": {
- "@id": "schema:MusicAlbum"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:PriceSpecification",
+ "@id": "schema:DrugStrength",
"@type": "rdfs:Class",
- "rdfs:comment": "A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup. It is recommended to use [[MonetaryAmount]] to describe independent amounts of money such as a salary, credit card limits, etc.",
- "rdfs:label": "PriceSpecification",
+ "rdfs:comment": "A specific strength in which a medical drug is available in a specific country.",
+ "rdfs:label": "DrugStrength",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "@id": "schema:MedicalIntangible"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:bitrate",
+ "@id": "schema:reportNumber",
"@type": "rdf:Property",
- "rdfs:comment": "The bitrate of the media object.",
- "rdfs:label": "bitrate",
+ "rdfs:comment": "The number or other unique designator assigned to a Report by the publishing organization.",
+ "rdfs:label": "reportNumber",
"schema:domainIncludes": {
- "@id": "schema:MediaObject"
+ "@id": "schema:Report"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:MayTreatHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Related topics may be treated by a Topic.",
- "rdfs:label": "MayTreatHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:TypeAndQuantityNode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.",
+ "rdfs:label": "TypeAndQuantityNode",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:EnergyEfficiencyEnumeration",
+ "@id": "schema:MediaSubscription",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerates energy efficiency levels (also known as \"classes\" or \"ratings\") and certifications that are part of several international energy efficiency standards.",
- "rdfs:label": "EnergyEfficiencyEnumeration",
+ "rdfs:comment": "A subscription which allows a user to access media including audio, video, books, etc.",
+ "rdfs:label": "MediaSubscription",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Intangible"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
}
},
{
- "@id": "schema:acrissCode",
+ "@id": "schema:claimReviewed",
"@type": "rdf:Property",
- "rdfs:comment": "The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards.",
- "rdfs:label": "acrissCode",
- "schema:domainIncludes": [
- {
- "@id": "schema:BusOrCoach"
- },
- {
- "@id": "schema:Car"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "rdfs:comment": "A short summary of the specific claims reviewed in a ClaimReview.",
+ "rdfs:label": "claimReviewed",
+ "schema:domainIncludes": {
+ "@id": "schema:ClaimReview"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1061"
}
},
{
- "@id": "schema:netWorth",
+ "@id": "schema:estimatedCost",
"@type": "rdf:Property",
- "rdfs:comment": "The total financial value of the person as calculated by subtracting assets from liabilities.",
- "rdfs:label": "netWorth",
- "schema:domainIncludes": {
- "@id": "schema:Person"
- },
+ "rdfs:comment": "The estimated cost of the supply or supplies consumed when performing instructions.",
+ "rdfs:label": "estimatedCost",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowToSupply"
+ },
+ {
+ "@id": "schema:HowTo"
+ }
+ ],
"schema:rangeIncludes": [
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:Text"
},
{
- "@id": "schema:PriceSpecification"
+ "@id": "schema:MonetaryAmount"
}
]
},
{
- "@id": "schema:spokenByCharacter",
+ "@id": "schema:commentText",
"@type": "rdf:Property",
- "rdfs:comment": "The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.",
- "rdfs:label": "spokenByCharacter",
+ "rdfs:comment": "The text of the UserComment.",
+ "rdfs:label": "commentText",
"schema:domainIncludes": {
- "@id": "schema:Quotation"
+ "@id": "schema:UserComments"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:Retail",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the retail cost of the drug.",
+ "rdfs:label": "Retail",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:founders",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person who founded this organization.",
+ "rdfs:label": "founders",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/271"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:founder"
}
},
{
- "@id": "schema:PayAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "An agent pays a price to a participant.",
- "rdfs:label": "PayAction",
- "rdfs:subClassOf": {
- "@id": "schema:TradeAction"
+ "@id": "schema:WearableSizeGroupHusky",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Husky\" (or \"Stocky\") for wearables.",
+ "rdfs:label": "WearableSizeGroupHusky",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:paymentMethodId",
+ "@id": "schema:chemicalRole",
"@type": "rdf:Property",
- "rdfs:comment": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).",
- "rdfs:label": "paymentMethodId",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
+ },
+ "rdfs:comment": "A role played by the BioChemEntity within a chemical context.",
+ "rdfs:label": "chemicalRole",
"schema:domainIncludes": [
{
- "@id": "schema:Order"
+ "@id": "schema:MolecularEntity"
},
{
- "@id": "schema:Invoice"
+ "@id": "schema:ChemicalSubstance"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:DefinedTerm"
}
},
{
- "@id": "schema:FDAcategoryX",
- "@type": "schema:DrugPregnancyCategory",
- "rdfs:comment": "A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.",
- "rdfs:label": "FDAcategoryX",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "schema:expires",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.",
+ "rdfs:label": "expires",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
},
{
- "@id": "schema:vehicleIdentificationNumber",
+ "@id": "schema:doorTime",
"@type": "rdf:Property",
- "rdfs:comment": "The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.",
- "rdfs:label": "vehicleIdentificationNumber",
- "rdfs:subPropertyOf": {
- "@id": "schema:serialNumber"
- },
+ "rdfs:comment": "The time admission will commence.",
+ "rdfs:label": "doorTime",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Event"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
},
{
- "@id": "schema:clincalPharmacology",
+ "@id": "schema:healthPlanCopayOption",
"@type": "rdf:Property",
- "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
- "rdfs:label": "clincalPharmacology",
+ "rdfs:comment": "Whether the copay is before or after deductible, etc. TODO: Is this a closed set?",
+ "rdfs:label": "healthPlanCopayOption",
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:HealthPlanCostSharingSpecification"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
},
- "schema:supersededBy": {
- "@id": "schema:clinicalPharmacology"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:studyLocation",
+ "@id": "schema:modelDate",
"@type": "rdf:Property",
- "rdfs:comment": "The location in which the study is taking/took place.",
- "rdfs:label": "studyLocation",
+ "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
+ "rdfs:label": "modelDate",
"schema:domainIncludes": {
- "@id": "schema:MedicalStudy"
+ "@id": "schema:Vehicle"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://auto.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
@@ -6806,553 +6691,674 @@
"rdfs:label": "DiabeticDiet"
},
{
- "@id": "schema:HinduDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet conforming to Hindu dietary practices, in particular, beef-free.",
- "rdfs:label": "HinduDiet"
- },
- {
- "@id": "schema:screenshot",
+ "@id": "schema:annualPercentageRate",
"@type": "rdf:Property",
- "rdfs:comment": "A link to a screenshot image of the app.",
- "rdfs:label": "screenshot",
+ "rdfs:comment": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.",
+ "rdfs:label": "annualPercentageRate",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:FinancialProduct"
},
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Number"
},
{
- "@id": "schema:ImageObject"
+ "@id": "schema:QuantitativeValue"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
},
{
- "@id": "schema:ConfirmAction",
+ "@id": "schema:Product",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of notifying someone that a future event/action is going to happen as expected.\\n\\nRelated actions:\\n\\n* [[CancelAction]]: The antonym of ConfirmAction.",
- "rdfs:label": "ConfirmAction",
+ "rdfs:comment": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.",
+ "rdfs:label": "Product",
"rdfs:subClassOf": {
- "@id": "schema:InformAction"
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:subTest",
+ "@id": "schema:publicTransportClosuresInfo",
"@type": "rdf:Property",
- "rdfs:comment": "A component test of the panel.",
- "rdfs:label": "subTest",
+ "rdfs:comment": "Information about public transport closures.",
+ "rdfs:label": "publicTransportClosuresInfo",
"schema:domainIncludes": {
- "@id": "schema:MedicalTestPanel"
+ "@id": "schema:SpecialAnnouncement"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalTest"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:WebContent"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
}
},
{
- "@id": "schema:award",
+ "@id": "schema:XRay",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "X-ray imaging.",
+ "rdfs:label": "XRay",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:legislationIdentifier",
"@type": "rdf:Property",
- "rdfs:comment": "An award won by or for this item.",
- "rdfs:label": "award",
- "schema:domainIncludes": [
- {
- "@id": "schema:Product"
- },
+ "rdfs:comment": "An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI (European Legislation Identifier) or an URN-Lex.",
+ "rdfs:label": "legislationIdentifier",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Service"
+ "@id": "schema:URL"
},
{
- "@id": "schema:CreativeWork"
- },
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
{
- "@id": "schema:Organization"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:Person"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#id_local"
}
},
{
- "@id": "schema:fatContent",
+ "@id": "schema:athlete",
"@type": "rdf:Property",
- "rdfs:comment": "The number of grams of fat.",
- "rdfs:label": "fatContent",
+ "rdfs:comment": "A person that acts as performing member of a sports team; a player as opposed to a coach.",
+ "rdfs:label": "athlete",
"schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
+ "@id": "schema:SportsTeam"
},
"schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:attendees",
+ "@id": "schema:amenityFeature",
"@type": "rdf:Property",
- "rdfs:comment": "A person attending the event.",
- "rdfs:label": "attendees",
- "schema:domainIncludes": {
- "@id": "schema:Event"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.",
+ "rdfs:label": "amenityFeature",
+ "schema:domainIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:FloorPlan"
},
{
- "@id": "schema:Person"
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:Place"
}
],
- "schema:supersededBy": {
- "@id": "schema:attendee"
- }
- },
- {
- "@id": "schema:healthPlanDrugOption",
- "@type": "rdf:Property",
- "rdfs:comment": "TODO.",
- "rdfs:label": "healthPlanDrugOption",
- "schema:domainIncludes": {
- "@id": "schema:HealthInsurancePlan"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:LocationFeatureSpecification"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:cvdFacilityCounty",
- "@type": "rdf:Property",
- "rdfs:comment": "Name of the County of the NHSN facility that this data record applies to. Use [[cvdFacilityId]] to identify the facility. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.",
- "rdfs:label": "cvdFacilityCounty",
- "schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
+ "@id": "schema:WearableMeasurementInseam",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the inseam, for example of pants",
+ "rdfs:label": "WearableMeasurementInseam",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:seriousAdverseOutcome",
- "@type": "rdf:Property",
- "rdfs:comment": "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.",
- "rdfs:label": "seriousAdverseOutcome",
- "schema:domainIncludes": [
+ "@id": "schema:MedicalAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Target audiences for medical web pages.",
+ "rdfs:label": "MedicalAudience",
+ "rdfs:subClassOf": [
{
- "@id": "schema:MedicalDevice"
+ "@id": "schema:PeopleAudience"
},
{
- "@id": "schema:MedicalTherapy"
+ "@id": "schema:Audience"
}
],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalEntity"
}
},
{
- "@id": "schema:DefinedRegion",
- "@type": "rdfs:Class",
- "rdfs:comment": "A DefinedRegion is a geographic area defined by potentially arbitrary (rather than political, administrative or natural geographical) criteria. Properties are provided for defining a region by reference to sets of postal codes.\n\nExamples: a delivery destination when shopping. Region where regional pricing is configured.\n\nRequirement 1:\nCountry: US\nStates: \"NY\", \"CA\"\n\nRequirement 2:\nCountry: US\nPostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]}\n{ [12345, 12345], [78945, 78945], }\nRegion = state, canton, prefecture, autonomous community...\n",
- "rdfs:label": "DefinedRegion",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
+ "@id": "schema:SeeDoctorHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation.",
+ "rdfs:label": "SeeDoctorHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:EnergyStarEnergyEfficiencyEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Used to indicate whether a product is EnergyStar certified.",
- "rdfs:label": "EnergyStarEnergyEfficiencyEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:EnergyEfficiencyEnumeration"
+ "@id": "schema:arterialBranch",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The branches that comprise the arterial structure.",
+ "rdfs:label": "arterialBranch",
+ "schema:domainIncludes": {
+ "@id": "schema:Artery"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
}
},
{
- "@id": "schema:PerformingArtsTheater",
+ "@id": "schema:MusicEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "A theater or other performing art center.",
- "rdfs:label": "PerformingArtsTheater",
+ "rdfs:comment": "Event type: Music event.",
+ "rdfs:label": "MusicEvent",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:governmentBenefitsInfo",
+ "@id": "schema:issuedBy",
"@type": "rdf:Property",
- "rdfs:comment": "governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.",
- "rdfs:label": "governmentBenefitsInfo",
- "schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
- },
+ "rdfs:comment": "The organization issuing the ticket or permit.",
+ "rdfs:label": "issuedBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Permit"
+ },
+ {
+ "@id": "schema:Ticket"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:MixedEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes.",
+ "rdfs:label": "MixedEventAttendanceMode",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:GovernmentService"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
}
},
{
- "@id": "schema:Number",
- "@type": [
- "rdfs:Class",
- "schema:DataType"
- ],
- "rdfs:comment": "Data type: Number.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
- "rdfs:label": "Number"
+ "@id": "schema:Dermatology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.",
+ "rdfs:label": "Dermatology",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
},
{
- "@id": "schema:evidenceOrigin",
+ "@id": "schema:loser",
"@type": "rdf:Property",
- "rdfs:comment": "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.",
- "rdfs:label": "evidenceOrigin",
+ "rdfs:comment": "A sub property of participant. The loser of the action.",
+ "rdfs:label": "loser",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
"schema:domainIncludes": {
- "@id": "schema:MedicalGuideline"
+ "@id": "schema:WinAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:distinguishingSign",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.",
+ "rdfs:label": "distinguishingSign",
+ "schema:domainIncludes": {
+ "@id": "schema:DDxElement"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MedicalSignOrSymptom"
}
},
{
- "@id": "schema:hasMolecularFunction",
+ "@id": "schema:loanPaymentAmount",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/BioChemEntity"
- },
- "rdfs:comment": "Molecular function performed by this BioChemEntity; please use PropertyValue if you want to include any evidence.",
- "rdfs:label": "hasMolecularFunction",
+ "rdfs:comment": "The amount of money to pay in a single payment.",
+ "rdfs:label": "loanPaymentAmount",
"schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:RepaymentSpecification"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
{
- "@id": "schema:PropertyValue"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
},
{
- "@id": "schema:URL"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MedicalTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.",
+ "rdfs:label": "MedicalTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:depth",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The depth of the item.",
+ "rdfs:label": "depth",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
},
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
}
- ]
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:Blog",
+ "@id": "schema:RadioEpisode",
"@type": "rdfs:Class",
- "rdfs:comment": "A [blog](https://en.wikipedia.org/wiki/Blog), sometimes known as a \"weblog\". Note that the individual posts ([[BlogPosting]]s) in a [[Blog]] are often colloqually referred to by the same term.",
- "rdfs:label": "Blog",
+ "rdfs:comment": "A radio episode which can be part of a series or season.",
+ "rdfs:label": "RadioEpisode",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Episode"
}
},
{
- "@id": "schema:assemblyVersion",
+ "@id": "schema:previousStartDate",
"@type": "rdf:Property",
- "rdfs:comment": "Associated product/technology version. e.g., .NET Framework 4.5.",
- "rdfs:label": "assemblyVersion",
+ "rdfs:comment": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.",
+ "rdfs:label": "previousStartDate",
"schema:domainIncludes": {
- "@id": "schema:APIReference"
+ "@id": "schema:Event"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:processingTime",
+ "@id": "schema:MedicalSignOrSymptom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.",
+ "rdfs:label": "MedicalSignOrSymptom",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:termsPerYear",
"@type": "rdf:Property",
- "rdfs:comment": "Estimated processing time for the service using this channel.",
- "rdfs:label": "processingTime",
+ "rdfs:comment": "The number of times terms of study are offered per year. Semesters and quarters are common units for term. For example, if the student can only take 2 semesters for the program in one year, then termsPerYear should be 2.",
+ "rdfs:label": "termsPerYear",
"schema:domainIncludes": {
- "@id": "schema:ServiceChannel"
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Duration"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
}
},
{
- "@id": "schema:ShareAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of distributing content to people for their amusement or edification.",
- "rdfs:label": "ShareAction",
- "rdfs:subClassOf": {
- "@id": "schema:CommunicateAction"
+ "@id": "schema:track",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.",
+ "rdfs:label": "track",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MusicPlaylist"
+ },
+ {
+ "@id": "schema:MusicGroup"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:MusicRecording"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:AerobicActivity",
- "@type": "schema:PhysicalActivityCategory",
- "rdfs:comment": "Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.",
- "rdfs:label": "AerobicActivity",
+ "@id": "schema:BodyMeasurementArm",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Arm length (measured between arms/shoulder line intersection and the prominent wrist bone). Used, for example, to fit shirts.",
+ "rdfs:label": "BodyMeasurementArm",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:WorkersUnion",
+ "@id": "schema:VoteAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.",
- "rdfs:label": "WorkersUnion",
+ "rdfs:comment": "The act of expressing a preference from a fixed/finite/structured set of choices/options.",
+ "rdfs:label": "VoteAction",
"rdfs:subClassOf": {
- "@id": "schema:Organization"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/243"
+ "@id": "schema:ChooseAction"
}
},
{
- "@id": "schema:iupacName",
+ "@id": "schema:WPSideBar",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sidebar section of the page.",
+ "rdfs:label": "WPSideBar",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:subReservation",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/MolecularEntity"
- },
- "rdfs:comment": "Systematic method of naming chemical compounds as recommended by the International Union of Pure and Applied Chemistry (IUPAC).",
- "rdfs:label": "iupacName",
+ "rdfs:comment": "The individual reservations included in the package. Typically a repeated property.",
+ "rdfs:label": "subReservation",
"schema:domainIncludes": {
- "@id": "schema:MolecularEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:ReservationPackage"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Reservation"
}
},
{
- "@id": "schema:FinancialService",
+ "@id": "schema:ApartmentComplex",
"@type": "rdfs:Class",
- "rdfs:comment": "Financial services business.",
- "rdfs:label": "FinancialService",
+ "rdfs:comment": "Residence type: Apartment complex.",
+ "rdfs:label": "ApartmentComplex",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:Residence"
}
},
{
- "@id": "schema:temporalCoverage",
+ "@id": "schema:caption",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/dc/terms/temporal"
- },
- "rdfs:comment": "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.",
- "rdfs:label": "temporalCoverage",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]].",
+ "rdfs:label": "caption",
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:VideoObject"
},
{
- "@id": "schema:URL"
+ "@id": "schema:ImageObject"
},
{
- "@id": "schema:DateTime"
+ "@id": "schema:AudioObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:device",
+ "@id": "schema:contentLocation",
"@type": "rdf:Property",
- "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
- "rdfs:label": "device",
+ "rdfs:comment": "The location depicted or described in the content. For example, the location in a photograph or painting.",
+ "rdfs:label": "contentLocation",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:valuePattern",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a regular expression for testing literal values according to the HTML spec.",
+ "rdfs:label": "valuePattern",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
},
- "schema:supersededBy": {
- "@id": "schema:availableOnDevice"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:gameLocation",
+ "@id": "schema:currency",
"@type": "rdf:Property",
- "rdfs:comment": "Real or fictional location of the game (or part of game).",
- "rdfs:label": "gameLocation",
+ "rdfs:comment": "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "currency",
"schema:domainIncludes": [
{
- "@id": "schema:Game"
+ "@id": "schema:LoanOrCredit"
},
{
- "@id": "schema:VideoGameSeries"
- }
- ],
- "schema:rangeIncludes": [
+ "@id": "schema:MonetaryAmount"
+ },
{
- "@id": "schema:PostalAddress"
+ "@id": "schema:ExchangeRateSpecification"
},
{
- "@id": "schema:Place"
+ "@id": "schema:DatedMoneySpecification"
},
{
- "@id": "schema:URL"
+ "@id": "schema:MonetaryAmountDistribution"
}
- ]
- },
- {
- "@id": "schema:RealEstateAgent",
- "@type": "rdfs:Class",
- "rdfs:comment": "A real-estate agent.",
- "rdfs:label": "RealEstateAgent",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
}
},
{
- "@id": "schema:MenuSection",
+ "@id": "schema:Sculpture",
"@type": "rdfs:Class",
- "rdfs:comment": "A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.",
- "rdfs:label": "MenuSection",
+ "rdfs:comment": "A piece of sculpture.",
+ "rdfs:label": "Sculpture",
"rdfs:subClassOf": {
"@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:MusicRecording",
+ "@id": "schema:HealthAspectEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A music recording (track), usually a single song.",
- "rdfs:label": "MusicRecording",
+ "rdfs:comment": "HealthAspectEnumeration enumerates several aspects of health content online, each of which might be described using [[hasHealthAspect]] and [[HealthTopicContent]].",
+ "rdfs:label": "HealthAspectEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:WearableSizeGroupBoys",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Boys\" for wearables.",
- "rdfs:label": "WearableSizeGroupBoys",
+ "@id": "schema:Enumeration"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:DanceEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: A social dance.",
- "rdfs:label": "DanceEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:Surgical",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.",
+ "rdfs:label": "Surgical",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:ResearchProject",
- "@type": "rdfs:Class",
- "rdfs:comment": "A Research project.",
- "rdfs:label": "ResearchProject",
- "rdfs:subClassOf": {
- "@id": "schema:Project"
+ "@id": "schema:hospitalAffiliation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A hospital with which the physician or office is affiliated.",
+ "rdfs:label": "hospitalAffiliation",
+ "schema:domainIncludes": {
+ "@id": "schema:Physician"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": [
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/383"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Hospital"
+ }
},
{
- "@id": "schema:relatedTo",
- "@type": "rdf:Property",
- "rdfs:comment": "The most generic familial relation.",
- "rdfs:label": "relatedTo",
- "schema:domainIncludes": {
- "@id": "schema:Person"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Terminated",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Terminated.",
+ "rdfs:label": "Terminated",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:ComicStory",
+ "@id": "schema:EnergyStarEnergyEfficiencyEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "The term \"story\" is any indivisible, re-printable\n \tunit of a comic, including the interior stories, covers, and backmatter. Most\n \tcomics have at least two stories: a cover (ComicCoverArt) and an interior story.",
- "rdfs:label": "ComicStory",
+ "rdfs:comment": "Used to indicate whether a product is EnergyStar certified.",
+ "rdfs:label": "EnergyStarEnergyEfficiencyEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:EnergyEfficiencyEnumeration"
},
"schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:WearableSizeGroupInfants",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Infants\" for wearables.",
- "rdfs:label": "WearableSizeGroupInfants",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ "@id": "schema:DepositAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.",
+ "rdfs:label": "DepositAccount",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:BankAccount"
+ },
+ {
+ "@id": "schema:InvestmentOrDeposit"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:CommunicateAction",
+ "@id": "schema:departureBusStop",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stop or station from which the bus departs.",
+ "rdfs:label": "departureBusStop",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BusStop"
+ },
+ {
+ "@id": "schema:BusStation"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MovingCompany",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.",
- "rdfs:label": "CommunicateAction",
+ "rdfs:comment": "A moving company.",
+ "rdfs:label": "MovingCompany",
"rdfs:subClassOf": {
- "@id": "schema:InteractAction"
+ "@id": "schema:HomeAndConstructionBusiness"
}
},
{
"@id": "schema:shippingDestination",
"@type": "rdf:Property",
- "rdfs:comment": "indicates (possibly multiple) shipping destinations. These can be defined in several ways e.g. postalCode ranges.",
+ "rdfs:comment": "indicates (possibly multiple) shipping destinations. These can be defined in several ways, e.g. postalCode ranges.",
"rdfs:label": "shippingDestination",
"schema:domainIncludes": [
{
- "@id": "schema:OfferShippingDetails"
+ "@id": "schema:ShippingRateSettings"
},
{
- "@id": "schema:DeliveryTimeSettings"
+ "@id": "schema:OfferShippingDetails"
},
{
- "@id": "schema:ShippingRateSettings"
+ "@id": "schema:DeliveryTimeSettings"
}
],
"schema:isPartOf": {
@@ -7366,651 +7372,626 @@
}
},
{
- "@id": "schema:ScreeningEvent",
+ "@id": "schema:smiles",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "A specification in form of a line notation for describing the structure of chemical species using short ASCII strings. Double bond stereochemistry \\ indicators may need to be escaped in the string in formats where the backslash is an escape character.",
+ "rdfs:label": "smiles",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AggregateOffer",
"@type": "rdfs:Class",
- "rdfs:comment": "A screening of a movie or other video.",
- "rdfs:label": "ScreeningEvent",
+ "rdfs:comment": "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\\n\\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.",
+ "rdfs:label": "AggregateOffer",
"rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:Offer"
}
},
{
- "@id": "schema:MapCategoryType",
- "@type": "rdfs:Class",
- "rdfs:comment": "An enumeration of several kinds of Map.",
- "rdfs:label": "MapCategoryType",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- }
- },
- {
- "@id": "schema:resultReview",
+ "@id": "schema:workHours",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of result. The review that resulted in the performing of the action.",
- "rdfs:label": "resultReview",
- "rdfs:subPropertyOf": {
- "@id": "schema:result"
- },
+ "rdfs:comment": "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).",
+ "rdfs:label": "workHours",
"schema:domainIncludes": {
- "@id": "schema:ReviewAction"
+ "@id": "schema:JobPosting"
},
"schema:rangeIncludes": {
- "@id": "schema:Review"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:BlogPosting",
- "@type": "rdfs:Class",
- "rdfs:comment": "A blog post.",
- "rdfs:label": "BlogPosting",
- "rdfs:subClassOf": {
- "@id": "schema:SocialMediaPosting"
+ "@id": "schema:WearableSizeSystemGS1",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "GS1 (formerly NRF) size system for wearables.",
+ "rdfs:label": "WearableSizeSystemGS1",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:coverageEndTime",
- "@type": "rdf:Property",
- "rdfs:comment": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.",
- "rdfs:label": "coverageEndTime",
- "schema:domainIncludes": {
- "@id": "schema:LiveBlogPosting"
- },
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "@id": "schema:EmploymentAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An employment agency.",
+ "rdfs:label": "EmploymentAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:AnaerobicActivity",
- "@type": "schema:PhysicalActivityCategory",
- "rdfs:comment": "Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.",
- "rdfs:label": "AnaerobicActivity",
+ "@id": "schema:Ligament",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.",
+ "rdfs:label": "Ligament",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:MedicalSpecialty",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.",
- "rdfs:label": "MedicalSpecialty",
- "rdfs:subClassOf": [
+ "@id": "schema:educationalUse",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The purpose of a work in the context of education; for example, 'assignment', 'group work'.",
+ "rdfs:label": "educationalUse",
+ "schema:domainIncludes": [
{
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Specialty"
+ "@id": "schema:LearningResource"
}
],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:FDAcategoryC",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.",
+ "rdfs:label": "FDAcategoryC",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:healthPlanMarketingUrl",
+ "@id": "schema:exerciseRelatedDiet",
"@type": "rdf:Property",
- "rdfs:comment": "The URL that goes directly to the plan brochure for the specific standard plan or plan variation.",
- "rdfs:label": "healthPlanMarketingUrl",
+ "rdfs:comment": "A sub property of instrument. The diet used in this action.",
+ "rdfs:label": "exerciseRelatedDiet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
"schema:domainIncludes": {
- "@id": "schema:HealthInsurancePlan"
+ "@id": "schema:ExerciseAction"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "schema:Diet"
}
},
{
- "@id": "schema:MedicalCause",
- "@type": "rdfs:Class",
- "rdfs:comment": "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.",
- "rdfs:label": "MedicalCause",
+ "@id": "schema:Optometric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The science or practice of testing visual acuity and prescribing corrective lenses.",
+ "rdfs:label": "Optometric",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:MedicalBusiness"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:byDay",
- "@type": "rdf:Property",
- "rdfs:comment": "Defines the day(s) of the week on which a recurring [[Event]] takes place. May be specified using either [[DayOfWeek]], or alternatively [[Text]] conforming to iCal's syntax for byDay recurrence rules.",
- "rdfs:label": "byDay",
- "schema:domainIncludes": {
- "@id": "schema:Schedule"
+ "@id": "schema:WearableMeasurementTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common types of measurement for wearables products.",
+ "rdfs:label": "WearableMeasurementTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:MeasurementTypeEnumeration"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:DayOfWeek"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
- }
- },
- {
- "@id": "schema:AutoRepair",
- "@type": "rdfs:Class",
- "rdfs:comment": "Car repair business.",
- "rdfs:label": "AutoRepair",
- "rdfs:subClassOf": {
- "@id": "schema:AutomotiveBusiness"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:MobileApplication",
+ "@id": "schema:OutletStore",
"@type": "rdfs:Class",
- "rdfs:comment": "A software application designed specifically to work well on a mobile device such as a telephone.",
- "rdfs:label": "MobileApplication",
+ "rdfs:comment": "An outlet store.",
+ "rdfs:label": "OutletStore",
"rdfs:subClassOf": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:hasPart",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).",
- "rdfs:label": "hasPart",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:inverseOf": {
- "@id": "schema:isPartOf"
- },
- "schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:StoreCreditRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that the customer receives a store credit as refund when returning a product.",
+ "rdfs:label": "StoreCreditRefund",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:Campground",
+ "@id": "schema:InternetCafe",
"@type": "rdfs:Class",
- "rdfs:comment": "A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \\n\\n\nIn British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites (Source: Wikipedia see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n",
- "rdfs:label": "Campground",
- "rdfs:subClassOf": [
- {
- "@id": "schema:LodgingBusiness"
- },
- {
- "@id": "schema:CivicStructure"
- }
- ],
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "rdfs:comment": "An internet cafe.",
+ "rdfs:label": "InternetCafe",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:foundingLocation",
+ "@id": "schema:legalName",
"@type": "rdf:Property",
- "rdfs:comment": "The place where the Organization was founded.",
- "rdfs:label": "foundingLocation",
+ "rdfs:comment": "The official name of the organization, e.g. the registered company name.",
+ "rdfs:label": "legalName",
"schema:domainIncludes": {
"@id": "schema:Organization"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
- }
- },
- {
- "@id": "schema:Nonprofit501c4",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c4: Non-profit type referring to Civic Leagues, Social Welfare Organizations, and Local Associations of Employees.",
- "rdfs:label": "Nonprofit501c4",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:requiredQuantity",
+ "@id": "schema:awayTeam",
"@type": "rdf:Property",
- "rdfs:comment": "The required quantity of the item(s).",
- "rdfs:label": "requiredQuantity",
+ "rdfs:comment": "The away team in a sports event.",
+ "rdfs:label": "awayTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:competitor"
+ },
"schema:domainIncludes": {
- "@id": "schema:HowToItem"
+ "@id": "schema:SportsEvent"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Number"
- },
- {
- "@id": "schema:Text"
+ "@id": "schema:SportsTeam"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:DigitalDocumentPermissionType",
+ "@id": "schema:Landform",
"@type": "rdfs:Class",
- "rdfs:comment": "A type of permission which can be granted for accessing a digital document.",
- "rdfs:label": "DigitalDocumentPermissionType",
+ "rdfs:comment": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.",
+ "rdfs:label": "Landform",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:availableStrength",
+ "@id": "schema:actionAccessibilityRequirement",
"@type": "rdf:Property",
- "rdfs:comment": "An available dosage strength for the drug.",
- "rdfs:label": "availableStrength",
+ "rdfs:comment": "A set of requirements that must be fulfilled in order to perform an Action. If more than one value is specified, fulfilling one set of requirements will allow the Action to be performed.",
+ "rdfs:label": "actionAccessibilityRequirement",
"schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:ConsumeAction"
},
"schema:rangeIncludes": {
- "@id": "schema:DrugStrength"
+ "@id": "schema:ActionAccessSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
}
},
{
- "@id": "schema:trackingUrl",
- "@type": "rdf:Property",
- "rdfs:comment": "Tracking url for the parcel delivery.",
- "rdfs:label": "trackingUrl",
- "schema:domainIncludes": {
- "@id": "schema:ParcelDelivery"
- },
- "schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:AdministrativeArea",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A geographical region, typically under the jurisdiction of a particular government.",
+ "rdfs:label": "AdministrativeArea",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:Online",
+ "@id": "schema:OnlineFull",
"@type": "schema:GameServerStatus",
- "rdfs:comment": "Game server status: Online. Server is available.",
- "rdfs:label": "Online"
+ "rdfs:comment": "Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.",
+ "rdfs:label": "OnlineFull"
},
{
- "@id": "schema:positiveNotes",
+ "@id": "schema:Role",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "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).",
+ "rdfs:label": "Role",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:supersededBy",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates, in the context of a [[Review]] (e.g. framed as 'pro' vs 'con' considerations), positive considerations - either as unstructured text, or a list.",
- "rdfs:label": "positiveNotes",
- "schema:domainIncludes": {
- "@id": "schema:Review"
- },
+ "rdfs:comment": "Relates a term (i.e. a property, class or enumeration) to one that supersedes it.",
+ "rdfs:label": "supersededBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Class"
+ },
+ {
+ "@id": "schema:Enumeration"
+ },
+ {
+ "@id": "schema:Property"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://meta.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:WebContent"
- },
- {
- "@id": "schema:Text"
+ "@id": "schema:Class"
},
{
- "@id": "schema:ListItem"
+ "@id": "schema:Property"
},
{
- "@id": "schema:ItemList"
+ "@id": "schema:Enumeration"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2832"
- }
+ ]
},
{
- "@id": "schema:suggestedAge",
+ "@id": "schema:copyrightHolder",
"@type": "rdf:Property",
- "rdfs:comment": "The age or age range for the intended audience or person, for example 3-12 months for infants, 1-5 years for toddlers.",
- "rdfs:label": "suggestedAge",
- "schema:domainIncludes": [
+ "rdfs:comment": "The party holding the legal copyright to the CreativeWork.",
+ "rdfs:label": "copyrightHolder",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:SizeSpecification"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:PeopleAudience"
+ "@id": "schema:Person"
}
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ ]
+ },
+ {
+ "@id": "schema:accessibilityControl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies input methods that are sufficient to fully control the described resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).",
+ "rdfs:label": "accessibilityControl",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:DryCleaningOrLaundry",
+ "@id": "schema:ListenAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A dry-cleaning business.",
- "rdfs:label": "DryCleaningOrLaundry",
+ "rdfs:comment": "The act of consuming audio content.",
+ "rdfs:label": "ListenAction",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:ConsumeAction"
}
},
{
- "@id": "schema:trailer",
+ "@id": "schema:SocialMediaPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.",
+ "rdfs:label": "SocialMediaPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ }
+ },
+ {
+ "@id": "schema:MusicVenue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music venue.",
+ "rdfs:label": "MusicVenue",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:startTime",
"@type": "rdf:Property",
- "rdfs:comment": "The trailer of a movie or tv/radio series, season, episode, etc.",
- "rdfs:label": "trailer",
+ "rdfs:comment": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. E.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
+ "rdfs:label": "startTime",
"schema:domainIncludes": [
{
- "@id": "schema:RadioSeries"
- },
- {
- "@id": "schema:VideoGame"
+ "@id": "schema:Schedule"
},
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:Action"
},
{
- "@id": "schema:Movie"
+ "@id": "schema:MediaObject"
},
{
- "@id": "schema:MovieSeries"
+ "@id": "schema:InteractionCounter"
},
{
- "@id": "schema:Episode"
- },
+ "@id": "schema:FoodEstablishmentReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
{
- "@id": "schema:TVSeries"
+ "@id": "schema:Time"
},
{
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:DateTime"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:VideoObject"
- }
- },
- {
- "@id": "schema:LiquorStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A shop that sells alcoholic drinks such as wine, beer, whisky and other spirits.",
- "rdfs:label": "LiquorStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
- }
- },
- {
- "@id": "schema:SizeSystemImperial",
- "@type": "schema:SizeSystemEnumeration",
- "rdfs:comment": "Imperial size system.",
- "rdfs:label": "SizeSystemImperial",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2493"
}
},
{
- "@id": "schema:branchOf",
+ "@id": "schema:result",
"@type": "rdf:Property",
- "rdfs:comment": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)[[branch]].",
- "rdfs:label": "branchOf",
+ "rdfs:comment": "The result produced in the action. E.g. John wrote *a book*.",
+ "rdfs:label": "result",
"schema:domainIncludes": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:Action"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
- },
- "schema:supersededBy": {
- "@id": "schema:parentOrganization"
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:rangeIncludes",
+ "@id": "schema:recordedIn",
"@type": "rdf:Property",
- "rdfs:comment": "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.",
- "rdfs:label": "rangeIncludes",
+ "rdfs:comment": "The CreativeWork that captured all or part of this Event.",
+ "rdfs:label": "recordedIn",
"schema:domainIncludes": {
- "@id": "schema:Property"
+ "@id": "schema:Event"
},
- "schema:isPartOf": {
- "@id": "https://meta.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:recordedAt"
},
"schema:rangeIncludes": {
- "@id": "schema:Class"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:NonprofitType",
- "@type": "rdfs:Class",
- "rdfs:comment": "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.",
- "rdfs:label": "NonprofitType",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:missionCoveragePrioritiesPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.",
+ "rdfs:label": "missionCoveragePrioritiesPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:NewsMediaOrganization"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
- }
- },
- {
- "@id": "schema:interactionType",
- "@type": "rdf:Property",
- "rdfs:comment": "The Action representing the type of interaction. For up votes, +1s, etc. use [[LikeAction]]. For down votes use [[DislikeAction]]. Otherwise, use the most specific Action.",
- "rdfs:label": "interactionType",
- "schema:domainIncludes": {
- "@id": "schema:InteractionCounter"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Action"
- }
- },
- {
- "@id": "schema:activeIngredient",
- "@type": "rdf:Property",
- "rdfs:comment": "An active ingredient, typically chemical compounds and/or biologic substances.",
- "rdfs:label": "activeIngredient",
- "schema:domainIncludes": [
+ "schema:rangeIncludes": [
{
- "@id": "schema:DietarySupplement"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:DrugStrength"
- },
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
{
- "@id": "schema:Drug"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
},
{
- "@id": "schema:Substance"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:Genetic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.",
+ "rdfs:label": "Genetic",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
}
},
{
- "@id": "schema:serviceLocation",
+ "@id": "schema:partOfTrip",
"@type": "rdf:Property",
- "rdfs:comment": "The location (e.g. civic structure, local business, etc.) where a person can go to access the service.",
- "rdfs:label": "serviceLocation",
+ "rdfs:comment": "Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.",
+ "rdfs:label": "partOfTrip",
"schema:domainIncludes": {
- "@id": "schema:ServiceChannel"
+ "@id": "schema:Trip"
},
- "schema:rangeIncludes": {
- "@id": "schema:Place"
- }
- },
- {
- "@id": "schema:HealthPlanNetwork",
- "@type": "rdfs:Class",
- "rdfs:comment": "A US-style health insurance plan network. ",
- "rdfs:label": "HealthPlanNetwork",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "schema:inverseOf": {
+ "@id": "schema:subTrip"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
- }
- },
- {
- "@id": "schema:MedicalScholarlyArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "A scholarly article in the medical domain.",
- "rdfs:label": "MedicalScholarlyArticle",
- "rdfs:subClassOf": {
- "@id": "schema:ScholarlyArticle"
+ "schema:rangeIncludes": {
+ "@id": "schema:Trip"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:SelfStorage",
- "@type": "rdfs:Class",
- "rdfs:comment": "A self-storage facility.",
- "rdfs:label": "SelfStorage",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
},
{
- "@id": "schema:stageAsNumber",
+ "@id": "schema:maintainer",
"@type": "rdf:Property",
- "rdfs:comment": "The stage represented as a number, e.g. 3.",
- "rdfs:label": "stageAsNumber",
+ "rdfs:comment": "A maintainer of a [[Dataset]], software package ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a [[Person]] or [[Organization]] that manages contributions to, and/or publication of, some (typically complex) artifact. It is common for distributions of software and data to be based on \"upstream\" sources. When [[maintainer]] is applied to a specific version of something e.g. a particular version or packaging of a [[Dataset]], it is always possible that the upstream source has a different maintainer. The [[isBasedOn]] property can be used to indicate such relationships between datasets to make the different maintenance roles clear. Similarly in the case of software, a package may have dedicated maintainers working on integration into software distributions such as Ubuntu, as well as upstream maintainers of the underlying work.\n ",
+ "rdfs:label": "maintainer",
"schema:domainIncludes": {
- "@id": "schema:MedicalConditionStage"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- }
- },
- {
- "@id": "schema:SoftwareSourceCode",
- "@type": "rdfs:Class",
- "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
- "rdfs:label": "SoftwareSourceCode",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2311"
}
},
{
- "@id": "schema:episodes",
+ "@id": "schema:actionableFeedbackPolicy",
"@type": "rdf:Property",
- "rdfs:comment": "An episode of a TV/radio series or season.",
- "rdfs:label": "episodes",
+ "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.",
+ "rdfs:label": "actionableFeedbackPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
"schema:domainIncludes": [
{
- "@id": "schema:RadioSeries"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:TVSeries"
- },
+ "@id": "schema:NewsMediaOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:URL"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Episode"
- },
- "schema:supersededBy": {
- "@id": "schema:episode"
- }
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
},
{
- "@id": "schema:accessibilitySummary",
+ "@id": "schema:additionalProperty",
"@type": "rdf:Property",
- "rdfs:comment": "A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as \"short descriptions are present but long descriptions will be needed for non-visual users\" or \"short descriptions are present and no long descriptions are needed.\"",
- "rdfs:label": "accessibilitySummary",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
+ "rdfs:comment": "A property-value pair representing an additional characteristic of the entity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\\n\\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.\n",
+ "rdfs:label": "additionalProperty",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
+ "@id": "schema:PropertyValue"
}
},
{
- "@id": "schema:Researcher",
+ "@id": "schema:Grant",
"@type": "rdfs:Class",
- "rdfs:comment": "Researchers.",
- "rdfs:label": "Researcher",
+ "rdfs:comment": "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n ",
+ "rdfs:label": "Grant",
"rdfs:subClassOf": {
- "@id": "schema:Audience"
- }
- },
- {
- "@id": "schema:Nonprofit501c8",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations.",
- "rdfs:label": "Nonprofit501c8",
+ "@id": "schema:Intangible"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:arrivalPlatform",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The platform where the train arrives.",
+ "rdfs:label": "arrivalPlatform",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:numberOfAxles",
+ "@id": "schema:runtimePlatform",
"@type": "rdf:Property",
- "rdfs:comment": "The number of axles.\\n\\nTypical unit code(s): C62",
- "rdfs:label": "numberOfAxles",
+ "rdfs:comment": "Runtime platform or script interpreter dependencies (example: Java v1, Python 2.3, .NET Framework 3.0).",
+ "rdfs:label": "runtimePlatform",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:SoftwareSourceCode"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:Number"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:WearableSizeSystemBR",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "Brazilian size system for wearables.",
- "rdfs:label": "WearableSizeSystemBR",
+ "@id": "schema:Head",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Head assessment with clinical examination.",
+ "rdfs:label": "Head",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:PriceTypeEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerates different price types, for example list price, invoice price, and sale price.",
- "rdfs:label": "PriceTypeEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
+ "@id": "schema:MSRP",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the manufacturer suggested retail price (\"MSRP\") of an offered product.",
+ "rdfs:label": "MSRP",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -8019,269 +8000,250 @@
}
},
{
- "@id": "schema:ccRecipient",
+ "@id": "schema:addressLocality",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of recipient. The recipient copied on a message.",
- "rdfs:label": "ccRecipient",
- "rdfs:subPropertyOf": {
- "@id": "schema:recipient"
- },
+ "rdfs:comment": "The locality in which the street address is, and which is in the region. For example, Mountain View.",
+ "rdfs:label": "addressLocality",
"schema:domainIncludes": {
- "@id": "schema:Message"
+ "@id": "schema:PostalAddress"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PoliceStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A police station.",
+ "rdfs:label": "PoliceStation",
+ "rdfs:subClassOf": [
{
- "@id": "schema:ContactPoint"
+ "@id": "schema:EmergencyService"
},
{
- "@id": "schema:Person"
+ "@id": "schema:CivicStructure"
}
]
},
{
- "@id": "schema:DefenceEstablishment",
- "@type": "rdfs:Class",
- "rdfs:comment": "A defence establishment, such as an army or navy base.",
- "rdfs:label": "DefenceEstablishment",
- "rdfs:subClassOf": {
- "@id": "schema:GovernmentBuilding"
- }
- },
- {
- "@id": "schema:Nonprofit501q",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501q: Non-profit type referring to Credit Counseling Organizations.",
- "rdfs:label": "Nonprofit501q",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:isVariantOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.",
+ "rdfs:label": "isVariantOf",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:hasVariant"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:ProductGroup"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:originalMediaLink",
+ "@id": "schema:expectsAcceptanceOf",
"@type": "rdf:Property",
- "rdfs:comment": "Link to the page containing an original version of the content, or directly to an online copy of the original [[MediaObject]] content, e.g. video file.",
- "rdfs:label": "originalMediaLink",
- "schema:domainIncludes": {
- "@id": "schema:MediaReview"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.",
+ "rdfs:label": "expectsAcceptanceOf",
+ "schema:domainIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:MediaSubscription"
},
{
- "@id": "schema:WebPage"
+ "@id": "schema:ConsumeAction"
},
{
- "@id": "schema:MediaObject"
+ "@id": "schema:ActionAccessSpecification"
}
],
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
}
},
{
- "@id": "schema:BodyMeasurementHips",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Girth of hips (measured around the buttocks). Used, for example, to fit skirts.",
- "rdfs:label": "BodyMeasurementHips",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:seatNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location of the reserved seat (e.g., 27).",
+ "rdfs:label": "seatNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:Seat"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:LocalBusiness",
- "@type": "rdfs:Class",
- "http://www.w3.org/2004/02/skos/core#closeMatch": {
- "@id": "http://www.w3.org/ns/regorg#RegisteredOrganization"
+ "@id": "schema:discount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any discount applied (to an Order).",
+ "rdfs:label": "discount",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
},
- "rdfs:comment": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.",
- "rdfs:label": "LocalBusiness",
- "rdfs:subClassOf": [
+ "schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Number"
},
{
- "@id": "schema:Place"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:availability",
+ "@id": "schema:Friday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Thursday and Saturday.",
+ "rdfs:label": "Friday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q130"
+ }
+ },
+ {
+ "@id": "schema:vehicleTransmission",
"@type": "rdf:Property",
- "rdfs:comment": "The availability of this item—for example In stock, Out of stock, Pre-order, etc.",
- "rdfs:label": "availability",
- "schema:domainIncludes": [
+ "rdfs:comment": "The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) (\"gearbox\" for cars).",
+ "rdfs:label": "vehicleTransmission",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Offer"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Demand"
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:ItemAvailability"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:cvdNumC19OverflowPats",
+ "@id": "schema:interactionCount",
"@type": "rdf:Property",
- "rdfs:comment": "numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed.",
- "rdfs:label": "cvdNumC19OverflowPats",
- "schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "rdfs:comment": "This property is deprecated, alongside the UserInteraction types on which it depended.",
+ "rdfs:label": "interactionCount",
+ "schema:supersededBy": {
+ "@id": "schema:interactionStatistic"
}
},
{
- "@id": "schema:blogPosts",
+ "@id": "schema:PaymentComplete",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment has been received and processed.",
+ "rdfs:label": "PaymentComplete"
+ },
+ {
+ "@id": "schema:branchOf",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a post that is part of a [[Blog]]. Note that historically, what we term a \"Blog\" was once known as a \"weblog\", and that what we term a \"BlogPosting\" is now often colloquially referred to as a \"blog\".",
- "rdfs:label": "blogPosts",
+ "rdfs:comment": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]].",
+ "rdfs:label": "branchOf",
"schema:domainIncludes": {
- "@id": "schema:Blog"
+ "@id": "schema:LocalBusiness"
},
"schema:rangeIncludes": {
- "@id": "schema:BlogPosting"
+ "@id": "schema:Organization"
},
"schema:supersededBy": {
- "@id": "schema:blogPost"
+ "@id": "schema:parentOrganization"
}
},
{
- "@id": "schema:BioChemEntity",
+ "@id": "schema:CableOrSatelliteService",
"@type": "rdfs:Class",
- "http://purl.org/dc/terms/source": {
- "@id": "http://bioschemas.org"
- },
- "rdfs:comment": "Any biological, chemical, or biochemical thing. For example: a protein; a gene; a chemical; a synthetic chemical.",
- "rdfs:label": "BioChemEntity",
+ "rdfs:comment": "A service which provides access to media programming like TV or radio. Access may be via cable or satellite.",
+ "rdfs:label": "CableOrSatelliteService",
"rdfs:subClassOf": {
- "@id": "schema:Thing"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Service"
}
},
{
- "@id": "schema:TireShop",
+ "@id": "schema:PayAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A tire shop.",
- "rdfs:label": "TireShop",
+ "rdfs:comment": "An agent pays a price to a participant.",
+ "rdfs:label": "PayAction",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:TradeAction"
}
},
{
- "@id": "schema:Hostel",
+ "@id": "schema:DeliveryTimeSettings",
"@type": "rdfs:Class",
- "rdfs:comment": "A hostel - cheap accommodation, often in shared dormitories.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "Hostel",
+ "rdfs:comment": "A DeliveryTimeSettings represents re-usable pieces of shipping information, relating to timing. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]].",
+ "rdfs:label": "DeliveryTimeSettings",
"rdfs:subClassOf": {
- "@id": "schema:LodgingBusiness"
- }
- },
- {
- "@id": "schema:sensoryRequirement",
- "@type": "rdf:Property",
- "rdfs:comment": "A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
- "rdfs:label": "sensoryRequirement",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:StructuredValue"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:DefinedTerm"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:NutritionInformation",
+ "@id": "schema:WarrantyPromise",
"@type": "rdfs:Class",
- "rdfs:comment": "Nutritional information about the recipe.",
- "rdfs:label": "NutritionInformation",
+ "rdfs:comment": "A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.",
+ "rdfs:label": "WarrantyPromise",
"rdfs:subClassOf": {
"@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:EducationalOccupationalProgram",
+ "@id": "schema:MobilePhoneStore",
"@type": "rdfs:Class",
- "rdfs:comment": "A program offered by an institution which determines the learning progress to achieve an outcome, usually a credential like a degree or certificate. This would define a discrete set of opportunities (e.g., job, courses) that together constitute a program with a clear start, end, set of requirements, and transition to a new occupational opportunity (e.g., a job), or sometimes a higher educational opportunity (e.g., an advanced degree).",
- "rdfs:label": "EducationalOccupationalProgram",
+ "rdfs:comment": "A store that sells mobile phones and related accessories.",
+ "rdfs:label": "MobilePhoneStore",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:releaseOf",
+ "@id": "schema:itemDefectReturnLabelSource",
"@type": "rdf:Property",
- "rdfs:comment": "The album this is a release of.",
- "rdfs:label": "releaseOf",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a defect product.",
+ "rdfs:label": "itemDefectReturnLabelSource",
"schema:domainIncludes": {
- "@id": "schema:MusicRelease"
+ "@id": "schema:MerchantReturnPolicy"
},
- "schema:inverseOf": {
- "@id": "schema:albumRelease"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MusicAlbum"
+ "@id": "schema:ReturnLabelSourceEnumeration"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
- },
- {
- "@id": "schema:RadioClip",
- "@type": "rdfs:Class",
- "rdfs:comment": "A short radio program or a segment/part of a radio program.",
- "rdfs:label": "RadioClip",
- "rdfs:subClassOf": {
- "@id": "schema:Clip"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:Nonprofit501c25",
+ "@id": "schema:Nonprofit501q",
"@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents.",
- "rdfs:label": "Nonprofit501c25",
+ "rdfs:comment": "Nonprofit501q: Non-profit type referring to Credit Counseling Organizations.",
+ "rdfs:label": "Nonprofit501q",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -8290,605 +8252,646 @@
}
},
{
- "@id": "schema:reviewAspect",
+ "@id": "schema:educationalAlignment",
"@type": "rdf:Property",
- "rdfs:comment": "This Review or Rating is relevant to this part or facet of the itemReviewed.",
- "rdfs:label": "reviewAspect",
+ "rdfs:comment": "An alignment to an established educational framework.\n\nThis property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.",
+ "rdfs:label": "educationalAlignment",
"schema:domainIncludes": [
{
- "@id": "schema:Review"
- },
- {
- "@id": "schema:Rating"
+ "@id": "schema:LearningResource"
},
{
- "@id": "schema:Guide"
+ "@id": "schema:CreativeWork"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:AlignmentObject"
+ }
+ },
+ {
+ "@id": "schema:DrugCost",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.",
+ "rdfs:label": "DrugCost",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1689"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:textValue",
+ "@id": "schema:imagingTechnique",
"@type": "rdf:Property",
- "rdfs:comment": "Text value being annotated.",
- "rdfs:label": "textValue",
+ "rdfs:comment": "Imaging technique used.",
+ "rdfs:label": "imagingTechnique",
"schema:domainIncludes": {
- "@id": "schema:PronounceableText"
+ "@id": "schema:ImagingTest"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ "@id": "schema:MedicalImagingTechnique"
}
},
{
- "@id": "schema:Nonprofit501c1",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c1: Non-profit type referring to Corporations Organized Under Act of Congress, including Federal Credit Unions and National Farm Loan Associations.",
- "rdfs:label": "Nonprofit501c1",
+ "@id": "schema:ReadPermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to read or view the document.",
+ "rdfs:label": "ReadPermission"
+ },
+ {
+ "@id": "schema:WearableSizeSystemContinental",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Continental size system for wearables.",
+ "rdfs:label": "WearableSizeSystemContinental",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:renegotiableLoan",
+ "@id": "schema:healthPlanNetworkTier",
"@type": "rdf:Property",
- "rdfs:comment": "Whether the terms for payment of interest can be renegotiated during the life of the loan.",
- "rdfs:label": "renegotiableLoan",
+ "rdfs:comment": "The tier(s) for this network.",
+ "rdfs:label": "healthPlanNetworkTier",
"schema:domainIncludes": {
- "@id": "schema:LoanOrCredit"
+ "@id": "schema:HealthPlanNetwork"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Text"
},
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- ]
- },
- {
- "@id": "schema:TransferAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.",
- "rdfs:label": "TransferAction",
- "rdfs:subClassOf": {
- "@id": "schema:Action"
- }
- },
- {
- "@id": "schema:DataFeedItem",
- "@type": "rdfs:Class",
- "rdfs:comment": "A single item within a larger data feed.",
- "rdfs:label": "DataFeedItem",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:albumReleaseType",
+ "@id": "schema:arrivalTime",
"@type": "rdf:Property",
- "rdfs:comment": "The kind of release which this album is: single, EP or album.",
- "rdfs:label": "albumReleaseType",
+ "rdfs:comment": "The expected arrival time.",
+ "rdfs:label": "arrivalTime",
"schema:domainIncludes": {
- "@id": "schema:MusicAlbum"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MusicAlbumReleaseType"
+ "@id": "schema:Trip"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Time"
+ }
+ ]
},
{
- "@id": "schema:FastFoodRestaurant",
- "@type": "rdfs:Class",
- "rdfs:comment": "A fast-food restaurant.",
- "rdfs:label": "FastFoodRestaurant",
- "rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
- }
+ "@id": "schema:availabilityStarts",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The beginning of the availability of the product or service included in the offer.",
+ "rdfs:label": "availabilityStarts",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:Time"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ ]
},
{
- "@id": "schema:ticketNumber",
+ "@id": "schema:cookingMethod",
"@type": "rdf:Property",
- "rdfs:comment": "The unique identifier for the ticket.",
- "rdfs:label": "ticketNumber",
+ "rdfs:comment": "The method of cooking, such as Frying, Steaming, ...",
+ "rdfs:label": "cookingMethod",
"schema:domainIncludes": {
- "@id": "schema:Ticket"
+ "@id": "schema:Recipe"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:ApprovedIndication",
+ "@id": "schema:RentAction",
"@type": "rdfs:Class",
- "rdfs:comment": "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.",
- "rdfs:label": "ApprovedIndication",
+ "rdfs:comment": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.",
+ "rdfs:label": "RentAction",
"rdfs:subClassOf": {
- "@id": "schema:MedicalIndication"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:TradeAction"
}
},
{
- "@id": "schema:accessModeSufficient",
+ "@id": "schema:renegotiableLoan",
"@type": "rdf:Property",
- "rdfs:comment": "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Expected values include: auditory, tactile, textual, visual.\n ",
- "rdfs:label": "accessModeSufficient",
+ "rdfs:comment": "Whether the terms for payment of interest can be renegotiated during the life of the loan.",
+ "rdfs:label": "renegotiableLoan",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": {
- "@id": "schema:ItemList"
+ "@id": "schema:LoanOrCredit"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
- }
- },
- {
- "@id": "schema:ExhibitionEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...",
- "rdfs:label": "ExhibitionEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
- }
- },
- {
- "@id": "schema:EUEnergyEfficiencyCategoryE",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryE",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
- }
- },
- {
- "@id": "schema:DVDFormat",
- "@type": "schema:MusicReleaseFormatType",
- "rdfs:comment": "DVDFormat.",
- "rdfs:label": "DVDFormat",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
- },
- {
- "@id": "schema:ReadPermission",
- "@type": "schema:DigitalDocumentPermissionType",
- "rdfs:comment": "Permission to read or view the document.",
- "rdfs:label": "ReadPermission"
- },
- {
- "@id": "schema:WearableSizeSystemEN13402",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "EN 13402 (joint European standard for size labelling of clothes).",
- "rdfs:label": "WearableSizeSystemEN13402",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
},
{
- "@id": "schema:gtin8",
+ "@id": "schema:areaServed",
"@type": "rdf:Property",
- "rdfs:comment": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
- "rdfs:label": "gtin8",
- "rdfs:subPropertyOf": [
+ "rdfs:comment": "The geographic area where a service or offered item is provided.",
+ "rdfs:label": "areaServed",
+ "schema:domainIncludes": [
{
- "@id": "schema:gtin"
+ "@id": "schema:ContactPoint"
},
{
- "@id": "schema:identifier"
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:Organization"
}
],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:AdministrativeArea"
+ }
+ ]
+ },
+ {
+ "@id": "schema:numberedPosition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A number associated with a role in an organization, for example, the number on an athlete's jersey.",
+ "rdfs:label": "numberedPosition",
+ "schema:domainIncludes": {
+ "@id": "schema:OrganizationRole"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:advanceBookingRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of time that is required between accepting the offer and the actual usage of the resource or service.",
+ "rdfs:label": "advanceBookingRequirement",
"schema:domainIncludes": [
{
"@id": "schema:Demand"
},
{
"@id": "schema:Offer"
- },
- {
- "@id": "schema:Product"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:valueAddedTaxIncluded",
+ "@id": "schema:parentOrganization",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.",
- "rdfs:label": "valueAddedTaxIncluded",
+ "rdfs:comment": "The larger organization that this organization is a [[subOrganization]] of, if any.",
+ "rdfs:label": "parentOrganization",
"schema:domainIncludes": {
- "@id": "schema:PriceSpecification"
+ "@id": "schema:Organization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:subOrganization"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:ShortStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Short story or tale. A brief work of literature, usually written in narrative prose.",
+ "rdfs:label": "ShortStory",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1976"
}
},
{
- "@id": "schema:PaymentDeclined",
- "@type": "schema:PaymentStatusType",
- "rdfs:comment": "The payee received the payment, but it was declined for some reason.",
- "rdfs:label": "PaymentDeclined"
+ "@id": "schema:modifiedTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date and time the reservation was modified.",
+ "rdfs:label": "modifiedTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
},
{
- "@id": "schema:arrivalBusStop",
+ "@id": "schema:costPerUnit",
"@type": "rdf:Property",
- "rdfs:comment": "The stop or station from which the bus arrives.",
- "rdfs:label": "arrivalBusStop",
+ "rdfs:comment": "The cost per unit of the drug.",
+ "rdfs:label": "costPerUnit",
"schema:domainIncludes": {
- "@id": "schema:BusTrip"
+ "@id": "schema:DrugCost"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:BusStop"
+ "@id": "schema:Text"
},
{
- "@id": "schema:BusStation"
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:Number"
}
]
},
{
- "@id": "schema:Neck",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Neck assessment with clinical examination.",
- "rdfs:label": "Neck",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:BreadcrumbList",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\\n\\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList. The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.\n ",
+ "rdfs:label": "BreadcrumbList",
+ "rdfs:subClassOf": {
+ "@id": "schema:ItemList"
}
},
{
- "@id": "schema:Nonprofit501c28",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts.",
- "rdfs:label": "Nonprofit501c28",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "schema:ReservationStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated status values for Reservation.",
+ "rdfs:label": "ReservationStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
}
},
{
- "@id": "schema:Dermatologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "Something relating to or practicing dermatology.",
- "rdfs:label": "Dermatologic",
+ "@id": "schema:Observational",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "An observational study design.",
+ "rdfs:label": "Observational",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:supersededBy": {
- "@id": "schema:Dermatology"
}
},
{
- "@id": "schema:WearableSizeGroupJuniors",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Juniors\" for wearables.",
- "rdfs:label": "WearableSizeGroupJuniors",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:LandmarksOrHistoricalBuildings",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An historical landmark or building.",
+ "rdfs:label": "LandmarksOrHistoricalBuildings",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:Seat",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe a seat, such as a reserved seat in an event reservation.",
+ "rdfs:label": "Seat",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:PaymentService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Service to transfer funds from a person or organization to a beneficiary person or organization.",
+ "rdfs:label": "PaymentService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:Ultrasound",
- "@type": "schema:MedicalImagingTechnique",
- "rdfs:comment": "Ultrasound imaging.",
- "rdfs:label": "Ultrasound",
+ "@id": "schema:PercutaneousProcedure",
+ "@type": "schema:MedicalProcedureType",
+ "rdfs:comment": "A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.",
+ "rdfs:label": "PercutaneousProcedure",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:validFor",
- "@type": "rdf:Property",
- "rdfs:comment": "The duration of validity of a permit or similar thing.",
- "rdfs:label": "validFor",
- "schema:domainIncludes": [
- {
- "@id": "schema:EducationalOccupationalCredential"
- },
- {
- "@id": "schema:Permit"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Duration"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ "@id": "schema:OpenTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which the researcher knows the full details of the treatment, and so does the patient.",
+ "rdfs:label": "OpenTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:byMonthDay",
+ "@id": "schema:PaymentDeclined",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payee received the payment, but it was declined for some reason.",
+ "rdfs:label": "PaymentDeclined"
+ },
+ {
+ "@id": "schema:illustrator",
"@type": "rdf:Property",
- "rdfs:comment": "Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31.",
- "rdfs:label": "byMonthDay",
+ "rdfs:comment": "The illustrator of the book.",
+ "rdfs:label": "illustrator",
"schema:domainIncludes": {
- "@id": "schema:Schedule"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Book"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:pregnancyWarning",
+ "@id": "schema:contentSize",
"@type": "rdf:Property",
- "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.",
- "rdfs:label": "pregnancyWarning",
+ "rdfs:comment": "File size in (mega/kilo)bytes.",
+ "rdfs:label": "contentSize",
"schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:MediaObject"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:nsn",
+ "@id": "schema:contactOption",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. ",
- "rdfs:label": "nsn",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
+ "rdfs:comment": "An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).",
+ "rdfs:label": "contactOption",
"schema:domainIncludes": {
- "@id": "schema:Product"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:ContactPoint"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2126"
- }
- },
- {
- "@id": "schema:SuspendAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).",
- "rdfs:label": "SuspendAction",
- "rdfs:subClassOf": {
- "@id": "schema:ControlAction"
+ "@id": "schema:ContactPointOption"
}
},
{
- "@id": "schema:Dentistry",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A branch of medicine that is involved in the dental care.",
- "rdfs:label": "Dentistry",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "schema:afterMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object representing the circumstances after performing this direction.",
+ "rdfs:label": "afterMedia",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToDirection"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
},
{
- "@id": "schema:headline",
+ "@id": "schema:priceValidUntil",
"@type": "rdf:Property",
- "rdfs:comment": "Headline of the article.",
- "rdfs:label": "headline",
+ "rdfs:comment": "The date after which the price is no longer available.",
+ "rdfs:label": "priceValidUntil",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Offer"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:contentUrl",
- "@type": "rdf:Property",
- "rdfs:comment": "Actual bytes of the media object, for example the image file or video file.",
- "rdfs:label": "contentUrl",
- "schema:domainIncludes": {
- "@id": "schema:MediaObject"
+ "@id": "schema:MusicAlbumProductionType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Classification of the album by its type of content: soundtrack, live album, studio album, etc.",
+ "rdfs:label": "MusicAlbumProductionType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
- "schema:rangeIncludes": {
- "@id": "schema:URL"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:procedure",
+ "@id": "schema:availableIn",
"@type": "rdf:Property",
- "rdfs:comment": "A description of the procedure involved in setting up, using, and/or installing the device.",
- "rdfs:label": "procedure",
+ "rdfs:comment": "The location in which the strength is available.",
+ "rdfs:label": "availableIn",
"schema:domainIncludes": {
- "@id": "schema:MedicalDevice"
+ "@id": "schema:DrugStrength"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:AdministrativeArea"
}
},
{
- "@id": "schema:educationalAlignment",
- "@type": "rdf:Property",
- "rdfs:comment": "An alignment to an established educational framework.\n\nThis property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.",
- "rdfs:label": "educationalAlignment",
- "schema:domainIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:LearningResource"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:AlignmentObject"
+ "@id": "schema:AudioObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An audio file.",
+ "rdfs:label": "AudioObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
}
},
{
- "@id": "schema:itemDefectReturnShippingFeesAmount",
- "@type": "rdf:Property",
- "rdfs:comment": "Amount of shipping costs for defect product returns. Applicable when property [[itemDefectReturnFees]] equals [[ReturnShippingFees]].",
- "rdfs:label": "itemDefectReturnShippingFeesAmount",
- "schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "schema:Museum",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A museum.",
+ "rdfs:label": "Museum",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:blogPost",
- "@type": "rdf:Property",
- "rdfs:comment": "A posting that is part of this blog.",
- "rdfs:label": "blogPost",
- "schema:domainIncludes": {
- "@id": "schema:Blog"
+ "@id": "schema:Taxi",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A taxi.",
+ "rdfs:label": "Taxi",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
},
- "schema:rangeIncludes": {
- "@id": "schema:BlogPosting"
+ "schema:supersededBy": {
+ "@id": "schema:TaxiService"
}
},
{
- "@id": "schema:TakeAction",
+ "@id": "schema:TrainTrip",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\\n\\nRelated actions:\\n\\n* [[GiveAction]]: The reciprocal of TakeAction.\\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transfered.",
- "rdfs:label": "TakeAction",
+ "rdfs:comment": "A trip on a commercial train line.",
+ "rdfs:label": "TrainTrip",
"rdfs:subClassOf": {
- "@id": "schema:TransferAction"
+ "@id": "schema:Trip"
}
},
{
- "@id": "schema:departureTime",
+ "@id": "schema:primaryPrevention",
"@type": "rdf:Property",
- "rdfs:comment": "The expected departure time.",
- "rdfs:label": "departureTime",
+ "rdfs:comment": "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.",
+ "rdfs:label": "primaryPrevention",
"schema:domainIncludes": {
- "@id": "schema:Trip"
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTherapy"
+ }
+ },
+ {
+ "@id": "schema:dataFeedElement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An item within a data feed. Data feeds may have many elements.",
+ "rdfs:label": "dataFeedElement",
+ "schema:domainIncludes": {
+ "@id": "schema:DataFeed"
},
"schema:rangeIncludes": [
{
- "@id": "schema:DateTime"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Time"
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:DataFeedItem"
}
]
},
{
- "@id": "schema:BreadcrumbList",
+ "@id": "schema:GeospatialGeometry",
"@type": "rdfs:Class",
- "rdfs:comment": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\\n\\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.\n ",
- "rdfs:label": "BreadcrumbList",
+ "rdfs:comment": "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.",
+ "rdfs:label": "GeospatialGeometry",
"rdfs:subClassOf": {
- "@id": "schema:ItemList"
- }
- },
- {
- "@id": "schema:tracks",
- "@type": "rdf:Property",
- "rdfs:comment": "A music recording (track)—usually a single song.",
- "rdfs:label": "tracks",
- "schema:domainIncludes": [
- {
- "@id": "schema:MusicPlaylist"
- },
- {
- "@id": "schema:MusicGroup"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:MusicRecording"
+ "@id": "schema:Intangible"
},
- "schema:supersededBy": {
- "@id": "schema:track"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1375"
}
},
{
- "@id": "schema:WearableMeasurementTypeEnumeration",
+ "@id": "schema:PriceComponentTypeEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerates common types of measurement for wearables products.",
- "rdfs:label": "WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Enumerates different price components that together make up the total price for an offered product.",
+ "rdfs:label": "PriceComponentTypeEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:MeasurementTypeEnumeration"
+ "@id": "schema:Enumeration"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
}
},
{
- "@id": "schema:accessCode",
+ "@id": "schema:termDuration",
"@type": "rdf:Property",
- "rdfs:comment": "Password, PIN, or access code needed for delivery (e.g. from a locker).",
- "rdfs:label": "accessCode",
+ "rdfs:comment": "The amount of time in a term as defined by the institution. A term is a length of time where students take one or more classes. Semesters and quarters are common units for term.",
+ "rdfs:label": "termDuration",
"schema:domainIncludes": {
- "@id": "schema:DeliveryEvent"
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Duration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
}
},
{
- "@id": "schema:termsOfService",
+ "@id": "schema:HealthAndBeautyBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Health and beauty.",
+ "rdfs:label": "HealthAndBeautyBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:occupationalCredentialAwarded",
"@type": "rdf:Property",
- "rdfs:comment": "Human-readable terms of service documentation.",
- "rdfs:label": "termsOfService",
- "schema:domainIncludes": {
- "@id": "schema:Service"
- },
+ "rdfs:comment": "A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.",
+ "rdfs:label": "occupationalCredentialAwarded",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Course"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
{
"@id": "schema:Text"
},
@@ -8897,195 +8900,196 @@
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
},
{
- "@id": "schema:TripleBlindedTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.",
- "rdfs:label": "TripleBlindedTrial",
+ "@id": "schema:penciler",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The individual who draws the primary narrative artwork.",
+ "rdfs:label": "penciler",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VisualArtwork"
+ },
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://bib.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:AskPublicNewsArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [[NewsArticle]] expressing an open call by a [[NewsMediaOrganization]] asking the public for input, insights, clarifications, anecdotes, documentation, etc., on an issue, for reporting purposes.",
- "rdfs:label": "AskPublicNewsArticle",
- "rdfs:subClassOf": {
- "@id": "schema:NewsArticle"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:interestRate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate.",
+ "rdfs:label": "interestRate",
+ "schema:domainIncludes": {
+ "@id": "schema:FinancialProduct"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:Number"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:QuantitativeValue"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
},
{
- "@id": "schema:procedureType",
+ "@id": "schema:observationDate",
"@type": "rdf:Property",
- "rdfs:comment": "The type of procedure, for example Surgical, Noninvasive, or Percutaneous.",
- "rdfs:label": "procedureType",
+ "rdfs:comment": "The observationDate of an [[Observation]].",
+ "rdfs:label": "observationDate",
"schema:domainIncludes": {
- "@id": "schema:MedicalProcedure"
+ "@id": "schema:Observation"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalProcedureType"
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
}
},
{
- "@id": "schema:orderDelivery",
+ "@id": "schema:slogan",
"@type": "rdf:Property",
- "rdfs:comment": "The delivery of the parcel related to this order or order item.",
- "rdfs:label": "orderDelivery",
+ "rdfs:comment": "A slogan or motto associated with the item.",
+ "rdfs:label": "slogan",
"schema:domainIncludes": [
{
- "@id": "schema:Order"
+ "@id": "schema:Service"
},
{
- "@id": "schema:OrderItem"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:ParcelDelivery"
- }
- },
- {
- "@id": "schema:leaseLength",
- "@type": "rdf:Property",
- "rdfs:comment": "Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property.",
- "rdfs:label": "leaseLength",
- "schema:domainIncludes": [
- {
- "@id": "schema:Accommodation"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:RealEstateListing"
+ "@id": "schema:Product"
},
{
- "@id": "schema:Offer"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Brand"
},
{
- "@id": "schema:Duration"
+ "@id": "schema:Place"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:participant",
- "@type": "rdf:Property",
- "rdfs:comment": "Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*.",
- "rdfs:label": "participant",
- "schema:domainIncludes": {
- "@id": "schema:Action"
+ "@id": "schema:Nonprofit501c24",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts.",
+ "rdfs:label": "Nonprofit501c24",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
},
{
- "@id": "schema:UseAction",
+ "@id": "schema:Vein",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of applying an object to its intended purpose.",
- "rdfs:label": "UseAction",
+ "rdfs:comment": "A type of blood vessel that specifically carries blood to the heart.",
+ "rdfs:label": "Vein",
"rdfs:subClassOf": {
- "@id": "schema:ConsumeAction"
+ "@id": "schema:Vessel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:guideline",
+ "@id": "schema:cvdNumVentUse",
"@type": "rdf:Property",
- "rdfs:comment": "A medical guideline related to this entity.",
- "rdfs:label": "guideline",
+ "rdfs:comment": "numventuse - MECHANICAL VENTILATORS IN USE: Total number of ventilators in use.",
+ "rdfs:label": "cvdNumVentUse",
"schema:domainIncludes": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:CDCPMDRecord"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalGuideline"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:printSection",
+ "@id": "schema:ItemListOrderDescending",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with higher values listed first.",
+ "rdfs:label": "ItemListOrderDescending"
+ },
+ {
+ "@id": "schema:hasMenuSection",
"@type": "rdf:Property",
- "rdfs:comment": "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.",
- "rdfs:label": "printSection",
- "schema:domainIncludes": {
- "@id": "schema:NewsArticle"
- },
+ "rdfs:comment": "A subgrouping of the menu (by dishes, course, serving time period, etc.).",
+ "rdfs:label": "hasMenuSection",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MenuSection"
+ },
+ {
+ "@id": "schema:Menu"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MenuSection"
}
},
{
- "@id": "schema:SchoolDistrict",
- "@type": "rdfs:Class",
- "rdfs:comment": "A School District is an administrative area for the administration of schools.",
- "rdfs:label": "SchoolDistrict",
- "rdfs:subClassOf": {
- "@id": "schema:AdministrativeArea"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:foodWarning",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.",
+ "rdfs:label": "foodWarning",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2500"
- }
- },
- {
- "@id": "schema:WearableSizeGroupMaternity",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Maternity\" for wearables.",
- "rdfs:label": "WearableSizeGroupMaternity",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:loanType",
+ "@id": "schema:legislationType",
"@type": "rdf:Property",
- "rdfs:comment": "The type of a loan or credit.",
- "rdfs:label": "loanType",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#type_document"
+ },
+ "rdfs:comment": "The type of the legislation. Examples of values are \"law\", \"act\", \"directive\", \"decree\", \"regulation\", \"statutory instrument\", \"loi organique\", \"règlement grand-ducal\", etc., depending on the country.",
+ "rdfs:label": "legislationType",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:genre"
+ },
"schema:domainIncludes": {
- "@id": "schema:LoanOrCredit"
+ "@id": "schema:Legislation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:CategoryCode"
},
{
"@id": "schema:Text"
@@ -9093,58 +9097,105 @@
],
"schema:source": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
- ]
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#type_document"
+ }
},
{
- "@id": "schema:ComicIssue",
- "@type": "rdfs:Class",
- "rdfs:comment": "Individual comic issues are serially published as\n \tpart of a larger series. For the sake of consistency, even one-shot issues\n \tbelong to a series comprised of a single issue. All comic issues can be\n \tuniquely identified by: the combination of the name and volume number of the\n \tseries to which the issue belongs; the issue number; and the variant\n \tdescription of the issue (if any).",
- "rdfs:label": "ComicIssue",
- "rdfs:subClassOf": {
- "@id": "schema:PublicationIssue"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "schema:EvidenceLevelC",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Only consensus opinion of experts, case studies, or standard-of-care.",
+ "rdfs:label": "EvidenceLevelC",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:beforeMedia",
+ "@id": "schema:shippingLabel",
"@type": "rdf:Property",
- "rdfs:comment": "A media object representing the circumstances before performing this direction.",
- "rdfs:label": "beforeMedia",
- "schema:domainIncludes": {
- "@id": "schema:HowToDirection"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).",
+ "rdfs:label": "shippingLabel",
+ "schema:domainIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:OfferShippingDetails"
},
{
- "@id": "schema:MediaObject"
+ "@id": "schema:ShippingRateSettings"
}
- ]
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
},
{
- "@id": "schema:flightDistance",
+ "@id": "schema:valueReference",
"@type": "rdf:Property",
- "rdfs:comment": "The distance of the flight.",
- "rdfs:label": "flightDistance",
- "schema:domainIncludes": {
- "@id": "schema:Flight"
- },
+ "rdfs:comment": "A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.",
+ "rdfs:label": "valueReference",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
"schema:rangeIncludes": [
+ {
+ "@id": "schema:Enumeration"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:StructuredValue"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
{
"@id": "schema:Text"
},
{
- "@id": "schema:Distance"
+ "@id": "schema:MeasurementTypeEnumeration"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:serviceUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The website to access the service.",
+ "rdfs:label": "serviceUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
},
{
"@id": "schema:jobImmediateStart",
@@ -9165,964 +9216,945 @@
}
},
{
- "@id": "schema:Withdrawn",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Withdrawn.",
- "rdfs:label": "Withdrawn",
+ "@id": "schema:Artery",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/51114001"
+ },
+ "rdfs:comment": "A type of blood vessel that specifically carries blood away from the heart.",
+ "rdfs:label": "Artery",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vessel"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:MedicalEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice.",
- "rdfs:label": "MedicalEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
+ "@id": "schema:NoninvasiveProcedure",
+ "@type": "schema:MedicalProcedureType",
+ "rdfs:comment": "A type of medical procedure that involves noninvasive techniques.",
+ "rdfs:label": "NoninvasiveProcedure",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:healthPlanPharmacyCategory",
+ "@id": "schema:bookEdition",
"@type": "rdf:Property",
- "rdfs:comment": "The category or type of pharmacy associated with this cost sharing.",
- "rdfs:label": "healthPlanPharmacyCategory",
+ "rdfs:comment": "The edition of the book.",
+ "rdfs:label": "bookEdition",
"schema:domainIncludes": {
- "@id": "schema:HealthPlanCostSharingSpecification"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Book"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:ActionAccessSpecification",
- "@type": "rdfs:Class",
- "rdfs:comment": "A set of requirements that a must be fulfilled in order to perform an Action.",
- "rdfs:label": "ActionAccessSpecification",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:taxonRank",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ "rdfs:comment": "The taxonomic rank of this taxon given preferably as a URI from a controlled vocabulary – typically the ranks from TDWG TaxonRank ontology or equivalent Wikidata URIs.",
+ "rdfs:label": "taxonRank",
+ "schema:domainIncludes": {
+ "@id": "schema:Taxon"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:boardingPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of boarding policy used by the airline (e.g. zone-based or group-based).",
+ "rdfs:label": "boardingPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Airline"
+ },
+ {
+ "@id": "schema:Flight"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:BoardingPolicyType"
}
},
{
- "@id": "schema:accountId",
+ "@id": "schema:beforeMedia",
"@type": "rdf:Property",
- "rdfs:comment": "The identifier for the account the payment will be applied to.",
- "rdfs:label": "accountId",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
+ "rdfs:comment": "A media object representing the circumstances before performing this direction.",
+ "rdfs:label": "beforeMedia",
"schema:domainIncludes": {
- "@id": "schema:Invoice"
+ "@id": "schema:HowToDirection"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
},
{
- "@id": "schema:WebPageElement",
+ "@id": "schema:SiteNavigationElement",
"@type": "rdfs:Class",
- "rdfs:comment": "A web page element, like a table or an image.",
- "rdfs:label": "WebPageElement",
+ "rdfs:comment": "A navigation element of the page.",
+ "rdfs:label": "SiteNavigationElement",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:WebPageElement"
}
},
{
- "@id": "schema:healthPlanNetworkTier",
- "@type": "rdf:Property",
- "rdfs:comment": "The tier(s) for this network.",
- "rdfs:label": "healthPlanNetworkTier",
- "schema:domainIncludes": {
- "@id": "schema:HealthPlanNetwork"
+ "@id": "schema:WearableSizeGroupEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates common size groups (also known as \"size types\") for wearable products.",
+ "rdfs:label": "WearableSizeGroupEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:SizeGroupEnumeration"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:Nonprofit501c16",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.",
- "rdfs:label": "Nonprofit501c16",
+ "@id": "schema:Neck",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Neck assessment with clinical examination.",
+ "rdfs:label": "Neck",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:QuantitativeValueDistribution",
+ "@id": "schema:DoseSchedule",
"@type": "rdfs:Class",
- "rdfs:comment": "A statistical distribution of values.",
- "rdfs:label": "QuantitativeValueDistribution",
+ "rdfs:comment": "A specific dosing schedule for a drug or supplement.",
+ "rdfs:label": "DoseSchedule",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- }
- },
- {
- "@id": "schema:breastfeedingWarning",
- "@type": "rdf:Property",
- "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.",
- "rdfs:label": "breastfeedingWarning",
- "schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:MedicalIntangible"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
}
},
{
- "@id": "schema:Nonprofit501c11",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations.",
- "rdfs:label": "Nonprofit501c11",
+ "@id": "schema:ReturnLabelInBox",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Specifies that a return label will be provided by the seller in the shipping box.",
+ "rdfs:label": "ReturnLabelInBox",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:physicalRequirement",
- "@type": "rdf:Property",
- "rdfs:comment": "A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
- "rdfs:label": "physicalRequirement",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
- },
+ "@id": "schema:HealthcareConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item is a pharmaceutical (e.g., a prescription or OTC drug) or a restricted medical device.",
+ "rdfs:label": "HealthcareConsideration",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:DefinedTerm"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:usesHealthPlanIdStandard",
+ "@id": "schema:minPrice",
"@type": "rdf:Property",
- "rdfs:comment": "The standard for interpreting thePlan ID. The preferred is \"HIOS\". See the Centers for Medicare & Medicaid Services for more details.",
- "rdfs:label": "usesHealthPlanIdStandard",
+ "rdfs:comment": "The lowest price if the price is a range.",
+ "rdfs:label": "minPrice",
"schema:domainIncludes": {
- "@id": "schema:HealthInsurancePlan"
+ "@id": "schema:PriceSpecification"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:ComputerStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A computer store.",
- "rdfs:label": "ComputerStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:department",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.",
+ "rdfs:label": "department",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:hospitalAffiliation",
+ "@id": "schema:manufacturer",
"@type": "rdf:Property",
- "rdfs:comment": "A hospital with which the physician or office is affiliated.",
- "rdfs:label": "hospitalAffiliation",
+ "rdfs:comment": "The manufacturer of the product.",
+ "rdfs:label": "manufacturer",
"schema:domainIncludes": {
- "@id": "schema:Physician"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Product"
},
"schema:rangeIncludes": {
- "@id": "schema:Hospital"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:amount",
+ "@id": "schema:applicableLocation",
"@type": "rdf:Property",
- "rdfs:comment": "The amount of money.",
- "rdfs:label": "amount",
+ "rdfs:comment": "The location in which the status applies.",
+ "rdfs:label": "applicableLocation",
"schema:domainIncludes": [
{
- "@id": "schema:MoneyTransfer"
- },
- {
- "@id": "schema:DatedMoneySpecification"
- },
- {
- "@id": "schema:InvestmentOrDeposit"
- },
- {
- "@id": "schema:LoanOrCredit"
- },
- {
- "@id": "schema:MonetaryGrant"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Number"
+ "@id": "schema:DrugCost"
},
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:DrugLegalStatus"
}
],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
},
{
- "@id": "schema:acquiredFrom",
- "@type": "rdf:Property",
- "rdfs:comment": "The organization or person from which the product was acquired.",
- "rdfs:label": "acquiredFrom",
- "schema:domainIncludes": {
- "@id": "schema:OwnershipInfo"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:ConfirmAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of notifying someone that a future event/action is going to happen as expected.\\n\\nRelated actions:\\n\\n* [[CancelAction]]: The antonym of ConfirmAction.",
+ "rdfs:label": "ConfirmAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InformAction"
}
},
{
- "@id": "schema:broadcastSignalModulation",
+ "@id": "schema:inStoreReturnsOffered",
"@type": "rdf:Property",
- "rdfs:comment": "The modulation (e.g. FM, AM, etc) used by a particular broadcast service.",
- "rdfs:label": "broadcastSignalModulation",
+ "rdfs:comment": "Are in-store returns offered? (For more advanced return methods use the [[returnMethod]] property.)",
+ "rdfs:label": "inStoreReturnsOffered",
"schema:domainIncludes": {
- "@id": "schema:BroadcastFrequencySpecification"
+ "@id": "schema:MerchantReturnPolicy"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:QualitativeValue"
- }
- ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2111"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:fuelConsumption",
+ "@id": "schema:processingTime",
"@type": "rdf:Property",
- "rdfs:comment": "The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\\n\\n* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel consumption to another value.",
- "rdfs:label": "fuelConsumption",
+ "rdfs:comment": "Estimated processing time for the service using this channel.",
+ "rdfs:label": "processingTime",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:ServiceChannel"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:FoodService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food service, like breakfast, lunch, or dinner.",
+ "rdfs:label": "FoodService",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:composer",
+ "@id": "schema:DeactivateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).",
+ "rdfs:label": "DeactivateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:TheaterGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.",
+ "rdfs:label": "TheaterGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:PerformingGroup"
+ }
+ },
+ {
+ "@id": "schema:spatial",
"@type": "rdf:Property",
- "rdfs:comment": "The person or organization who wrote a composition, or who is the composer of a work performed at some event.",
- "rdfs:label": "composer",
- "schema:domainIncludes": [
+ "owl:equivalentProperty": {
+ "@id": "dcterms:spatial"
+ },
+ "rdfs:comment": "The \"spatial\" property can be used in cases when more specific properties\n(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.",
+ "rdfs:label": "spatial",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:gtin14",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin14",
+ "rdfs:subPropertyOf": [
{
- "@id": "schema:MusicComposition"
+ "@id": "schema:gtin"
},
{
- "@id": "schema:Event"
+ "@id": "schema:identifier"
}
],
- "schema:rangeIncludes": [
+ "schema:domainIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
}
],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:MedicalWebPage",
- "@type": "rdfs:Class",
- "rdfs:comment": "A web page that provides medical information.",
- "rdfs:label": "MedicalWebPage",
- "rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:availableStrength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An available dosage strength for the drug.",
+ "rdfs:label": "availableStrength",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugStrength"
}
},
{
- "@id": "schema:diseaseSpreadStatistics",
- "@type": "rdf:Property",
- "rdfs:comment": "Statistical information about the spread of a disease, either as [[WebContent]], or\n described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is\n provided, the page indicated might also contain more such markup.",
- "rdfs:label": "diseaseSpreadStatistics",
+ "@id": "schema:OrderPaymentDue",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that payment is due on an order.",
+ "rdfs:label": "OrderPaymentDue"
+ },
+ {
+ "@id": "schema:previousItem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link to the ListItem that precedes the current one.",
+ "rdfs:label": "previousItem",
"schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
+ "@id": "schema:ListItem"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:ListItem"
+ }
+ },
+ {
+ "@id": "schema:AutoRental",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A car rental business.",
+ "rdfs:label": "AutoRental",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:colleague",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A colleague of the person.",
+ "rdfs:label": "colleague",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Observation"
- },
- {
- "@id": "schema:WebContent"
+ "@id": "schema:Person"
},
{
"@id": "schema:URL"
- },
- {
- "@id": "schema:Dataset"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:DigitalFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "DigitalFormat.",
+ "rdfs:label": "DigitalFormat",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:operatingSystem",
+ "@id": "schema:OfferItemCondition",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A list of possible conditions for the item.",
+ "rdfs:label": "OfferItemCondition",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:exerciseCourse",
"@type": "rdf:Property",
- "rdfs:comment": "Operating systems supported (Windows 7, OSX 10.6, Android 1.6).",
- "rdfs:label": "operatingSystem",
+ "rdfs:comment": "A sub property of location. The course where this action was taken.",
+ "rdfs:label": "exerciseCourse",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:ExerciseAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:jobLocation",
+ "@id": "schema:game",
"@type": "rdf:Property",
- "rdfs:comment": "A (typically single) geographic location associated with the job position.",
- "rdfs:label": "jobLocation",
+ "rdfs:comment": "Video game which is played on this server.",
+ "rdfs:label": "game",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:GameServer"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:gameServer"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:VideoGame"
}
},
{
- "@id": "schema:hasDefinedTerm",
+ "@id": "schema:roofLoad",
"@type": "rdf:Property",
- "rdfs:comment": "A Defined Term contained in this term set.",
- "rdfs:label": "hasDefinedTerm",
+ "rdfs:comment": "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "roofLoad",
"schema:domainIncludes": [
{
- "@id": "schema:Taxon"
+ "@id": "schema:Car"
},
{
- "@id": "schema:DefinedTermSet"
+ "@id": "schema:BusOrCoach"
}
],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://auto.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:DefinedTerm"
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
- }
- },
- {
- "@id": "schema:GameServerStatus",
- "@type": "rdfs:Class",
- "rdfs:comment": "Status of a game server.",
- "rdfs:label": "GameServerStatus",
- "rdfs:subClassOf": {
- "@id": "schema:StatusEnumeration"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:numberOfEpisodes",
+ "@id": "schema:totalPaymentDue",
"@type": "rdf:Property",
- "rdfs:comment": "The number of episodes in this season or series.",
- "rdfs:label": "numberOfEpisodes",
- "schema:domainIncludes": [
- {
- "@id": "schema:TVSeries"
- },
- {
- "@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:RadioSeries"
- },
- {
- "@id": "schema:CreativeWorkSeason"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- }
- },
- {
- "@id": "schema:HealthClub",
- "@type": "rdfs:Class",
- "rdfs:comment": "A health club.",
- "rdfs:label": "HealthClub",
- "rdfs:subClassOf": [
+ "rdfs:comment": "The total amount due.",
+ "rdfs:label": "totalPaymentDue",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:SportsActivityLocation"
+ "@id": "schema:MonetaryAmount"
},
{
- "@id": "schema:HealthAndBeautyBusiness"
+ "@id": "schema:PriceSpecification"
}
]
},
{
- "@id": "schema:OpenTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "A trial design in which the researcher knows the full details of the treatment, and so does the patient.",
- "rdfs:label": "OpenTrial",
+ "@id": "schema:emissionsCO2",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\".",
+ "rdfs:label": "emissionsCO2",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:ReservationCancelled",
- "@type": "schema:ReservationStatusType",
- "rdfs:comment": "The status for a previously confirmed reservation that is now cancelled.",
- "rdfs:label": "ReservationCancelled"
- },
- {
- "@id": "schema:Physiotherapy",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery..",
- "rdfs:label": "Physiotherapy",
+ "@id": "schema:Accommodation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Accommodation",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:Place"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:honorificSuffix",
+ "@id": "schema:textValue",
"@type": "rdf:Property",
- "rdfs:comment": "An honorific suffix following a Person's name such as M.D. /PhD/MSCSW.",
- "rdfs:label": "honorificSuffix",
+ "rdfs:comment": "Text value being annotated.",
+ "rdfs:label": "textValue",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:PronounceableText"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
- }
- },
- {
- "@id": "schema:transFatContent",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of grams of trans fat.",
- "rdfs:label": "transFatContent",
- "schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
},
- "schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
}
},
{
- "@id": "schema:RejectAction",
+ "@id": "schema:InviteAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n* [[AcceptAction]]: The antonym of RejectAction.",
- "rdfs:label": "RejectAction",
+ "rdfs:comment": "The act of asking someone to attend an event. Reciprocal of RsvpAction.",
+ "rdfs:label": "InviteAction",
"rdfs:subClassOf": {
- "@id": "schema:AllocateAction"
+ "@id": "schema:CommunicateAction"
}
},
{
- "@id": "schema:publishingPrinciples",
- "@type": "rdf:Property",
- "rdfs:comment": "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n",
- "rdfs:label": "publishingPrinciples",
- "schema:domainIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ]
- },
- {
- "@id": "schema:videoQuality",
+ "@id": "schema:potentialUse",
"@type": "rdf:Property",
- "rdfs:comment": "The quality of the video.",
- "rdfs:label": "videoQuality",
- "schema:domainIncludes": {
- "@id": "schema:VideoObject"
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:hasMenuItem",
- "@type": "rdf:Property",
- "rdfs:comment": "A food or drink item contained in a menu or menu section.",
- "rdfs:label": "hasMenuItem",
+ "rdfs:comment": "Intended use of the BioChemEntity by humans.",
+ "rdfs:label": "potentialUse",
"schema:domainIncludes": [
{
- "@id": "schema:Menu"
+ "@id": "schema:ChemicalSubstance"
},
{
- "@id": "schema:MenuSection"
+ "@id": "schema:MolecularEntity"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:MenuItem"
+ "@id": "schema:DefinedTerm"
}
},
{
- "@id": "schema:busNumber",
+ "@id": "schema:tributary",
"@type": "rdf:Property",
- "rdfs:comment": "The unique identifier for the bus.",
- "rdfs:label": "busNumber",
+ "rdfs:comment": "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.",
+ "rdfs:label": "tributary",
"schema:domainIncludes": {
- "@id": "schema:BusTrip"
+ "@id": "schema:Vein"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:TrainReservation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A reservation for train travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
- "rdfs:label": "TrainReservation",
- "rdfs:subClassOf": {
- "@id": "schema:Reservation"
+ "@id": "schema:AnatomicalStructure"
}
},
{
- "@id": "schema:GovernmentBuilding",
+ "@id": "schema:PodcastSeries",
"@type": "rdfs:Class",
- "rdfs:comment": "A government building.",
- "rdfs:label": "GovernmentBuilding",
+ "rdfs:comment": "A podcast is an episodic series of digital audio or video files which a user can download and listen to.",
+ "rdfs:label": "PodcastSeries",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:CreativeWorkSeries"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
}
},
{
- "@id": "schema:XPathType",
+ "@id": "schema:SizeSpecification",
"@type": "rdfs:Class",
- "rdfs:comment": "Text representing an XPath (typically but not necessarily version 1.0).",
- "rdfs:label": "XPathType",
+ "rdfs:comment": "Size related properties of a product, typically a size code ([[name]]) and optionally a [[sizeSystem]], [[sizeGroup]], and product measurements ([[hasMeasurement]]). In addition, the intended audience can be defined through [[suggestedAge]], [[suggestedGender]], and suggested body measurements ([[suggestedMeasurement]]).",
+ "rdfs:label": "SizeSpecification",
"rdfs:subClassOf": {
- "@id": "schema:Text"
+ "@id": "schema:QualitativeValue"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1672"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:discountCurrency",
+ "@id": "schema:photos",
"@type": "rdf:Property",
- "rdfs:comment": "The currency of the discount.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".",
- "rdfs:label": "discountCurrency",
+ "rdfs:comment": "Photographs of this place.",
+ "rdfs:label": "photos",
"schema:domainIncludes": {
- "@id": "schema:Order"
+ "@id": "schema:Place"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:Photograph"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:photo"
}
},
{
- "@id": "schema:isLiveBroadcast",
- "@type": "rdf:Property",
- "rdfs:comment": "True if the broadcast is of a live event.",
- "rdfs:label": "isLiveBroadcast",
- "schema:domainIncludes": {
- "@id": "schema:BroadcastEvent"
+ "@id": "schema:HealthTopicContent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "[[HealthTopicContent]] is [[WebContent]] that is about some aspect of a health topic, e.g. a condition, its symptoms or treatments. Such content may be comprised of several parts or sections and use different types of media. Multiple instances of [[WebContent]] (and hence [[HealthTopicContent]]) can be related using [[hasPart]] / [[isPartOf]] where there is some kind of content hierarchy, and their content described with [[about]] and [[mentions]] e.g. building upon the existing [[MedicalCondition]] vocabulary.\n ",
+ "rdfs:label": "HealthTopicContent",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebContent"
},
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:modifiedTime",
+ "@id": "schema:publisher",
"@type": "rdf:Property",
- "rdfs:comment": "The date and time the reservation was modified.",
- "rdfs:label": "modifiedTime",
+ "rdfs:comment": "The publisher of the creative work.",
+ "rdfs:label": "publisher",
"schema:domainIncludes": {
- "@id": "schema:Reservation"
+ "@id": "schema:CreativeWork"
},
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
},
{
- "@id": "schema:MedicalRiskEstimator",
+ "@id": "schema:CriticReview",
"@type": "rdfs:Class",
- "rdfs:comment": "Any rule set or interactive tool for estimating the risk of developing a complication or condition.",
- "rdfs:label": "MedicalRiskEstimator",
+ "rdfs:comment": "A [[CriticReview]] is a more specialized form of Review written or published by a source that is recognized for its reviewing activities. These can include online columns, travel and food guides, TV and radio shows, blogs and other independent Web sites. [[CriticReview]]s are typically more in-depth and professionally written. For simpler, casually written user/visitor/viewer/customer reviews, it is more appropriate to use the [[UserReview]] type. Review aggregator sites such as Metacritic already separate out the site's user reviews from selected critic reviews that originate from third-party sources.",
+ "rdfs:label": "CriticReview",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:Review"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
}
},
{
- "@id": "schema:layoutImage",
- "@type": "rdf:Property",
- "rdfs:comment": "A schematic image showing the floorplan layout.",
- "rdfs:label": "layoutImage",
- "rdfs:subPropertyOf": {
- "@id": "schema:image"
- },
- "schema:domainIncludes": {
- "@id": "schema:FloorPlan"
+ "@id": "schema:CleaningFee",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the cleaning fee part of the total price for an offered product, for example a vacation rental.",
+ "rdfs:label": "CleaningFee",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ }
+ },
+ {
+ "@id": "schema:sport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A type of sport (e.g. Baseball).",
+ "rdfs:label": "sport",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SportsOrganization"
+ },
+ {
+ "@id": "schema:SportsEvent"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Text"
},
{
- "@id": "schema:ImageObject"
+ "@id": "schema:URL"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2690"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1951"
}
},
{
- "@id": "schema:EventAttendanceModeEnumeration",
+ "@id": "schema:Class",
"@type": "rdfs:Class",
- "rdfs:comment": "An EventAttendanceModeEnumeration value is one of potentially several modes of organising an event, relating to whether it is online or offline.",
- "rdfs:label": "EventAttendanceModeEnumeration",
+ "owl:equivalentClass": {
+ "@id": "rdfs:Class"
+ },
+ "rdfs:comment": "A class, also often called a 'Type'; equivalent to rdfs:Class.",
+ "rdfs:label": "Class",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Intangible"
},
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Aquarium",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Aquarium.",
+ "rdfs:label": "Aquarium",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemIT",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Italian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemIT",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:smiles",
+ "@id": "schema:isResizable",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/MolecularEntity"
- },
- "rdfs:comment": "A specification in form of a line notation for describing the structure of chemical species using short ASCII strings. Double bond stereochemistry \\ indicators may need to be escaped in the string in formats where the backslash is an escape character.",
- "rdfs:label": "smiles",
- "rdfs:subPropertyOf": {
- "@id": "schema:hasRepresentation"
- },
+ "rdfs:comment": "Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality.",
+ "rdfs:label": "isResizable",
"schema:domainIncludes": {
- "@id": "schema:MolecularEntity"
+ "@id": "schema:3DModel"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2394"
}
},
{
- "@id": "schema:cvdNumBeds",
+ "@id": "schema:associatedReview",
"@type": "rdf:Property",
- "rdfs:comment": "numbeds - HOSPITAL INPATIENT BEDS: Inpatient beds, including all staffed, licensed, and overflow (surge) beds used for inpatients.",
- "rdfs:label": "cvdNumBeds",
+ "rdfs:comment": "An associated [[Review]].",
+ "rdfs:label": "associatedReview",
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
+ "@id": "schema:Review"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:Review"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:Action",
- "@type": "rdfs:Class",
- "rdfs:comment": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).",
- "rdfs:label": "Action",
- "rdfs:subClassOf": {
- "@id": "schema:Thing"
+ "@id": "schema:targetName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The name of a node in an established educational framework.",
+ "rdfs:label": "targetName",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:AMRadioChannel",
+ "@id": "schema:PublicSwimmingPool",
"@type": "rdfs:Class",
- "rdfs:comment": "A radio channel that uses AM.",
- "rdfs:label": "AMRadioChannel",
+ "rdfs:comment": "A public swimming pool.",
+ "rdfs:label": "PublicSwimmingPool",
"rdfs:subClassOf": {
- "@id": "schema:RadioChannel"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ "@id": "schema:SportsActivityLocation"
}
},
{
- "@id": "schema:isicV4",
- "@type": "rdf:Property",
- "rdfs:comment": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
- "rdfs:label": "isicV4",
- "schema:domainIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:Organization"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:Nonprofit501c12",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c12: Non-profit type referring to Benevolent Life Insurance Associations, Mutual Ditch or Irrigation Companies, Mutual or Cooperative Telephone Companies.",
- "rdfs:label": "Nonprofit501c12",
+ "@id": "schema:WearableSizeGroupPlus",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Plus\" for wearables.",
+ "rdfs:label": "WearableSizeGroupPlus",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:Vein",
+ "@id": "schema:PodcastEpisode",
"@type": "rdfs:Class",
- "rdfs:comment": "A type of blood vessel that specifically carries blood to the heart.",
- "rdfs:label": "Vein",
+ "rdfs:comment": "A single episode of a podcast series.",
+ "rdfs:label": "PodcastEpisode",
"rdfs:subClassOf": {
- "@id": "schema:Vessel"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:ticketToken",
- "@type": "rdf:Property",
- "rdfs:comment": "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.",
- "rdfs:label": "ticketToken",
- "schema:domainIncludes": {
- "@id": "schema:Ticket"
+ "@id": "schema:Episode"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ]
- },
- {
- "@id": "schema:PaidLeave",
- "@type": "schema:GovernmentBenefitsType",
- "rdfs:comment": "PaidLeave: this is a benefit for paid leave.",
- "rdfs:label": "PaidLeave",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
}
},
{
- "@id": "schema:LiveBlogPosting",
+ "@id": "schema:Dataset",
"@type": "rdfs:Class",
- "rdfs:comment": "A [[LiveBlogPosting]] is a [[BlogPosting]] intended to provide a rolling textual coverage of an ongoing event through continuous updates.",
- "rdfs:label": "LiveBlogPosting",
+ "owl:equivalentClass": [
+ {
+ "@id": "dcmitype:Dataset"
+ },
+ {
+ "@id": "dcat:Dataset"
+ },
+ {
+ "@id": "void:Dataset"
+ }
+ ],
+ "rdfs:comment": "A body of structured information describing some topic(s) of interest.",
+ "rdfs:label": "Dataset",
"rdfs:subClassOf": {
- "@id": "schema:BlogPosting"
- }
- },
- {
- "@id": "schema:SalePrice",
- "@type": "schema:PriceTypeEnumeration",
- "rdfs:comment": "Represents a sale price (usually active for a limited period) of an offered product.",
- "rdfs:label": "SalePrice",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:CreativeWork"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
}
},
{
- "@id": "schema:engineType",
+ "@id": "schema:breastfeedingWarning",
"@type": "rdf:Property",
- "rdfs:comment": "The type of engine or engines powering the vehicle.",
- "rdfs:label": "engineType",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.",
+ "rdfs:label": "breastfeedingWarning",
"schema:domainIncludes": {
- "@id": "schema:EngineSpecification"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:QualitativeValue"
- },
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:LikeAction",
+ "@id": "schema:Conversation",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.",
- "rdfs:label": "LikeAction",
+ "rdfs:comment": "One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties.",
+ "rdfs:label": "Conversation",
"rdfs:subClassOf": {
- "@id": "schema:ReactAction"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:LegalService",
- "@type": "rdfs:Class",
- "rdfs:comment": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).",
- "rdfs:label": "LegalService",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:discountCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency of the discount.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "discountCurrency",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:branch",
- "@type": "rdf:Property",
- "rdfs:comment": "The branches that delineate from the nerve bundle. Not to be confused with [[branchOf]].",
- "rdfs:label": "branch",
- "schema:domainIncludes": {
- "@id": "schema:Nerve"
+ "@id": "schema:CovidTestingFacility",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus\n disease is available. If the facility is being made available from an established [[Pharmacy]], [[Hotel]], or other\n non-medical organization, multiple types can be listed. This makes it easier to re-use existing schema.org information\n about that place, e.g. contact info, address, opening hours. Note that in an emergency, such information may not always be reliable.\n ",
+ "rdfs:label": "CovidTestingFacility",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalClinic"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "https://pending.schema.org"
},
- "schema:supersededBy": {
- "@id": "schema:arterialBranch"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
}
},
{
- "@id": "schema:longitude",
+ "@id": "schema:keywords",
"@type": "rdf:Property",
- "rdfs:comment": "The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).",
- "rdfs:label": "longitude",
+ "rdfs:comment": "Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.",
+ "rdfs:label": "keywords",
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:GeoCoordinates"
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Place"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Number"
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
},
{
"@id": "schema:Text"
@@ -10130,948 +10162,801 @@
]
},
{
- "@id": "schema:comment",
+ "@id": "schema:regionDrained",
"@type": "rdf:Property",
- "rdfs:comment": "Comments, typically from users.",
- "rdfs:label": "comment",
+ "rdfs:comment": "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.",
+ "rdfs:label": "regionDrained",
"schema:domainIncludes": [
{
- "@id": "schema:RsvpAction"
+ "@id": "schema:Vein"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:LymphaticVessel"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Comment"
- }
- },
- {
- "@id": "schema:MusicEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: Music event.",
- "rdfs:label": "MusicEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
- }
- },
- {
- "@id": "schema:smokingAllowed",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.",
- "rdfs:label": "smokingAllowed",
- "schema:domainIncludes": {
- "@id": "schema:Place"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
},
{
- "@id": "schema:url",
+ "@id": "schema:exceptDate",
"@type": "rdf:Property",
- "rdfs:comment": "URL of the item.",
- "rdfs:label": "url",
+ "rdfs:comment": "Defines a [[Date]] or [[DateTime]] during which a scheduled [[Event]] will not take place. The property allows exceptions to\n a [[Schedule]] to be specified. If an exception is specified as a [[DateTime]] then only the event that would have started at that specific date and time\n should be excluded from the schedule. If an exception is specified as a [[Date]] then any event that is scheduled for that 24 hour period should be\n excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.",
+ "rdfs:label": "exceptDate",
"schema:domainIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Schedule"
},
- "schema:rangeIncludes": {
- "@id": "schema:URL"
- }
- },
- {
- "@id": "schema:eligibleTransactionVolume",
- "@type": "rdf:Property",
- "rdfs:comment": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.",
- "rdfs:label": "eligibleTransactionVolume",
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Demand"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:PriceSpecification"
+ "@id": "schema:Date"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:PriceSpecification"
- },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
}
},
{
- "@id": "schema:study",
+ "@id": "schema:relatedAnatomy",
"@type": "rdf:Property",
- "rdfs:comment": "A medical study or trial related to this entity.",
- "rdfs:label": "study",
+ "rdfs:comment": "Anatomical systems or structures that relate to the superficial anatomy.",
+ "rdfs:label": "relatedAnatomy",
"schema:domainIncludes": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:SuperficialAnatomy"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalStudy"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
},
{
- "@id": "schema:isbn",
+ "@id": "schema:noBylinesPolicy",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/ontology/bibo/isbn"
- },
- "rdfs:comment": "The ISBN of the book.",
- "rdfs:label": "isbn",
+ "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines.",
+ "rdfs:label": "noBylinesPolicy",
"rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "@id": "schema:publishingPrinciples"
},
"schema:domainIncludes": {
- "@id": "schema:Book"
+ "@id": "schema:NewsMediaOrganization"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
},
{
- "@id": "schema:birthPlace",
- "@type": "rdf:Property",
- "rdfs:comment": "The place where the person was born.",
- "rdfs:label": "birthPlace",
- "schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:OutOfStock",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is out of stock.",
+ "rdfs:label": "OutOfStock"
+ },
+ {
+ "@id": "schema:MedicalIntangible",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.",
+ "rdfs:label": "MedicalIntangible",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
},
- "schema:rangeIncludes": {
- "@id": "schema:Place"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:softwareAddOn",
+ "@id": "schema:serverStatus",
"@type": "rdf:Property",
- "rdfs:comment": "Additional content for a software application.",
- "rdfs:label": "softwareAddOn",
+ "rdfs:comment": "Status of a game server.",
+ "rdfs:label": "serverStatus",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:GameServer"
},
"schema:rangeIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:GameServerStatus"
}
},
{
- "@id": "schema:artEdition",
+ "@id": "schema:variableMeasured",
"@type": "rdf:Property",
- "rdfs:comment": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").",
- "rdfs:label": "artEdition",
+ "rdfs:comment": "The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.",
+ "rdfs:label": "variableMeasured",
"schema:domainIncludes": {
- "@id": "schema:VisualArtwork"
+ "@id": "schema:Dataset"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Integer"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Text"
+ "@id": "schema:PropertyValue"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1083"
+ }
},
{
- "@id": "schema:codeValue",
- "@type": "rdf:Property",
- "rdfs:comment": "A short textual code that uniquely identifies the value.",
- "rdfs:label": "codeValue",
- "rdfs:subPropertyOf": {
- "@id": "schema:termCode"
+ "@id": "schema:PostalCodeRangeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates a range of postal codes, usually defined as the set of valid codes between [[postalCodeBegin]] and [[postalCodeEnd]], inclusively.",
+ "rdfs:label": "PostalCodeRangeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:MedicalCode"
- },
- {
- "@id": "schema:CategoryCode"
- }
- ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:parent",
+ "@id": "schema:variantCover",
"@type": "rdf:Property",
- "rdfs:comment": "A parent of this person.",
- "rdfs:label": "parent",
+ "rdfs:comment": "A description of the variant cover\n \tfor the issue, if the issue is a variant printing. For example, \"Bryan Hitch\n \tVariant Cover\" or \"2nd Printing Variant\".",
+ "rdfs:label": "variantCover",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:ComicIssue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:ReturnLabelSourceEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerates several types of return labels for product returns.",
- "rdfs:label": "ReturnLabelSourceEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
+ "@id": "schema:Nonprofit501c18",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c18: Non-profit type referring to Employee Funded Pension Trust (created before 25 June 1959).",
+ "rdfs:label": "Nonprofit501c18",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:SkiResort",
- "@type": "rdfs:Class",
- "rdfs:comment": "A ski resort.",
- "rdfs:label": "SkiResort",
- "rdfs:subClassOf": [
- {
- "@id": "schema:SportsActivityLocation"
- },
- {
- "@id": "schema:Resort"
- }
- ]
- },
- {
- "@id": "schema:expectedPrognosis",
+ "@id": "schema:honorificSuffix",
"@type": "rdf:Property",
- "rdfs:comment": "The likely outcome in either the short term or long term of the medical condition.",
- "rdfs:label": "expectedPrognosis",
+ "rdfs:comment": "An honorific suffix following a Person's name such as M.D./PhD/MSCSW.",
+ "rdfs:label": "honorificSuffix",
"schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:itinerary",
+ "@id": "schema:assesses",
"@type": "rdf:Property",
- "rdfs:comment": "Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples).",
- "rdfs:label": "itinerary",
- "schema:domainIncludes": {
- "@id": "schema:Trip"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The item being described is intended to assess the competency or learning outcome defined by the referenced term.",
+ "rdfs:label": "assesses",
+ "schema:domainIncludes": [
{
- "@id": "schema:ItemList"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Place"
- }
- ],
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ "@id": "schema:EducationEvent"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ "@id": "schema:LearningResource"
}
- ]
- },
- {
- "@id": "schema:audio",
- "@type": "rdf:Property",
- "rdfs:comment": "An embedded audio object.",
- "rdfs:label": "audio",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Clip"
- },
- {
- "@id": "schema:AudioObject"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:MusicRecording"
+ "@id": "schema:Text"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2420"
- }
- },
- {
- "@id": "schema:DrinkAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of swallowing liquids.",
- "rdfs:label": "DrinkAction",
- "rdfs:subClassOf": {
- "@id": "schema:ConsumeAction"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2427"
}
},
{
- "@id": "schema:loanPaymentAmount",
+ "@id": "schema:masthead",
"@type": "rdf:Property",
- "rdfs:comment": "The amount of money to pay in a single payment.",
- "rdfs:label": "loanPaymentAmount",
+ "rdfs:comment": "For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.",
+ "rdfs:label": "masthead",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
"schema:domainIncludes": {
- "@id": "schema:RepaymentSpecification"
+ "@id": "schema:NewsMediaOrganization"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:URL"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
}
]
},
{
- "@id": "schema:MedicalIntangible",
- "@type": "rdfs:Class",
- "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.",
- "rdfs:label": "MedicalIntangible",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:vehicleInteriorColor",
+ "@id": "schema:courseWorkload",
"@type": "rdf:Property",
- "rdfs:comment": "The color or color combination of the interior of the vehicle.",
- "rdfs:label": "vehicleInteriorColor",
+ "rdfs:comment": "The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, \"2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week\".",
+ "rdfs:label": "courseWorkload",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:CourseInstance"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1909"
}
},
{
- "@id": "schema:Nursing",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A health profession of a person formally educated and trained in the care of the sick or infirm person.",
- "rdfs:label": "Nursing",
+ "@id": "schema:WantAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a desire about the object. An agent wants an object.",
+ "rdfs:label": "WantAction",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:ReactAction"
}
},
{
- "@id": "schema:PaymentCard",
- "@type": "rdfs:Class",
- "rdfs:comment": "A payment method using a credit, debit, store or other card to associate the payment with an account.",
- "rdfs:label": "PaymentCard",
- "rdfs:subClassOf": [
- {
- "@id": "schema:PaymentMethod"
- },
- {
- "@id": "schema:FinancialProduct"
- }
- ],
+ "@id": "schema:MixtapeAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "MixtapeAlbum.",
+ "rdfs:label": "MixtapeAlbum",
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:ProfilePage",
- "@type": "rdfs:Class",
- "rdfs:comment": "Web page type: Profile page.",
- "rdfs:label": "ProfilePage",
- "rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:Nonprofit501c20",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations.",
+ "rdfs:label": "Nonprofit501c20",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:DayOfWeek",
- "@type": "rdfs:Class",
- "rdfs:comment": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) were used (for [[Monday]], [[Tuesday]], [[Wednesday]], [[Thursday]], [[Friday]], [[Saturday]], [[Sunday]] plus a special entry for [[PublicHolidays]]); these have now been integrated directly into schema.org.\n ",
- "rdfs:label": "DayOfWeek",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Nonprofit501c15",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations.",
+ "rdfs:label": "Nonprofit501c15",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:duration",
+ "@id": "schema:ownedFrom",
"@type": "rdf:Property",
- "rdfs:comment": "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
- "rdfs:label": "duration",
- "schema:domainIncludes": [
- {
- "@id": "schema:Audiobook"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:Schedule"
- },
- {
- "@id": "schema:Episode"
- },
- {
- "@id": "schema:Movie"
- },
- {
- "@id": "schema:MediaObject"
- },
- {
- "@id": "schema:MusicRelease"
- },
- {
- "@id": "schema:QuantitativeValueDistribution"
- },
- {
- "@id": "schema:MusicRecording"
- }
- ],
+ "rdfs:comment": "The date and time of obtaining the product.",
+ "rdfs:label": "ownedFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:OwnershipInfo"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Duration"
+ "@id": "schema:DateTime"
},
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
- }
- ]
- },
- {
- "@id": "schema:Organization",
- "@type": "rdfs:Class",
- "rdfs:comment": "An organization such as a school, NGO, corporation, club, etc.",
- "rdfs:label": "Organization",
- "rdfs:subClassOf": {
- "@id": "schema:Thing"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:MusicRelease",
- "@type": "rdfs:Class",
- "rdfs:comment": "A MusicRelease is a specific release of a music album.",
- "rdfs:label": "MusicRelease",
- "rdfs:subClassOf": {
- "@id": "schema:MusicPlaylist"
+ "@id": "schema:recognizedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.",
+ "rdfs:label": "recognizedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
},
{
- "@id": "schema:membershipPointsEarned",
+ "@id": "schema:meetsEmissionStandard",
"@type": "rdf:Property",
- "rdfs:comment": "The number of membership points earned by the member. If necessary, the unitText can be used to express the units the points are issued in. (e.g. stars, miles, etc.)",
- "rdfs:label": "membershipPointsEarned",
+ "rdfs:comment": "Indicates that the vehicle meets the respective emission standard.",
+ "rdfs:label": "meetsEmissionStandard",
"schema:domainIncludes": {
- "@id": "schema:ProgramMembership"
+ "@id": "schema:Vehicle"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://auto.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Number"
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2085"
- }
- },
- {
- "@id": "schema:Painting",
- "@type": "rdfs:Class",
- "rdfs:comment": "A painting.",
- "rdfs:label": "Painting",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:EUEnergyEfficiencyCategoryA2Plus",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryA2Plus",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:monoisotopicMolecularWeight",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "The monoisotopic mass is the sum of the masses of the atoms in a molecule using the unbound, ground-state, rest mass of the principal (most abundant) isotope for each element instead of the isotopic average mass. Please include the units in the form '<Number> <unit>', for example '770.230488 g/mol' or as '<QuantitativeValue>.",
+ "rdfs:label": "monoisotopicMolecularWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
- }
- },
- {
- "@id": "schema:MixedEventAttendanceMode",
- "@type": "schema:EventAttendanceModeEnumeration",
- "rdfs:comment": "MixedEventAttendanceMode - an event that is conducted as a combination of both offline and online modes.",
- "rdfs:label": "MixedEventAttendanceMode",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
- }
- },
- {
- "@id": "schema:video",
- "@type": "rdf:Property",
- "rdfs:comment": "An embedded video object.",
- "rdfs:label": "video",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:VideoObject"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Clip"
+ "@id": "schema:QuantitativeValue"
}
]
},
{
- "@id": "schema:BackOrder",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item is available on back order.",
- "rdfs:label": "BackOrder"
+ "@id": "schema:GraphicNovel",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.",
+ "rdfs:label": "GraphicNovel",
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
+ }
},
{
- "@id": "schema:ArriveAction",
+ "@id": "schema:TaxiReservation",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.",
- "rdfs:label": "ArriveAction",
+ "rdfs:comment": "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "TaxiReservation",
"rdfs:subClassOf": {
- "@id": "schema:MoveAction"
+ "@id": "schema:Reservation"
}
},
{
- "@id": "schema:itemListElement",
+ "@id": "schema:positiveNotes",
"@type": "rdf:Property",
- "rdfs:comment": "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\\n\\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\\n\\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.",
- "rdfs:label": "itemListElement",
- "schema:domainIncludes": {
- "@id": "schema:ItemList"
+ "rdfs:comment": "Provides positive considerations regarding something, for example product highlights or (alongside [[negativeNotes]]) pro/con lists for reviews.\n\nIn the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described.\n\nThe property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most positive is at the beginning of the list).",
+ "rdfs:label": "positiveNotes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Review"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
"@id": "schema:Text"
},
{
- "@id": "schema:Thing"
+ "@id": "schema:WebContent"
},
{
"@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:ItemList"
}
- ]
- },
- {
- "@id": "schema:billingPeriod",
- "@type": "rdf:Property",
- "rdfs:comment": "The time interval used to compute the invoice.",
- "rdfs:label": "billingPeriod",
- "schema:domainIncludes": {
- "@id": "schema:Invoice"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Duration"
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2832"
}
},
{
- "@id": "schema:CleaningFee",
- "@type": "schema:PriceComponentTypeEnumeration",
- "rdfs:comment": "Represents the cleaning fee part of the total price for an offered product, for example a vacation rental.",
- "rdfs:label": "CleaningFee",
+ "@id": "schema:Bacteria",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic bacteria that cause bacterial infection.",
+ "rdfs:label": "Bacteria",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Pharmacy",
+ "@id": "schema:NightClub",
"@type": "rdfs:Class",
- "rdfs:comment": "A pharmacy or drugstore.",
- "rdfs:label": "Pharmacy",
- "rdfs:subClassOf": [
- {
- "@id": "schema:MedicalBusiness"
- },
- {
- "@id": "schema:MedicalOrganization"
- }
- ]
+ "rdfs:comment": "A nightclub or discotheque.",
+ "rdfs:label": "NightClub",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
},
{
- "@id": "schema:sourceOrganization",
+ "@id": "schema:circle",
"@type": "rdf:Property",
- "rdfs:comment": "The Organization on whose behalf the creator was working.",
- "rdfs:label": "sourceOrganization",
+ "rdfs:comment": "A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.",
+ "rdfs:label": "circle",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:GeoShape"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:NightClub",
+ "@id": "schema:ScheduleAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A nightclub or discotheque.",
- "rdfs:label": "NightClub",
+ "rdfs:comment": "Scheduling future actions, events, or tasks.\\n\\nRelated actions:\\n\\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.",
+ "rdfs:label": "ScheduleAction",
"rdfs:subClassOf": {
- "@id": "schema:EntertainmentBusiness"
- }
- },
- {
- "@id": "schema:Nonprofit501k",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501k: Non-profit type referring to Child Care Organizations.",
- "rdfs:label": "Nonprofit501k",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "schema:PlanAction"
}
},
{
- "@id": "schema:Nonprofit501c17",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts.",
- "rdfs:label": "Nonprofit501c17",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "schema:ScholarlyArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A scholarly article.",
+ "rdfs:label": "ScholarlyArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
}
},
{
- "@id": "schema:travelBans",
+ "@id": "schema:benefitsSummaryUrl",
"@type": "rdf:Property",
- "rdfs:comment": "Information about travel bans, e.g. in the context of a pandemic.",
- "rdfs:label": "travelBans",
+ "rdfs:comment": "The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation.",
+ "rdfs:label": "benefitsSummaryUrl",
"schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
+ "@id": "schema:HealthInsurancePlan"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:WebContent"
- },
- {
- "@id": "schema:URL"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
- }
- },
- {
- "@id": "schema:OwnershipInfo",
- "@type": "rdfs:Class",
- "rdfs:comment": "A structured value providing information about when a certain organization or person owned a certain product.",
- "rdfs:label": "OwnershipInfo",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:studyDesign",
+ "@id": "schema:wordCount",
"@type": "rdf:Property",
- "rdfs:comment": "Specifics about the observational study design (enumerated).",
- "rdfs:label": "studyDesign",
+ "rdfs:comment": "The number of words in the text of the Article.",
+ "rdfs:label": "wordCount",
"schema:domainIncludes": {
- "@id": "schema:MedicalObservationalStudy"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Article"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalObservationalStudyDesign"
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:distance",
+ "@id": "schema:thumbnail",
"@type": "rdf:Property",
- "rdfs:comment": "The distance travelled, e.g. exercising or travelling.",
- "rdfs:label": "distance",
+ "rdfs:comment": "Thumbnail image for an image or video.",
+ "rdfs:label": "thumbnail",
"schema:domainIncludes": [
{
- "@id": "schema:TravelAction"
+ "@id": "schema:ImageObject"
},
{
- "@id": "schema:ExerciseAction"
+ "@id": "schema:VideoObject"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Distance"
- }
- },
- {
- "@id": "schema:MonetaryGrant",
- "@type": "rdfs:Class",
- "rdfs:comment": "A monetary grant.",
- "rdfs:label": "MonetaryGrant",
- "rdfs:subClassOf": {
- "@id": "schema:Grant"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/383"
- },
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
- }
- ]
- },
- {
- "@id": "schema:ComicSeries",
- "@type": "rdfs:Class",
- "rdfs:comment": "A sequential publication of comic stories under a\n \tunifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n \tWanderer\".",
- "rdfs:label": "ComicSeries",
- "rdfs:subClassOf": {
- "@id": "schema:Periodical"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- }
- },
- {
- "@id": "schema:MediaObject",
- "@type": "rdfs:Class",
- "rdfs:comment": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).",
- "rdfs:label": "MediaObject",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:ImageObject"
}
},
{
- "@id": "schema:isGift",
+ "@id": "schema:accountId",
"@type": "rdf:Property",
- "rdfs:comment": "Was the offer accepted as a gift for someone other than the buyer.",
- "rdfs:label": "isGift",
+ "rdfs:comment": "The identifier for the account the payment will be applied to.",
+ "rdfs:label": "accountId",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
"schema:domainIncludes": {
- "@id": "schema:Order"
+ "@id": "schema:Invoice"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:streetAddress",
+ "@id": "schema:strengthValue",
"@type": "rdf:Property",
- "rdfs:comment": "The street address. For example, 1600 Amphitheatre Pkwy.",
- "rdfs:label": "streetAddress",
+ "rdfs:comment": "The value of an active ingredient's strength, e.g. 325.",
+ "rdfs:label": "strengthValue",
"schema:domainIncludes": {
- "@id": "schema:PostalAddress"
+ "@id": "schema:DrugStrength"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:costCategory",
+ "@id": "schema:tocEntry",
"@type": "rdf:Property",
- "rdfs:comment": "The category of cost, such as wholesale, retail, reimbursement cap, etc.",
- "rdfs:label": "costCategory",
+ "rdfs:comment": "Indicates a [[HyperTocEntry]] in a [[HyperToc]].",
+ "rdfs:label": "tocEntry",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
+ },
"schema:domainIncludes": {
- "@id": "schema:DrugCost"
+ "@id": "schema:HyperToc"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:DrugCostCategory"
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
}
},
{
- "@id": "schema:ImageObject",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.org/dc/dcmitype/Image"
+ "@id": "schema:acceptedAnswer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.",
+ "rdfs:label": "acceptedAnswer",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:suggestedAnswer"
},
- "rdfs:comment": "An image file.",
- "rdfs:label": "ImageObject",
- "rdfs:subClassOf": {
- "@id": "schema:MediaObject"
- }
- },
- {
- "@id": "schema:PaymentDue",
- "@type": "schema:PaymentStatusType",
- "rdfs:comment": "The payment is due, but still within an acceptable time to be received.",
- "rdfs:label": "PaymentDue"
- },
- {
- "@id": "schema:TaxiVehicleUsage",
- "@type": "schema:CarUsageType",
- "rdfs:comment": "Indicates the usage of the car as a taxi.",
- "rdfs:label": "TaxiVehicleUsage",
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "schema:domainIncludes": {
+ "@id": "schema:Question"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:Answer"
+ }
+ ]
},
{
- "@id": "schema:offersPrescriptionByMail",
+ "@id": "schema:healthcareReportingData",
"@type": "rdf:Property",
- "rdfs:comment": "Whether prescriptions can be delivered by mail.",
- "rdfs:label": "offersPrescriptionByMail",
+ "rdfs:comment": "Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].",
+ "rdfs:label": "healthcareReportingData",
"schema:domainIncludes": {
- "@id": "schema:HealthPlanFormulary"
+ "@id": "schema:Hospital"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CDCPMDRecord"
+ },
+ {
+ "@id": "schema:Dataset"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:colorist",
+ "@id": "schema:applicationCategory",
"@type": "rdf:Property",
- "rdfs:comment": "The individual who adds color to inked drawings.",
- "rdfs:label": "colorist",
- "schema:domainIncludes": [
- {
- "@id": "schema:VisualArtwork"
- },
+ "rdfs:comment": "Type of software application, e.g. 'Game, Multimedia'.",
+ "rdfs:label": "applicationCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:ComicIssue"
+ "@id": "schema:URL"
},
{
- "@id": "schema:ComicStory"
+ "@id": "schema:Text"
}
- ],
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ ]
+ },
+ {
+ "@id": "schema:BuddhistTemple",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Buddhist temple.",
+ "rdfs:label": "BuddhistTemple",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:reviewRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.",
+ "rdfs:label": "reviewRating",
+ "schema:domainIncludes": {
+ "@id": "schema:Review"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Rating"
}
},
{
- "@id": "schema:member",
- "@type": "rdf:Property",
- "rdfs:comment": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
- "rdfs:label": "member",
- "schema:domainIncludes": [
+ "@id": "schema:SatiricalArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized.",
+ "rdfs:label": "SatiricalArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:Organization"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
},
{
- "@id": "schema:ProgramMembership"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
}
- ],
- "schema:inverseOf": {
- "@id": "schema:memberOf"
+ ]
+ },
+ {
+ "@id": "schema:earlyPrepaymentPenalty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount to be paid as a penalty in the event of early payment of the loan.",
+ "rdfs:label": "earlyPrepaymentPenalty",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
},
- "schema:rangeIncludes": [
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
{
- "@id": "schema:Organization"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
},
{
- "@id": "schema:Person"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
}
]
},
{
- "@id": "schema:pregnancyCategory",
+ "@id": "schema:FoodEstablishment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food-related business.",
+ "rdfs:label": "FoodEstablishment",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:nationality",
"@type": "rdf:Property",
- "rdfs:comment": "Pregnancy category of this drug.",
- "rdfs:label": "pregnancyCategory",
+ "rdfs:comment": "Nationality of the person.",
+ "rdfs:label": "nationality",
"schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:DrugPregnancyCategory"
+ "@id": "schema:Country"
}
},
{
- "@id": "schema:CardiovascularExam",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Cardiovascular system assessment withclinical examination.",
- "rdfs:label": "CardiovascularExam",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:MarryAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of marrying a person.",
+ "rdfs:label": "MarryAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
}
},
{
- "@id": "schema:LeftHandDriving",
- "@type": "schema:SteeringPositionValue",
- "rdfs:comment": "The steering position is on the left side of the vehicle (viewed from the main direction of driving).",
- "rdfs:label": "LeftHandDriving",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:ProfilePage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Profile page.",
+ "rdfs:label": "ProfilePage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
}
},
{
- "@id": "schema:OrderInTransit",
- "@type": "schema:OrderStatus",
- "rdfs:comment": "OrderStatus representing that an order is in transit.",
- "rdfs:label": "OrderInTransit"
+ "@id": "schema:AmusementPark",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An amusement park.",
+ "rdfs:label": "AmusementPark",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
},
{
- "@id": "schema:inCodeSet",
+ "@id": "schema:titleEIDR",
"@type": "rdf:Property",
- "rdfs:comment": "A [[CategoryCodeSet]] that contains this category code.",
- "rdfs:label": "inCodeSet",
+ "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" has a titleEIDR of \"10.5240/7EC7-228A-510A-053E-CBB8-J\". This title (or work) may have several variants, which EIDR calls \"edits\". See [[editEIDR]].\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
+ "rdfs:label": "titleEIDR",
"rdfs:subPropertyOf": {
- "@id": "schema:inDefinedTermSet"
- },
- "schema:domainIncludes": {
- "@id": "schema:CategoryCode"
+ "@id": "schema:identifier"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:Movie"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -11080,1176 +10965,1254 @@
"@id": "schema:URL"
},
{
- "@id": "schema:CategoryCodeSet"
+ "@id": "schema:Text"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2469"
}
},
{
- "@id": "schema:discusses",
+ "@id": "schema:BowlingAlley",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bowling alley.",
+ "rdfs:label": "BowlingAlley",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:url",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies the CreativeWork associated with the UserComment.",
- "rdfs:label": "discusses",
+ "rdfs:comment": "URL of the item.",
+ "rdfs:label": "url",
"schema:domainIncludes": {
- "@id": "schema:UserComments"
+ "@id": "schema:Thing"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:MedicalTestPanel",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any collection of tests commonly ordered together.",
- "rdfs:label": "MedicalTestPanel",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalTest"
+ "@id": "schema:dosageForm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.",
+ "rdfs:label": "dosageForm",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:applicationSuite",
- "@type": "rdf:Property",
- "rdfs:comment": "The name of the application suite to which the application belongs (e.g. Excel belongs to Office).",
- "rdfs:label": "applicationSuite",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:WearableSizeSystemUS",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "United States size system for wearables.",
- "rdfs:label": "WearableSizeSystemUS",
+ "@id": "schema:Sunday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Saturday and Monday.",
+ "rdfs:label": "Sunday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q132"
+ }
+ },
+ {
+ "@id": "schema:ScreeningHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about how to screen or further filter a topic.",
+ "rdfs:label": "ScreeningHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:opens",
- "@type": "rdf:Property",
- "rdfs:comment": "The opening hour of the place or service on the given day(s) of the week.",
- "rdfs:label": "opens",
- "schema:domainIncludes": {
- "@id": "schema:OpeningHoursSpecification"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Time"
- },
+ "@id": "schema:PaymentCard",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A payment method using a credit, debit, store or other card to associate the payment with an account.",
+ "rdfs:label": "PaymentCard",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:PaymentMethod"
+ },
+ {
+ "@id": "schema:FinancialProduct"
+ }
+ ],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:DefinedTermSet",
- "@type": "rdfs:Class",
- "rdfs:comment": "A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.",
- "rdfs:label": "DefinedTermSet",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:affiliation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.",
+ "rdfs:label": "affiliation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:memberOf"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:HyperTocEntry",
- "@type": "rdfs:Class",
- "rdfs:comment": "A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]].",
- "rdfs:label": "HyperTocEntry",
+ "@id": "schema:RespiratoryTherapy",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).",
+ "rdfs:label": "RespiratoryTherapy",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:MedicalTherapy"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:availableTest",
+ "@id": "schema:inDefinedTermSet",
"@type": "rdf:Property",
- "rdfs:comment": "A diagnostic test or procedure offered by this lab.",
- "rdfs:label": "availableTest",
+ "rdfs:comment": "A [[DefinedTermSet]] that contains this term.",
+ "rdfs:label": "inDefinedTermSet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
"schema:domainIncludes": {
- "@id": "schema:DiagnosticLab"
+ "@id": "schema:DefinedTerm"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalTest"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTermSet"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:healthPlanCopay",
+ "@id": "schema:accountMinimumInflow",
"@type": "rdf:Property",
- "rdfs:comment": "Whether The copay amount.",
- "rdfs:label": "healthPlanCopay",
+ "rdfs:comment": "A minimum amount that has to be paid in every month.",
+ "rdfs:label": "accountMinimumInflow",
"schema:domainIncludes": {
- "@id": "schema:HealthPlanCostSharingSpecification"
+ "@id": "schema:BankAccount"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:PriceSpecification"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
- }
- },
- {
- "@id": "schema:toRecipient",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of recipient. The recipient who was directly sent the message.",
- "rdfs:label": "toRecipient",
- "rdfs:subPropertyOf": {
- "@id": "schema:recipient"
- },
- "schema:domainIncludes": {
- "@id": "schema:Message"
+ "@id": "schema:MonetaryAmount"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:ContactPoint"
- },
- {
- "@id": "schema:Organization"
- },
+ "schema:source": [
{
- "@id": "schema:Person"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
},
{
- "@id": "schema:Audience"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
]
},
{
- "@id": "schema:gender",
+ "@id": "schema:reviews",
"@type": "rdf:Property",
- "rdfs:comment": "Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/Male and https://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of \"Mixed\".",
- "rdfs:label": "gender",
+ "rdfs:comment": "Review of the item.",
+ "rdfs:label": "reviews",
"schema:domainIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Product"
},
{
- "@id": "schema:SportsTeam"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "@id": "schema:Offer"
+ },
{
- "@id": "schema:GenderType"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:Organization"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2341"
- }
- },
- {
- "@id": "schema:ratingCount",
- "@type": "rdf:Property",
- "rdfs:comment": "The count of total number of ratings.",
- "rdfs:label": "ratingCount",
- "schema:domainIncludes": {
- "@id": "schema:AggregateRating"
- },
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:Review"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:review"
}
},
{
- "@id": "schema:WatchAction",
+ "@id": "schema:DataFeed",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of consuming dynamic/moving visual content.",
- "rdfs:label": "WatchAction",
+ "rdfs:comment": "A single feed providing structured information about one or more entities or topics.",
+ "rdfs:label": "DataFeed",
"rdfs:subClassOf": {
- "@id": "schema:ConsumeAction"
+ "@id": "schema:Dataset"
}
},
{
- "@id": "schema:departureGate",
- "@type": "rdf:Property",
- "rdfs:comment": "Identifier of the flight's departure gate.",
- "rdfs:label": "departureGate",
- "schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:TaxiVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the car as a taxi.",
+ "rdfs:label": "TaxiVehicleUsage",
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:Report",
- "@type": "rdfs:Class",
- "rdfs:comment": "A Report generated by governmental or non-governmental organization.",
- "rdfs:label": "Report",
- "rdfs:subClassOf": {
- "@id": "schema:Article"
- }
+ "@id": "schema:isBasedOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A resource from which this work is derived or from which it is a modification or adaption.",
+ "rdfs:label": "isBasedOn",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
},
{
- "@id": "schema:Notary",
+ "@id": "schema:ElectronicsStore",
"@type": "rdfs:Class",
- "rdfs:comment": "A notary.",
- "rdfs:label": "Notary",
+ "rdfs:comment": "An electronics store.",
+ "rdfs:label": "ElectronicsStore",
"rdfs:subClassOf": {
- "@id": "schema:LegalService"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:MedicalIndication",
- "@type": "rdfs:Class",
- "rdfs:comment": "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.",
- "rdfs:label": "MedicalIndication",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
- },
+ "@id": "schema:Toxicologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.",
+ "rdfs:label": "Toxicologic",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Specialty",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.",
- "rdfs:label": "Specialty",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:CDFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "CDFormat.",
+ "rdfs:label": "CDFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:Distillery",
+ "@id": "schema:VideoGameClip",
"@type": "rdfs:Class",
- "rdfs:comment": "A distillery.",
- "rdfs:label": "Distillery",
+ "rdfs:comment": "A short segment/part of a video game.",
+ "rdfs:label": "VideoGameClip",
"rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/743"
+ "@id": "schema:Clip"
}
},
{
- "@id": "schema:yearsInOperation",
+ "@id": "schema:postOfficeBoxNumber",
"@type": "rdf:Property",
- "rdfs:comment": "The age of the business.",
- "rdfs:label": "yearsInOperation",
+ "rdfs:comment": "The post office box number for PO box addresses.",
+ "rdfs:label": "postOfficeBoxNumber",
"schema:domainIncludes": {
- "@id": "schema:BusinessAudience"
+ "@id": "schema:PostalAddress"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:QuantitativeValue",
+ "@id": "schema:TieAction",
"@type": "rdfs:Class",
- "rdfs:comment": " A point value or interval for product characteristics and other purposes.",
- "rdfs:label": "QuantitativeValue",
+ "rdfs:comment": "The act of reaching a draw in a competitive activity.",
+ "rdfs:label": "TieAction",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "schema:AchieveAction"
}
},
{
- "@id": "schema:DepartmentStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A department store.",
- "rdfs:label": "DepartmentStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:payload",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "payload",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:TVSeries",
- "@type": "rdfs:Class",
- "rdfs:comment": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.",
- "rdfs:label": "TVSeries",
- "rdfs:subClassOf": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:CreativeWorkSeries"
- }
- ]
+ "@id": "schema:AllWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "All-wheel Drive is a transmission layout where the engine drives all four wheels.",
+ "rdfs:label": "AllWheelDriveConfiguration",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
},
{
- "@id": "schema:InformAction",
+ "@id": "schema:Bone",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of notifying someone of information pertinent to them, with no expectation of a response.",
- "rdfs:label": "InformAction",
+ "rdfs:comment": "Rigid connective tissue that comprises up the skeletal structure of the human body.",
+ "rdfs:label": "Bone",
"rdfs:subClassOf": {
- "@id": "schema:CommunicateAction"
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:AnatomicalStructure",
+ "@id": "schema:AMRadioChannel",
"@type": "rdfs:Class",
- "rdfs:comment": "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.",
- "rdfs:label": "AnatomicalStructure",
+ "rdfs:comment": "A radio channel that uses AM.",
+ "rdfs:label": "AMRadioChannel",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:RadioChannel"
},
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
+ },
+ {
+ "@id": "schema:PET",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Positron emission tomography imaging.",
+ "rdfs:label": "PET",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:significantLinks",
+ "@id": "schema:passengerSequenceNumber",
"@type": "rdf:Property",
- "rdfs:comment": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
- "rdfs:label": "significantLinks",
+ "rdfs:comment": "The passenger's sequence number as assigned by the airline.",
+ "rdfs:label": "passengerSequenceNumber",
"schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:FlightReservation"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
- },
- "schema:supersededBy": {
- "@id": "schema:significantLink"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:ScreeningHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about how to screen or further filter a topic.",
- "rdfs:label": "ScreeningHealthAspect",
+ "@id": "schema:expectedPrognosis",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The likely outcome in either the short term or long term of the medical condition.",
+ "rdfs:label": "expectedPrognosis",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:OutOfStock",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item is out of stock.",
- "rdfs:label": "OutOfStock"
- },
- {
- "@id": "schema:amenityFeature",
+ "@id": "schema:legislationChanges",
"@type": "rdf:Property",
- "rdfs:comment": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.",
- "rdfs:label": "amenityFeature",
- "schema:domainIncludes": [
- {
- "@id": "schema:LodgingBusiness"
- },
- {
- "@id": "schema:Place"
- },
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#changes"
+ },
+ "rdfs:comment": "Another legislation that this legislation changes. This encompasses the notions of amendment, replacement, correction, repeal, or other types of change. This may be a direct change (textual or non-textual amendment) or a consequential or indirect change. The property is to be used to express the existence of a change relationship between two acts rather than the existence of a consolidated version of the text that shows the result of the change. For consolidation relationships, use the legislationConsolidates property.",
+ "rdfs:label": "legislationChanges",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Legislation"
+ },
+ "schema:source": [
{
- "@id": "schema:Accommodation"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:FloorPlan"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:LocationFeatureSpecification"
- },
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#changes"
}
},
{
- "@id": "schema:expectedArrivalFrom",
+ "@id": "schema:gracePeriod",
"@type": "rdf:Property",
- "rdfs:comment": "The earliest date the package may arrive.",
- "rdfs:label": "expectedArrivalFrom",
+ "rdfs:comment": "The period of time after any due date that the borrower has to fulfil its obligations before a default (failure to pay) is deemed to have occurred.",
+ "rdfs:label": "gracePeriod",
"schema:domainIncludes": {
- "@id": "schema:ParcelDelivery"
+ "@id": "schema:LoanOrCredit"
},
- "schema:rangeIncludes": [
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
+ "schema:source": [
{
- "@id": "schema:DateTime"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
},
{
- "@id": "schema:Date"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
}
]
},
{
- "@id": "schema:QAPage",
+ "@id": "schema:MusicAlbumReleaseType",
"@type": "rdfs:Class",
- "rdfs:comment": "A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).",
- "rdfs:label": "QAPage",
+ "rdfs:comment": "The kind of release which this album is: single, EP or album.",
+ "rdfs:label": "MusicAlbumReleaseType",
"rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:seatingCapacity",
+ "@id": "schema:memberOf",
"@type": "rdf:Property",
- "rdfs:comment": "The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons ",
- "rdfs:label": "seatingCapacity",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "rdfs:comment": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
+ "rdfs:label": "memberOf",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:member"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Number"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:ProgramMembership"
+ }
+ ]
+ },
+ {
+ "@id": "schema:warranty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The warranty promise(s) included in the offer.",
+ "rdfs:label": "warranty",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
}
],
+ "schema:rangeIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:howPerformed",
+ "@id": "schema:paymentAccepted",
"@type": "rdf:Property",
- "rdfs:comment": "How the procedure is performed.",
- "rdfs:label": "howPerformed",
+ "rdfs:comment": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.",
+ "rdfs:label": "paymentAccepted",
"schema:domainIncludes": {
- "@id": "schema:MedicalProcedure"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:LocalBusiness"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:RentalCarReservation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A reservation for a rental car.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
- "rdfs:label": "RentalCarReservation",
- "rdfs:subClassOf": {
- "@id": "schema:Reservation"
+ "@id": "schema:Nonprofit501n",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501n: Non-profit type referring to Charitable Risk Pools.",
+ "rdfs:label": "Nonprofit501n",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:LockerDelivery",
- "@type": "schema:DeliveryMethod",
- "rdfs:comment": "A DeliveryMethod in which an item is made available via locker.",
- "rdfs:label": "LockerDelivery"
+ "@id": "schema:articleSection",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.",
+ "rdfs:label": "articleSection",
+ "schema:domainIncludes": {
+ "@id": "schema:Article"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:recipient",
+ "@id": "schema:isEncodedByBioChemEntity",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The participant who is at the receiving end of the action.",
- "rdfs:label": "recipient",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:AuthorizeAction"
- },
- {
- "@id": "schema:GiveAction"
- },
- {
- "@id": "schema:Message"
- },
- {
- "@id": "schema:ReturnAction"
- },
- {
- "@id": "schema:DonateAction"
- },
+ "rdfs:comment": "Another BioChemEntity encoding by this one.",
+ "rdfs:label": "isEncodedByBioChemEntity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:encodesBioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Gene"
+ }
+ },
+ {
+ "@id": "schema:ResearchProject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Research project.",
+ "rdfs:label": "ResearchProject",
+ "rdfs:subClassOf": {
+ "@id": "schema:Project"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:CommunicateAction"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
},
{
- "@id": "schema:TipAction"
- },
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:repeatFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the frequency at which [[Event]]s will occur according to a schedule [[Schedule]]. The intervals between\n events should be defined as a [[Duration]] of time.",
+ "rdfs:label": "repeatFrequency",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:frequency"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:PayAction"
+ "@id": "schema:Text"
},
{
- "@id": "schema:SendAction"
+ "@id": "schema:Duration"
}
],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ }
+ },
+ {
+ "@id": "schema:courseMode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous).",
+ "rdfs:label": "courseMode",
+ "schema:domainIncludes": {
+ "@id": "schema:CourseInstance"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:ContactPoint"
- },
- {
- "@id": "schema:Person"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Audience"
+ "@id": "schema:URL"
}
]
},
{
- "@id": "schema:MedicalSignOrSymptom",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective.",
- "rdfs:label": "MedicalSignOrSymptom",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalCondition"
+ "@id": "schema:holdingArchive",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]]."
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:EmployerReview",
- "@type": "rdfs:Class",
- "rdfs:comment": "An [[EmployerReview]] is a review of an [[Organization]] regarding its role as an employer, written by a current or former employee of that organization.",
- "rdfs:label": "EmployerReview",
- "rdfs:subClassOf": {
- "@id": "schema:Review"
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "holdingArchive"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ArchiveComponent"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:archiveHeld"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:ArchiveOrganization"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
}
},
{
- "@id": "schema:DataCatalog",
+ "@id": "schema:DislikeAction",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://www.w3.org/ns/dcat#Catalog"
- },
- "rdfs:comment": "A collection of datasets.",
- "rdfs:label": "DataCatalog",
+ "rdfs:comment": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "DislikeAction",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
+ "@id": "schema:ReactAction"
}
},
{
- "@id": "schema:availableThrough",
+ "@id": "schema:mentions",
"@type": "rdf:Property",
- "rdfs:comment": "After this date, the item will no longer be available for pickup.",
- "rdfs:label": "availableThrough",
+ "rdfs:comment": "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.",
+ "rdfs:label": "mentions",
"schema:domainIncludes": {
- "@id": "schema:DeliveryEvent"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:benefitsSummaryUrl",
+ "@id": "schema:legislationApplies",
"@type": "rdf:Property",
- "rdfs:comment": "The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation.",
- "rdfs:label": "benefitsSummaryUrl",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#implements"
+ },
+ "rdfs:comment": "Indicates that this legislation (or part of a legislation) somehow transfers another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the legislationTransposes property. For example an informative consolidated law of a European Union's member state \"applies\" the consolidated version of the European Directive implemented in it.",
+ "rdfs:label": "legislationApplies",
"schema:domainIncludes": {
- "@id": "schema:HealthInsurancePlan"
+ "@id": "schema:Legislation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
- }
- },
- {
- "@id": "schema:NewsArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.\n\nA more detailed overview of [schema.org News markup](/docs/news.html) is also available.\n",
- "rdfs:label": "NewsArticle",
- "rdfs:subClassOf": {
- "@id": "schema:Article"
+ "@id": "schema:Legislation"
},
"schema:source": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
- ]
- },
- {
- "@id": "schema:ParentalSupport",
- "@type": "schema:GovernmentBenefitsType",
- "rdfs:comment": "ParentalSupport: this is a benefit for parental support.",
- "rdfs:label": "ParentalSupport",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#implements"
}
},
{
- "@id": "schema:RefundTypeEnumeration",
+ "@id": "schema:Schedule",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerates several kinds of product return refund types.",
- "rdfs:label": "RefundTypeEnumeration",
+ "rdfs:comment": "A schedule defines a repeating time period used to describe a regularly occurring [[Event]]. At a minimum a schedule will specify [[repeatFrequency]] which describes the interval between occurrences of the event. Additional information can be provided to specify the schedule more precisely.\n This includes identifying the day(s) of the week or month when the recurring event will take place, in addition to its start and end time. Schedules may also\n have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.",
+ "rdfs:label": "Schedule",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
}
},
{
- "@id": "schema:MerchantReturnNotPermitted",
- "@type": "schema:MerchantReturnEnumeration",
- "rdfs:comment": "Specifies that product returns are not permitted.",
- "rdfs:label": "MerchantReturnNotPermitted",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
- }
- },
- {
- "@id": "schema:applicationStartDate",
+ "@id": "schema:accountOverdraftLimit",
"@type": "rdf:Property",
- "rdfs:comment": "The date at which the program begins collecting applications for the next enrollment cycle.",
- "rdfs:label": "applicationStartDate",
+ "rdfs:comment": "An overdraft is an extension of credit from a lending institution when an account reaches zero. An overdraft allows the individual to continue withdrawing money even if the account has no funds in it. Basically the bank allows people to borrow a set amount of money.",
+ "rdfs:label": "accountOverdraftLimit",
"schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:BankAccount"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:MonetaryAmount"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
- }
- },
- {
- "@id": "schema:acceptedPaymentMethod",
- "@type": "rdf:Property",
- "rdfs:comment": "The payment method(s) accepted by seller for this offer.",
- "rdfs:label": "acceptedPaymentMethod",
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Demand"
- }
- ],
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:LoanOrCredit"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
},
{
- "@id": "schema:PaymentMethod"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
+ ]
},
{
- "@id": "schema:EUEnergyEfficiencyCategoryB",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryB",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:numTracks",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of tracks in this album or playlist.",
+ "rdfs:label": "numTracks",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicPlaylist"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
- }
- },
- {
- "@id": "schema:ClothingStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A clothing store.",
- "rdfs:label": "ClothingStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:identifyingExam",
+ "@id": "schema:evidenceLevel",
"@type": "rdf:Property",
- "rdfs:comment": "A physical examination that can identify this sign.",
- "rdfs:label": "identifyingExam",
+ "rdfs:comment": "Strength of evidence of the data used to formulate the guideline (enumerated).",
+ "rdfs:label": "evidenceLevel",
"schema:domainIncludes": {
- "@id": "schema:MedicalSign"
+ "@id": "schema:MedicalGuideline"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:PhysicalExam"
+ "@id": "schema:MedicalEvidenceLevel"
}
},
{
- "@id": "schema:AutoRental",
- "@type": "rdfs:Class",
- "rdfs:comment": "A car rental business.",
- "rdfs:label": "AutoRental",
- "rdfs:subClassOf": {
- "@id": "schema:AutomotiveBusiness"
+ "@id": "schema:alternateName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An alias for the item.",
+ "rdfs:label": "alternateName",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:RoofingContractor",
- "@type": "rdfs:Class",
- "rdfs:comment": "A roofing contractor.",
- "rdfs:label": "RoofingContractor",
- "rdfs:subClassOf": {
- "@id": "schema:HomeAndConstructionBusiness"
+ "@id": "schema:numberOfPages",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of pages in the book.",
+ "rdfs:label": "numberOfPages",
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:hasRepresentation",
+ "@id": "schema:domainIncludes",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org"
- },
- "rdfs:comment": "A common representation such as a protein sequence or chemical structure for this entity. For images use schema.org/image.",
- "rdfs:label": "hasRepresentation",
+ "rdfs:comment": "Relates a property to a class that is (one of) the type(s) the property is expected to be used on.",
+ "rdfs:label": "domainIncludes",
"schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:Property"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://meta.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:PropertyValue"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Class"
+ }
},
{
- "@id": "schema:familyName",
+ "@id": "schema:opponent",
"@type": "rdf:Property",
- "rdfs:comment": "Family name. In the U.S., the last name of a Person.",
- "rdfs:label": "familyName",
+ "rdfs:comment": "A sub property of participant. The opponent on this action.",
+ "rdfs:label": "opponent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:ExerciseAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:LimitedAvailability",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item has limited availability.",
- "rdfs:label": "LimitedAvailability"
- },
- {
- "@id": "schema:Nonprofit501c20",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c20: Non-profit type referring to Group Legal Services Plan Organizations.",
- "rdfs:label": "Nonprofit501c20",
+ "@id": "schema:artist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The primary artist for a work\n \tin a medium other than pencils or digital line art--for example, if the\n \tprimary artwork is done in watercolors or digital paints.",
+ "rdfs:label": "artist",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://bib.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:SportsOrganization",
+ "@id": "schema:ContactPage",
"@type": "rdfs:Class",
- "rdfs:comment": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.",
- "rdfs:label": "SportsOrganization",
+ "rdfs:comment": "Web page type: Contact page.",
+ "rdfs:label": "ContactPage",
"rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "schema:WebPage"
}
},
{
- "@id": "schema:TaxiService",
+ "@id": "schema:AlignmentObject",
"@type": "rdfs:Class",
- "rdfs:comment": "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.",
- "rdfs:label": "TaxiService",
+ "rdfs:comment": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.",
+ "rdfs:label": "AlignmentObject",
"rdfs:subClassOf": {
- "@id": "schema:Service"
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"
}
},
{
- "@id": "schema:Wholesale",
- "@type": "schema:DrugCostCategory",
- "rdfs:comment": "The drug's cost represents the wholesale acquisition cost of the drug.",
- "rdfs:label": "Wholesale",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:publishingPrinciples",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual, e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n",
+ "rdfs:label": "publishingPrinciples",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PaymentChargeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The costs of settling the payment using a particular payment method.",
+ "rdfs:label": "PaymentChargeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:includedComposition",
+ "@id": "schema:orderQuantity",
"@type": "rdf:Property",
- "rdfs:comment": "Smaller compositions included in this work (e.g. a movement in a symphony).",
- "rdfs:label": "includedComposition",
+ "rdfs:comment": "The number of the item ordered. If the property is not set, assume the quantity is one.",
+ "rdfs:label": "orderQuantity",
"schema:domainIncludes": {
- "@id": "schema:MusicComposition"
+ "@id": "schema:OrderItem"
},
"schema:rangeIncludes": {
- "@id": "schema:MusicComposition"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:businessFunction",
+ "@id": "schema:height",
"@type": "rdf:Property",
- "rdfs:comment": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.",
- "rdfs:label": "businessFunction",
+ "rdfs:comment": "The height of the item.",
+ "rdfs:label": "height",
"schema:domainIncludes": [
{
- "@id": "schema:Offer"
+ "@id": "schema:OfferShippingDetails"
},
{
- "@id": "schema:Demand"
+ "@id": "schema:VisualArtwork"
},
{
- "@id": "schema:TypeAndQuantityNode"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:BusinessFunction"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:HowToSection",
- "@type": "rdfs:Class",
- "rdfs:comment": "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).",
- "rdfs:label": "HowToSection",
- "rdfs:subClassOf": [
+ "@id": "schema:Person"
+ },
{
- "@id": "schema:ItemList"
+ "@id": "schema:Product"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:ListItem"
+ "@id": "schema:Distance"
}
]
},
{
- "@id": "schema:Endocrine",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.",
- "rdfs:label": "Endocrine",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:isbn",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/isbn"
+ },
+ "rdfs:comment": "The ISBN of the book.",
+ "rdfs:label": "isbn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Book"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:Terminated",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Terminated.",
- "rdfs:label": "Terminated",
+ "@id": "schema:additionalVariable",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.",
+ "rdfs:label": "additionalVariable",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:School",
- "@type": "rdfs:Class",
- "rdfs:comment": "A school.",
- "rdfs:label": "School",
- "rdfs:subClassOf": {
- "@id": "schema:EducationalOrganization"
- }
- },
- {
- "@id": "schema:MusicStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A music store.",
- "rdfs:label": "MusicStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:typicalTest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical test typically performed given this condition.",
+ "rdfs:label": "typicalTest",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalTest"
}
},
{
- "@id": "schema:incentives",
+ "@id": "schema:departurePlatform",
"@type": "rdf:Property",
- "rdfs:comment": "Description of bonus and commission compensation aspects of the job.",
- "rdfs:label": "incentives",
+ "rdfs:comment": "The platform from which the train departs.",
+ "rdfs:label": "departurePlatform",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:TrainTrip"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
- },
- "schema:supersededBy": {
- "@id": "schema:incentiveCompensation"
}
},
{
- "@id": "schema:WearableMeasurementCollar",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the collar, for example of a shirt",
- "rdfs:label": "WearableMeasurementCollar",
+ "@id": "schema:ChooseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",
+ "rdfs:label": "ChooseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AssessAction"
+ }
+ },
+ {
+ "@id": "schema:WebAPI",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An application programming interface accessible over Web/Internet technologies.",
+ "rdfs:label": "WebAPI",
+ "rdfs:subClassOf": {
+ "@id": "schema:Service"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
}
},
{
- "@id": "schema:ExerciseGym",
+ "@id": "schema:PlaceOfWorship",
"@type": "rdfs:Class",
- "rdfs:comment": "A gym.",
- "rdfs:label": "ExerciseGym",
+ "rdfs:comment": "Place of worship, such as a church, synagogue, or mosque.",
+ "rdfs:label": "PlaceOfWorship",
"rdfs:subClassOf": {
- "@id": "schema:SportsActivityLocation"
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:EngineSpecification",
+ "@id": "schema:TVClip",
"@type": "rdfs:Class",
- "rdfs:comment": "Information about the engine of the vehicle. A vehicle can have multiple engines represented by multiple engine specification entities.",
- "rdfs:label": "EngineSpecification",
+ "rdfs:comment": "A short TV program or a segment/part of a TV program.",
+ "rdfs:label": "TVClip",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:Clip"
}
},
{
- "@id": "schema:shippingRate",
+ "@id": "schema:Mass",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.",
+ "rdfs:label": "Mass",
+ "rdfs:subClassOf": {
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:Male",
+ "@type": "schema:GenderType",
+ "rdfs:comment": "The male gender.",
+ "rdfs:label": "Male"
+ },
+ {
+ "@id": "schema:followee",
"@type": "rdf:Property",
- "rdfs:comment": "The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the [[MonetaryAmount]]) are most appropriate.",
- "rdfs:label": "shippingRate",
- "schema:domainIncludes": [
+ "rdfs:comment": "A sub property of object. The person or organization being followed.",
+ "rdfs:label": "followee",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:FollowAction"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:OfferShippingDetails"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:ShippingRateSettings"
+ "@id": "schema:Person"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:DangerousGoodConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is dangerous and requires careful handling and/or special training of the user. See also the [UN Model Classification](https://unece.org/DAM/trans/danger/publi/unrec/rev17/English/02EREv17_Part2.pdf) defining the 9 classes of dangerous goods such as explosives, gases, flammables, and more.",
+ "rdfs:label": "DangerousGoodConsideration",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:fundedItem",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates an item funded or sponsored through a [[Grant]].",
- "rdfs:label": "fundedItem",
- "schema:domainIncludes": {
- "@id": "schema:Grant"
+ "@id": "schema:HyperToc",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items.",
+ "rdfs:label": "HyperToc",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Thing"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/383"
- },
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
- }
- ]
- },
- {
- "@id": "schema:MixtapeAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "MixtapeAlbum.",
- "rdfs:label": "MixtapeAlbum",
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
}
},
{
- "@id": "schema:byArtist",
+ "@id": "schema:inventoryLevel",
"@type": "rdf:Property",
- "rdfs:comment": "The artist that performed this album or recording.",
- "rdfs:label": "byArtist",
+ "rdfs:comment": "The current approximate inventory level for the item or items.",
+ "rdfs:label": "inventoryLevel",
"schema:domainIncludes": [
{
- "@id": "schema:MusicRecording"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:MusicAlbum"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:MusicGroup"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:Person"
+ "@id": "schema:SomeProducts"
}
- ]
- },
- {
- "@id": "schema:Product",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.",
- "rdfs:label": "Product",
- "rdfs:subClassOf": {
- "@id": "schema:Thing"
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:naics",
+ "@id": "schema:model",
"@type": "rdf:Property",
- "rdfs:comment": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
- "rdfs:label": "naics",
- "schema:domainIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
+ "rdfs:comment": "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.",
+ "rdfs:label": "model",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ProductModel"
+ },
+ {
+ "@id": "schema:Text"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:recordingOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The composition this track is a recording of.",
+ "rdfs:label": "recordingOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:recordedAs"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MusicComposition"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:vendor",
+ "@id": "schema:recordedAs",
"@type": "rdf:Property",
- "rdfs:comment": "'vendor' is an earlier term for 'seller'.",
- "rdfs:label": "vendor",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
+ "rdfs:comment": "An audio recording of the work.",
+ "rdfs:label": "recordedAs",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
},
+ "schema:inverseOf": {
+ "@id": "schema:recordingOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicRecording"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Restaurant",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A restaurant.",
+ "rdfs:label": "Restaurant",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:yield",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.",
+ "rdfs:label": "yield",
"schema:domainIncludes": {
- "@id": "schema:BuyAction"
+ "@id": "schema:HowTo"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Text"
}
- ],
- "schema:supersededBy": {
- "@id": "schema:seller"
- }
+ ]
},
{
- "@id": "schema:relatedLink",
+ "@id": "schema:isAvailableGenerically",
"@type": "rdf:Property",
- "rdfs:comment": "A link related to this web page, for example to other related web pages.",
- "rdfs:label": "relatedLink",
+ "rdfs:comment": "True if the drug is available in a generic form (regardless of name).",
+ "rdfs:label": "isAvailableGenerically",
"schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:alternateName",
- "@type": "rdf:Property",
- "rdfs:comment": "An alias for the item.",
- "rdfs:label": "alternateName",
- "schema:domainIncludes": {
- "@id": "schema:Thing"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:GovernmentPermit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permit issued by a government agency.",
+ "rdfs:label": "GovernmentPermit",
+ "rdfs:subClassOf": {
+ "@id": "schema:Permit"
}
},
{
- "@id": "schema:SafetyHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about the safety-related aspects of a health topic.",
- "rdfs:label": "SafetyHealthAspect",
+ "@id": "schema:employerOverview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the employer, career opportunities and work environment for this position.",
+ "rdfs:label": "employerOverview",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2396"
}
},
{
- "@id": "schema:sameAs",
- "@type": "rdf:Property",
- "rdfs:comment": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
- "rdfs:label": "sameAs",
- "schema:domainIncludes": {
- "@id": "schema:Thing"
- },
- "schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:RestrictedDiet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. ",
+ "rdfs:label": "RestrictedDiet",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
}
},
{
- "@id": "schema:translator",
+ "@id": "schema:contributor",
"@type": "rdf:Property",
- "rdfs:comment": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
- "rdfs:label": "translator",
+ "rdfs:comment": "A secondary contributor to the CreativeWork or Event.",
+ "rdfs:label": "contributor",
"schema:domainIncludes": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Event"
},
{
- "@id": "schema:Event"
+ "@id": "schema:CreativeWork"
}
],
"schema:rangeIncludes": [
@@ -12262,1169 +12225,982 @@
]
},
{
- "@id": "schema:ItemList",
- "@type": "rdfs:Class",
- "rdfs:comment": "A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.",
- "rdfs:label": "ItemList",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- }
- },
- {
- "@id": "schema:Resort",
+ "@id": "schema:SportsClub",
"@type": "rdfs:Class",
- "rdfs:comment": "A resort is a place used for relaxation or recreation, attracting visitors for holidays or vacations. Resorts are places, towns or sometimes commercial establishment operated by a single company (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Resort).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n ",
- "rdfs:label": "Resort",
+ "rdfs:comment": "A sports club.",
+ "rdfs:label": "SportsClub",
"rdfs:subClassOf": {
- "@id": "schema:LodgingBusiness"
- },
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "schema:SportsActivityLocation"
}
},
{
- "@id": "schema:ControlAction",
+ "@id": "schema:PublicationEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "An agent controls a device or application.",
- "rdfs:label": "ControlAction",
+ "rdfs:comment": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type, e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.",
+ "rdfs:label": "PublicationEvent",
"rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:InfectiousDisease",
- "@type": "rdfs:Class",
- "rdfs:comment": "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.",
- "rdfs:label": "InfectiousDisease",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalCondition"
+ "@id": "schema:coursePrerequisites",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Requirements for taking the Course. May be completion of another [[Course]] or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].",
+ "rdfs:label": "coursePrerequisites",
+ "schema:domainIncludes": {
+ "@id": "schema:Course"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Course"
+ },
+ {
+ "@id": "schema:AlignmentObject"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:runtimePlatform",
+ "@id": "schema:targetPlatform",
"@type": "rdf:Property",
- "rdfs:comment": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).",
- "rdfs:label": "runtimePlatform",
+ "rdfs:comment": "Type of app development: phone, Metro style, desktop, XBox, etc.",
+ "rdfs:label": "targetPlatform",
"schema:domainIncludes": {
- "@id": "schema:SoftwareSourceCode"
+ "@id": "schema:APIReference"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:muscleAction",
+ "@id": "schema:elevation",
"@type": "rdf:Property",
- "rdfs:comment": "The movement the muscle generates.",
- "rdfs:label": "muscleAction",
- "schema:domainIncludes": {
- "@id": "schema:Muscle"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "rdfs:comment": "The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT\\_OF\\_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.",
+ "rdfs:label": "elevation",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:EvidenceLevelB",
- "@type": "schema:MedicalEvidenceLevel",
- "rdfs:comment": "Data derived from a single randomized trial, or nonrandomized studies.",
- "rdfs:label": "EvidenceLevelB",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:TravelAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A travel agency.",
+ "rdfs:label": "TravelAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:produces",
+ "@id": "schema:eligibleDuration",
"@type": "rdf:Property",
- "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.",
- "rdfs:label": "produces",
- "schema:domainIncludes": {
- "@id": "schema:Service"
- },
+ "rdfs:comment": "The duration for which the given offer is valid.",
+ "rdfs:label": "eligibleDuration",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:QuantitativeValue"
},
- "schema:supersededBy": {
- "@id": "schema:serviceOutput"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:scheduledTime",
+ "@id": "schema:actionOption",
"@type": "rdf:Property",
- "rdfs:comment": "The time the object is scheduled to.",
- "rdfs:label": "scheduledTime",
+ "rdfs:comment": "A sub property of object. The options subject to this action.",
+ "rdfs:label": "actionOption",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
"schema:domainIncludes": {
- "@id": "schema:PlanAction"
+ "@id": "schema:ChooseAction"
},
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ }
+ ]
},
{
- "@id": "schema:LaserDiscFormat",
- "@type": "schema:MusicReleaseFormatType",
- "rdfs:comment": "LaserDiscFormat.",
- "rdfs:label": "LaserDiscFormat",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:cheatCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Cheat codes to the game.",
+ "rdfs:label": "cheatCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:nonEqual",
+ "@id": "schema:readonlyValue",
"@type": "rdf:Property",
- "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is not equal to the object.",
- "rdfs:label": "nonEqual",
+ "rdfs:comment": "Whether or not a property is mutable. Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.",
+ "rdfs:label": "readonlyValue",
"schema:domainIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:PropertyValueSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:QualitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:DateTime",
- "@type": [
- "rdfs:Class",
- "schema:DataType"
- ],
- "rdfs:comment": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).",
- "rdfs:label": "DateTime"
- },
- {
- "@id": "schema:Rating",
+ "@id": "schema:EnergyEfficiencyEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.",
- "rdfs:label": "Rating",
+ "rdfs:comment": "Enumerates energy efficiency levels (also known as \"classes\" or \"ratings\") and certifications that are part of several international energy efficiency standards.",
+ "rdfs:label": "EnergyEfficiencyEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:PublicationEvent",
+ "@id": "schema:NailSalon",
"@type": "rdfs:Class",
- "rdfs:comment": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.",
- "rdfs:label": "PublicationEvent",
+ "rdfs:comment": "A nail salon.",
+ "rdfs:label": "NailSalon",
"rdfs:subClassOf": {
- "@id": "schema:Event"
- }
- },
- {
- "@id": "schema:lodgingUnitDescription",
- "@type": "rdf:Property",
- "rdfs:comment": "A full description of the lodging unit.",
- "rdfs:label": "lodgingUnitDescription",
- "schema:domainIncludes": {
- "@id": "schema:LodgingReservation"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:HealthAndBeautyBusiness"
}
},
{
- "@id": "schema:position",
+ "@id": "schema:byArtist",
"@type": "rdf:Property",
- "rdfs:comment": "The position of an item in a series or sequence of items.",
- "rdfs:label": "position",
+ "rdfs:comment": "The artist that performed this album or recording.",
+ "rdfs:label": "byArtist",
"schema:domainIncludes": [
{
- "@id": "schema:ListItem"
+ "@id": "schema:MusicAlbum"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:MusicRecording"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:MusicGroup"
},
{
- "@id": "schema:Integer"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:Protozoa",
- "@type": "schema:InfectiousAgentClass",
- "rdfs:comment": "Single-celled organism that causes an infection.",
- "rdfs:label": "Protozoa",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:BodyMeasurementChest",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Maximum girth of chest. Used, for example, to fit men's suits.",
- "rdfs:label": "BodyMeasurementChest",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:Brand",
- "@type": "rdfs:Class",
- "rdfs:comment": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.",
- "rdfs:label": "Brand",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
- }
- },
- {
- "@id": "schema:StructuredValue",
- "@type": "rdfs:Class",
- "rdfs:comment": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.",
- "rdfs:label": "StructuredValue",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- }
- },
- {
- "@id": "schema:BusReservation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A reservation for bus travel. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
- "rdfs:label": "BusReservation",
- "rdfs:subClassOf": {
- "@id": "schema:Reservation"
- }
- },
- {
- "@id": "schema:seatSection",
+ "@id": "schema:season",
"@type": "rdf:Property",
- "rdfs:comment": "The section location of the reserved seat (e.g. Orchestra).",
- "rdfs:label": "seatSection",
- "schema:domainIncludes": {
- "@id": "schema:Seat"
+ "rdfs:comment": "A season in a media series.",
+ "rdfs:label": "season",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:subtitleLanguage",
- "@type": "rdf:Property",
- "rdfs:comment": "Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).",
- "rdfs:label": "subtitleLanguage",
"schema:domainIncludes": [
{
- "@id": "schema:ScreeningEvent"
- },
- {
- "@id": "schema:BroadcastEvent"
+ "@id": "schema:VideoGameSeries"
},
{
- "@id": "schema:TVEpisode"
+ "@id": "schema:TVSeries"
},
{
- "@id": "schema:Movie"
+ "@id": "schema:RadioSeries"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:Language"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Text"
+ "@id": "schema:CreativeWorkSeason"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2110"
+ "schema:supersededBy": {
+ "@id": "schema:containsSeason"
}
},
{
- "@id": "schema:EPRelease",
- "@type": "schema:MusicAlbumReleaseType",
- "rdfs:comment": "EPRelease.",
- "rdfs:label": "EPRelease",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:bloodSupply",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The blood vessel that carries blood from the heart to the muscle.",
+ "rdfs:label": "bloodSupply",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
}
},
{
- "@id": "schema:xpath",
+ "@id": "schema:healthPlanNetworkId",
"@type": "rdf:Property",
- "rdfs:comment": "An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".",
- "rdfs:label": "xpath",
+ "rdfs:comment": "Name or unique ID of network. (Networks are often reused across different insurance plans.)",
+ "rdfs:label": "healthPlanNetworkId",
"schema:domainIncludes": [
{
- "@id": "schema:SpeakableSpecification"
+ "@id": "schema:HealthPlanNetwork"
},
{
- "@id": "schema:WebPageElement"
+ "@id": "schema:MedicalOrganization"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:XPathType"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:CurrencyConversionService",
- "@type": "rdfs:Class",
- "rdfs:comment": "A service to convert funds from one currency to another currency.",
- "rdfs:label": "CurrencyConversionService",
- "rdfs:subClassOf": {
- "@id": "schema:FinancialProduct"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- },
- {
- "@id": "schema:DisagreeAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.",
- "rdfs:label": "DisagreeAction",
- "rdfs:subClassOf": {
- "@id": "schema:ReactAction"
- }
- },
- {
- "@id": "schema:ReservationHold",
- "@type": "schema:ReservationStatusType",
- "rdfs:comment": "The status of a reservation on hold pending an update like credit card number or flight changes.",
- "rdfs:label": "ReservationHold"
- },
- {
- "@id": "schema:PreSale",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item is available for ordering and delivery before general availability.",
- "rdfs:label": "PreSale"
- },
- {
- "@id": "schema:translationOfWork",
- "@type": "rdf:Property",
- "rdfs:comment": "The work that this work has been translated from. e.g. 物种起源 is a translationOf “On the Origin of Species”",
- "rdfs:label": "translationOfWork",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:inverseOf": {
- "@id": "schema:workTranslation"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:isBasedOn",
+ "@id": "schema:skills",
"@type": "rdf:Property",
- "rdfs:comment": "A resource from which this work is derived or from which it is a modification or adaption.",
- "rdfs:label": "isBasedOn",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
+ "rdfs:comment": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.",
+ "rdfs:label": "skills",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Product"
+ "@id": "schema:DefinedTerm"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2322"
}
]
},
{
- "@id": "schema:addressLocality",
+ "@id": "schema:xpath",
"@type": "rdf:Property",
- "rdfs:comment": "The locality in which the street address is, and which is in the region. For example, Mountain View.",
- "rdfs:label": "addressLocality",
- "schema:domainIncludes": {
- "@id": "schema:PostalAddress"
- },
+ "rdfs:comment": "An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".",
+ "rdfs:label": "xpath",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:WebPageElement"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:XPathType"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
}
},
{
- "@id": "schema:employee",
+ "@id": "schema:availability",
"@type": "rdf:Property",
- "rdfs:comment": "Someone working for this organization.",
- "rdfs:label": "employee",
- "schema:domainIncludes": {
- "@id": "schema:Organization"
- },
+ "rdfs:comment": "The availability of this item—for example In stock, Out of stock, Pre-order, etc.",
+ "rdfs:label": "availability",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:ItemAvailability"
}
},
{
- "@id": "schema:OrderProcessing",
- "@type": "schema:OrderStatus",
- "rdfs:comment": "OrderStatus representing that an order is being processed.",
- "rdfs:label": "OrderProcessing"
+ "@id": "schema:RefurbishedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is refurbished.",
+ "rdfs:label": "RefurbishedCondition"
},
{
- "@id": "schema:Country",
+ "@id": "schema:Plumber",
"@type": "rdfs:Class",
- "rdfs:comment": "A country.",
- "rdfs:label": "Country",
+ "rdfs:comment": "A plumbing service.",
+ "rdfs:label": "Plumber",
"rdfs:subClassOf": {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:HomeAndConstructionBusiness"
}
},
{
- "@id": "schema:DeliveryTimeSettings",
+ "@id": "schema:TouristInformationCenter",
"@type": "rdfs:Class",
- "rdfs:comment": "A DeliveryTimeSettings represents re-usable pieces of shipping information, relating to timing. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of a [[OfferShippingDetails]]. Several occurrences can be published, distinguished (and identified/referenced) by their different values for [[transitTimeLabel]].",
- "rdfs:label": "DeliveryTimeSettings",
+ "rdfs:comment": "A tourist information center.",
+ "rdfs:label": "TouristInformationCenter",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:eligibleDuration",
+ "@id": "schema:enginePower",
"@type": "rdf:Property",
- "rdfs:comment": "The duration for which the given offer is valid.",
- "rdfs:label": "eligibleDuration",
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Demand"
- }
- ],
+ "rdfs:comment": "The power of the vehicle's engine.\n Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\\n\\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine\\_power\\_test\\_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "enginePower",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
"schema:rangeIncludes": {
"@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:WorkBasedProgram",
- "@type": "rdfs:Class",
- "rdfs:comment": "A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs.",
- "rdfs:label": "WorkBasedProgram",
- "rdfs:subClassOf": {
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:fuelCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.\\n\\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles).",
+ "rdfs:label": "fuelCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:geoCovers",
- "@type": "rdf:Property",
- "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
- "rdfs:label": "geoCovers",
- "schema:domainIncludes": [
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:GeospatialGeometry"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:GeospatialGeometry"
- }
- ]
+ "@id": "schema:QuoteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.",
+ "rdfs:label": "QuoteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
+ }
},
{
- "@id": "schema:hasBioPolymerSequence",
+ "@id": "schema:increasesRiskOf",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/Gene"
- },
- "rdfs:comment": "A symbolic representation of a BioChemEnity. For example, a nucleotide sequence of a Gene or an amino acid sequence of a Protein.",
- "rdfs:label": "hasBioPolymerSequence",
- "rdfs:subPropertyOf": {
- "@id": "schema:hasRepresentation"
+ "rdfs:comment": "The condition, complication, etc. influenced by this factor.",
+ "rdfs:label": "increasesRiskOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskFactor"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:Protein"
- },
- {
- "@id": "schema:Gene"
- }
- ],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MedicalEntity"
}
},
{
- "@id": "schema:sibling",
+ "@id": "schema:typeOfBed",
"@type": "rdf:Property",
- "rdfs:comment": "A sibling of the person.",
- "rdfs:label": "sibling",
+ "rdfs:comment": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.",
+ "rdfs:label": "typeOfBed",
"schema:domainIncludes": {
- "@id": "schema:Person"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
- }
- },
- {
- "@id": "schema:EUEnergyEfficiencyCategoryA1Plus",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryA1Plus",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:BedDetails"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:BedType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:Nonprofit501c13",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c13: Non-profit type referring to Cemetery Companies.",
- "rdfs:label": "Nonprofit501c13",
+ "@id": "schema:WearableSizeGroupBoys",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Boys\" for wearables.",
+ "rdfs:label": "WearableSizeGroupBoys",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:InfectiousAgentClass",
- "@type": "rdfs:Class",
- "rdfs:comment": "Classes of agents or pathogens that transmit infectious diseases. Enumerated type.",
- "rdfs:label": "InfectiousAgentClass",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:percentile75",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 75th percentile value.",
+ "rdfs:label": "percentile75",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:name",
+ "@id": "schema:suggestedMinAge",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/dc/terms/title"
- },
- "rdfs:comment": "The name of the item.",
- "rdfs:label": "name",
- "rdfs:subPropertyOf": {
- "@id": "rdfs:label"
- },
+ "rdfs:comment": "Minimum recommended age in years for the audience or user.",
+ "rdfs:label": "suggestedMinAge",
"schema:domainIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:PeopleAudience"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:yield",
+ "@id": "schema:inverseOf",
"@type": "rdf:Property",
- "rdfs:comment": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.",
- "rdfs:label": "yield",
+ "rdfs:comment": "Relates a property to a property that is its inverse. Inverse properties relate the same pairs of items to each other, but in reversed direction. For example, the 'alumni' and 'alumniOf' properties are inverseOf each other. Some properties don't have explicit inverses; in these situations RDFa and JSON-LD syntax for reverse properties can be used.",
+ "rdfs:label": "inverseOf",
"schema:domainIncludes": {
- "@id": "schema:HowTo"
+ "@id": "schema:Property"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:QuantitativeValue"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Property"
+ }
},
{
- "@id": "schema:VenueMap",
- "@type": "schema:MapCategoryType",
- "rdfs:comment": "A venue map (e.g. for malls, auditoriums, museums, etc.).",
- "rdfs:label": "VenueMap"
+ "@id": "schema:CompletedActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An action that has already taken place.",
+ "rdfs:label": "CompletedActionStatus"
},
{
- "@id": "schema:ExerciseAction",
+ "@id": "schema:OceanBodyOfWater",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of participating in exertive activity for the purposes of improving health and fitness.",
- "rdfs:label": "ExerciseAction",
+ "rdfs:comment": "An ocean (for example, the Pacific).",
+ "rdfs:label": "OceanBodyOfWater",
"rdfs:subClassOf": {
- "@id": "schema:PlayAction"
+ "@id": "schema:BodyOfWater"
}
},
{
- "@id": "schema:cashBack",
- "@type": "rdf:Property",
- "rdfs:comment": "A cardholder benefit that pays the cardholder a small percentage of their net expenditures.",
- "rdfs:label": "cashBack",
- "schema:domainIncludes": {
- "@id": "schema:PaymentCard"
+ "@id": "schema:PlayGameAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of playing a video game.",
+ "rdfs:label": "PlayGameAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Boolean"
- },
- {
- "@id": "schema:Number"
- }
- ],
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
},
{
- "@id": "schema:schemaVersion",
+ "@id": "schema:activityFrequency",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to\n indicate the use of a specific schema.org release, e.g. ```10.0``` as a simple string, or more explicitly via URL, ```https://schema.org/docs/releases.html#v10.0```. There may be situations in which other schemas might usefully be referenced this way, e.g. ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/``` but this has not been carefully explored in the community.",
- "rdfs:label": "schemaVersion",
+ "rdfs:comment": "How often one should engage in the activity.",
+ "rdfs:label": "activityFrequency",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:PhysicalTherapy",
+ "@id": "schema:ActivateAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A process of progressive physical care and rehabilitation aimed at improving a health condition.",
- "rdfs:label": "PhysicalTherapy",
+ "rdfs:comment": "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).",
+ "rdfs:label": "ActivateAction",
"rdfs:subClassOf": {
- "@id": "schema:MedicalTherapy"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:ControlAction"
}
},
{
- "@id": "schema:EventRescheduled",
- "@type": "schema:EventStatusType",
- "rdfs:comment": "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated).",
- "rdfs:label": "EventRescheduled"
+ "@id": "schema:playerType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Player type required—for example, Flash or Silverlight.",
+ "rdfs:label": "playerType",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:AdministrativeArea",
- "@type": "rdfs:Class",
- "rdfs:comment": "A geographical region, typically under the jurisdiction of a particular government.",
- "rdfs:label": "AdministrativeArea",
- "rdfs:subClassOf": {
- "@id": "schema:Place"
+ "@id": "schema:broadcastSubChannel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The subchannel used for the broadcast.",
+ "rdfs:label": "broadcastSubChannel",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastFrequencySpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2111"
}
},
{
- "@id": "schema:PrependAction",
+ "@id": "schema:MenuSection",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of inserting at the beginning if an ordered collection.",
- "rdfs:label": "PrependAction",
+ "rdfs:comment": "A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider.",
+ "rdfs:label": "MenuSection",
"rdfs:subClassOf": {
- "@id": "schema:InsertAction"
- }
- },
- {
- "@id": "schema:MultiCenterTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "A trial that takes place at multiple centers.",
- "rdfs:label": "MultiCenterTrial",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:Brewery",
+ "@id": "schema:MovieRentalStore",
"@type": "rdfs:Class",
- "rdfs:comment": "Brewery.",
- "rdfs:label": "Brewery",
+ "rdfs:comment": "A movie rental store.",
+ "rdfs:label": "MovieRentalStore",
"rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:CreateAction",
+ "@id": "schema:HomeAndConstructionBusiness",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of deliberately creating/producing/generating/building a result out of the agent.",
- "rdfs:label": "CreateAction",
+ "rdfs:comment": "A construction business.\\n\\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).",
+ "rdfs:label": "HomeAndConstructionBusiness",
"rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:SingleFamilyResidence",
- "@type": "rdfs:Class",
- "rdfs:comment": "Residence type: Single-family home.",
- "rdfs:label": "SingleFamilyResidence",
- "rdfs:subClassOf": {
- "@id": "schema:House"
+ "@id": "schema:contentType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The supported content type(s) for an EntryPoint response.",
+ "rdfs:label": "contentType",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:Vehicle",
+ "@id": "schema:EmergencyService",
"@type": "rdfs:Class",
- "rdfs:comment": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.",
- "rdfs:label": "Vehicle",
+ "rdfs:comment": "An emergency service, such as a fire station or ER.",
+ "rdfs:label": "EmergencyService",
"rdfs:subClassOf": {
- "@id": "schema:Product"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:WearableSizeGroupEnumeration",
+ "@id": "schema:Chapter",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerates common size groups (also known as \"size types\") for wearable products.",
- "rdfs:label": "WearableSizeGroupEnumeration",
+ "rdfs:comment": "One of the sections into which a book is divided. A chapter usually has a section number or a name.",
+ "rdfs:label": "Chapter",
"rdfs:subClassOf": {
- "@id": "schema:SizeGroupEnumeration"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://bib.schema.org"
}
},
{
- "@id": "schema:cargoVolume",
+ "@id": "schema:preOp",
"@type": "rdf:Property",
- "rdfs:comment": "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\\n\\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\\n\\nNote: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "cargoVolume",
+ "rdfs:comment": "A description of the workup, testing, and other preparations required before implanting this device.",
+ "rdfs:label": "preOp",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:MedicalDevice"
},
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:childTaxon",
+ "@id": "schema:employee",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/Taxon"
- },
- "rdfs:comment": "Closest child taxa of the taxon in question.",
- "rdfs:label": "childTaxon",
+ "rdfs:comment": "Someone working for this organization.",
+ "rdfs:label": "employee",
"schema:domainIncludes": {
- "@id": "schema:Taxon"
- },
- "schema:inverseOf": {
- "@id": "schema:parentTaxon"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Organization"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Taxon"
- },
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- }
- ]
- },
- {
- "@id": "schema:DemoAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "DemoAlbum.",
- "rdfs:label": "DemoAlbum",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:mathExpression",
- "@type": "rdf:Property",
- "rdfs:comment": "A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.",
- "rdfs:label": "mathExpression",
- "schema:domainIncludes": {
- "@id": "schema:MathSolver"
- },
+ "@id": "schema:BodyMeasurementUnderbust",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of body just below the bust. Used, for example, to fit women's swimwear.",
+ "rdfs:label": "BodyMeasurementUnderbust",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:SolveMathAction"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:reviewedBy",
+ "@id": "schema:license",
"@type": "rdf:Property",
- "rdfs:comment": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.",
- "rdfs:label": "reviewedBy",
+ "rdfs:comment": "A license document that applies to this content, typically indicated by URL.",
+ "rdfs:label": "license",
"schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Person"
+ "@id": "schema:CreativeWork"
}
]
},
{
- "@id": "schema:returnFees",
+ "@id": "schema:itemCondition",
"@type": "rdf:Property",
- "rdfs:comment": "The type of return fees for purchased products (for any return reason)",
- "rdfs:label": "returnFees",
- "schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ "rdfs:comment": "A predefined value from OfferItemCondition specifying the condition of the product or service, or the products or services included in the offer. Also used for product return policies to specify the condition of products accepted for returns.",
+ "rdfs:label": "itemCondition",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:ReturnFeesEnumeration"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "schema:OfferItemCondition"
}
},
{
- "@id": "schema:restPeriods",
+ "@id": "schema:customer",
"@type": "rdf:Property",
- "rdfs:comment": "How often one should break from the activity.",
- "rdfs:label": "restPeriods",
- "schema:domainIncludes": {
- "@id": "schema:ExercisePlan"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
+ "rdfs:comment": "Party placing the order or paying the invoice.",
+ "rdfs:label": "customer",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
"schema:rangeIncludes": [
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:alcoholWarning",
- "@type": "rdf:Property",
- "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.",
- "rdfs:label": "alcoholWarning",
- "schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Order",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.",
+ "rdfs:label": "Order",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:PublicHealth",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "Branch of medicine that pertains to the health services to improve and protect community health, especially epidemiology, sanitation, immunization, and preventive medicine.",
- "rdfs:label": "PublicHealth",
+ "@id": "schema:ArtGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An art gallery.",
+ "rdfs:label": "ArtGallery",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:EntertainmentBusiness"
}
},
{
- "@id": "schema:floorLimit",
- "@type": "rdf:Property",
- "rdfs:comment": "A floor limit is the amount of money above which credit card transactions must be authorized.",
- "rdfs:label": "floorLimit",
- "schema:domainIncludes": {
- "@id": "schema:PaymentCard"
- },
+ "@id": "schema:Nonprofit501c8",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c8: Non-profit type referring to Fraternal Beneficiary Societies and Associations.",
+ "rdfs:label": "Nonprofit501c8",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
},
{
- "@id": "schema:question",
+ "@id": "schema:wheelbase",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. A question.",
- "rdfs:label": "question",
- "rdfs:subPropertyOf": {
- "@id": "schema:object"
- },
+ "rdfs:comment": "The distance between the centers of the front and rear wheels.\\n\\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet",
+ "rdfs:label": "wheelbase",
"schema:domainIncludes": {
- "@id": "schema:AskAction"
+ "@id": "schema:Vehicle"
},
- "schema:rangeIncludes": {
- "@id": "schema:Question"
- }
- },
- {
- "@id": "schema:ContagiousnessHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about contagion mechanisms and contagiousness information over the topic.",
- "rdfs:label": "ContagiousnessHealthAspect",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:FlightReservation",
+ "@id": "schema:CreativeWork",
"@type": "rdfs:Class",
- "rdfs:comment": "A reservation for air travel.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
- "rdfs:label": "FlightReservation",
+ "rdfs:comment": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
+ "rdfs:label": "CreativeWork",
"rdfs:subClassOf": {
- "@id": "schema:Reservation"
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
}
},
{
- "@id": "schema:AppendAction",
+ "@id": "schema:OrderStatus",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of inserting at the end if an ordered collection.",
- "rdfs:label": "AppendAction",
+ "rdfs:comment": "Enumerated status values for Order.",
+ "rdfs:label": "OrderStatus",
"rdfs:subClassOf": {
- "@id": "schema:InsertAction"
+ "@id": "schema:StatusEnumeration"
}
},
{
- "@id": "schema:siblings",
+ "@id": "schema:carbohydrateContent",
"@type": "rdf:Property",
- "rdfs:comment": "A sibling of the person.",
- "rdfs:label": "siblings",
+ "rdfs:comment": "The number of grams of carbohydrates.",
+ "rdfs:label": "carbohydrateContent",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:NutritionInformation"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
- },
- "schema:supersededBy": {
- "@id": "schema:sibling"
+ "@id": "schema:Mass"
}
},
{
- "@id": "schema:employerOverview",
+ "@id": "schema:paymentDue",
"@type": "rdf:Property",
- "rdfs:comment": "A description of the employer, career opportunities and work environment for this position.",
- "rdfs:label": "employerOverview",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ "rdfs:comment": "The date that payment is due.",
+ "rdfs:label": "paymentDue",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2396"
- }
- },
- {
- "@id": "schema:differentialDiagnosis",
- "@type": "rdf:Property",
- "rdfs:comment": "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.",
- "rdfs:label": "differentialDiagnosis",
- "schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:DateTime"
},
- "schema:rangeIncludes": {
- "@id": "schema:DDxElement"
+ "schema:supersededBy": {
+ "@id": "schema:paymentDueDate"
}
},
{
- "@id": "schema:roleName",
+ "@id": "schema:tourBookingPage",
"@type": "rdf:Property",
- "rdfs:comment": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.",
- "rdfs:label": "roleName",
- "schema:domainIncludes": {
- "@id": "schema:Role"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.",
+ "rdfs:label": "tourBookingPage",
+ "schema:domainIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Place"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
}
- ]
- },
- {
- "@id": "schema:Nonprofit501c9",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations.",
- "rdfs:label": "Nonprofit501c9",
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:StadiumOrArena",
- "@type": "rdfs:Class",
- "rdfs:comment": "A stadium.",
- "rdfs:label": "StadiumOrArena",
- "rdfs:subClassOf": [
- {
- "@id": "schema:CivicStructure"
- },
- {
- "@id": "schema:SportsActivityLocation"
- }
- ]
+ "@id": "schema:LeftHandDriving",
+ "@type": "schema:SteeringPositionValue",
+ "rdfs:comment": "The steering position is on the left side of the vehicle (viewed from the main direction of driving).",
+ "rdfs:label": "LeftHandDriving",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
},
{
- "@id": "schema:Physician",
+ "@id": "schema:ComicCoverArt",
"@type": "rdfs:Class",
- "rdfs:comment": "A doctor's office.",
- "rdfs:label": "Physician",
+ "rdfs:comment": "The artwork on the cover of a comic.",
+ "rdfs:label": "ComicCoverArt",
"rdfs:subClassOf": [
{
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:ComicStory"
},
{
- "@id": "schema:MedicalOrganization"
+ "@id": "schema:CoverArt"
}
- ]
- },
- {
- "@id": "schema:MonetaryAmountDistribution",
- "@type": "rdfs:Class",
- "rdfs:comment": "A statistical distribution of monetary amounts.",
- "rdfs:label": "MonetaryAmountDistribution",
- "rdfs:subClassOf": {
- "@id": "schema:QuantitativeValueDistribution"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
}
},
{
- "@id": "schema:servicePostalAddress",
+ "@id": "schema:colorist",
"@type": "rdf:Property",
- "rdfs:comment": "The address for accessing the service by mail.",
- "rdfs:label": "servicePostalAddress",
- "schema:domainIncludes": {
- "@id": "schema:ServiceChannel"
+ "rdfs:comment": "The individual who adds color to inked drawings.",
+ "rdfs:label": "colorist",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ComicStory"
+ },
+ {
+ "@id": "schema:ComicIssue"
+ },
+ {
+ "@id": "schema:VisualArtwork"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:PostalAddress"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:diet",
+ "@id": "schema:procedureType",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of instrument. The diet used in this action.",
- "rdfs:label": "diet",
- "rdfs:subPropertyOf": {
- "@id": "schema:instrument"
- },
+ "rdfs:comment": "The type of procedure, for example Surgical, Noninvasive, or Percutaneous.",
+ "rdfs:label": "procedureType",
"schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
+ "@id": "schema:MedicalProcedure"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Diet"
+ "@id": "schema:MedicalProcedureType"
}
},
{
- "@id": "schema:programmingModel",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates whether API is managed or unmanaged.",
- "rdfs:label": "programmingModel",
- "schema:domainIncludes": {
- "@id": "schema:APIReference"
+ "@id": "schema:LikeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "LikeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementCollar",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the collar, for example of a shirt",
+ "rdfs:label": "WearableMeasurementCollar",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:TheaterEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: Theater performance.",
- "rdfs:label": "TheaterEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:ItemListUnordered",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with no explicit order.",
+ "rdfs:label": "ItemListUnordered"
+ },
+ {
+ "@id": "schema:DemoGameAvailability",
+ "@type": "schema:GameAvailabilityEnumeration",
+ "rdfs:comment": "Indicates demo game availability, i.e. a somehow limited demonstration of the full game.",
+ "rdfs:label": "DemoGameAvailability",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
}
},
{
- "@id": "schema:linkRelationship",
+ "@id": "schema:checkoutPageURLTemplate",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the relationship type of a Web link. ",
- "rdfs:label": "linkRelationship",
+ "rdfs:comment": "A URL template (RFC 6570) for a checkout page for an offer. This approach allows merchants to specify a URL for online checkout of the offered product, by interpolating parameters such as the logged in user ID, product ID, quantity, discount code etc. Parameter naming and standardization are not specified here.",
+ "rdfs:label": "checkoutPageURLTemplate",
"schema:domainIncludes": {
- "@id": "schema:LinkRole"
+ "@id": "schema:Offer"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
@@ -13433,1250 +13209,1095 @@
"@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1045"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3135"
}
},
{
- "@id": "schema:MeetingRoom",
+ "@id": "schema:Canal",
"@type": "rdfs:Class",
- "rdfs:comment": "A meeting room, conference room, or conference hall is a room provided for singular events such as business conferences and meetings (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Conference_hall).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "MeetingRoom",
+ "rdfs:comment": "A canal, like the Panama Canal.",
+ "rdfs:label": "Canal",
"rdfs:subClassOf": {
- "@id": "schema:Room"
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:InteractAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of interacting with another person or organization.",
+ "rdfs:label": "InteractAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:SideEffectsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Side effects that can be observed from the usage of the topic.",
+ "rdfs:label": "SideEffectsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:numberOfLoanPayments",
+ "@id": "schema:connectedTo",
"@type": "rdf:Property",
- "rdfs:comment": "The number of payments contractually required at origination to repay the loan. For monthly paying loans this is the number of months from the contractual first payment date to the maturity date.",
- "rdfs:label": "numberOfLoanPayments",
+ "rdfs:comment": "Other anatomical structures to which this structure is connected.",
+ "rdfs:label": "connectedTo",
"schema:domainIncludes": {
- "@id": "schema:RepaymentSpecification"
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
+ },
+ {
+ "@id": "schema:hasEnergyEfficiencyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard.",
+ "rdfs:label": "hasEnergyEfficiencyCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:EnergyEfficiencyEnumeration"
},
- "schema:source": [
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
+ },
+ {
+ "@id": "schema:citation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.",
+ "rdfs:label": "citation",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:Quantity",
- "@type": "rdfs:Class",
- "rdfs:comment": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.",
- "rdfs:label": "Quantity",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- }
- },
- {
- "@id": "schema:EventStatusType",
- "@type": "rdfs:Class",
- "rdfs:comment": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.",
- "rdfs:label": "EventStatusType",
- "rdfs:subClassOf": {
- "@id": "schema:StatusEnumeration"
- }
+ "@id": "schema:AudiobookFormat",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.",
+ "rdfs:label": "AudiobookFormat"
},
{
- "@id": "schema:countryOfOrigin",
+ "@id": "schema:suitableForDiet",
"@type": "rdf:Property",
- "rdfs:comment": "The country of origin of something, including products as well as creative works such as movie and TV content.\n\nIn the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.\n\nIn the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.",
- "rdfs:label": "countryOfOrigin",
+ "rdfs:comment": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.",
+ "rdfs:label": "suitableForDiet",
"schema:domainIncludes": [
{
- "@id": "schema:Product"
- },
- {
- "@id": "schema:TVSeason"
- },
- {
- "@id": "schema:TVEpisode"
- },
- {
- "@id": "schema:TVSeries"
- },
- {
- "@id": "schema:Movie"
+ "@id": "schema:Recipe"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:MenuItem"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Country"
+ "@id": "schema:RestrictedDiet"
}
},
{
- "@id": "schema:actionApplication",
- "@type": "rdf:Property",
- "rdfs:comment": "An application that can complete the request.",
- "rdfs:label": "actionApplication",
- "schema:domainIncludes": {
- "@id": "schema:EntryPoint"
+ "@id": "schema:MathSolver",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A math solver which is capable of solving a subset of mathematical problems.",
+ "rdfs:label": "MathSolver",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
},
- "schema:rangeIncludes": {
- "@id": "schema:SoftwareApplication"
- }
- },
- {
- "@id": "schema:reviewRating",
- "@type": "rdf:Property",
- "rdfs:comment": "The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work.",
- "rdfs:label": "reviewRating",
- "schema:domainIncludes": {
- "@id": "schema:Review"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Rating"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
}
},
{
- "@id": "schema:previousStartDate",
+ "@id": "schema:accessibilitySummary",
"@type": "rdf:Property",
- "rdfs:comment": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.",
- "rdfs:label": "previousStartDate",
+ "rdfs:comment": "A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as \"short descriptions are present but long descriptions will be needed for non-visual users\" or \"short descriptions are present and no long descriptions are needed.\"",
+ "rdfs:label": "accessibilitySummary",
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
}
},
{
- "@id": "schema:drainsTo",
+ "@id": "schema:childTaxon",
"@type": "rdf:Property",
- "rdfs:comment": "The vasculature that the vein drains into.",
- "rdfs:label": "drainsTo",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Taxon"
+ },
+ "rdfs:comment": "Closest child taxa of the taxon in question.",
+ "rdfs:label": "childTaxon",
"schema:domainIncludes": {
- "@id": "schema:Vein"
+ "@id": "schema:Taxon"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:parentTaxon"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Vessel"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
},
{
- "@id": "schema:numberOfBeds",
+ "@id": "schema:yearlyRevenue",
"@type": "rdf:Property",
- "rdfs:comment": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.",
- "rdfs:label": "numberOfBeds",
+ "rdfs:comment": "The size of the business in annual revenue.",
+ "rdfs:label": "yearlyRevenue",
"schema:domainIncludes": {
- "@id": "schema:BedDetails"
+ "@id": "schema:BusinessAudience"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:QuantitativeValue"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryB",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class B as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryB",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:ArchiveComponent",
+ "@id": "schema:Collection",
"@type": "rdfs:Class",
- "rdfs:comment": {
- "@language": "en",
- "@value": "An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections."
- },
- "rdfs:label": {
- "@language": "en",
- "@value": "ArchiveComponent"
- },
+ "rdfs:comment": "A collection of items, e.g. creative works or products.",
+ "rdfs:label": "Collection",
"rdfs:subClassOf": {
"@id": "schema:CreativeWork"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:associatedArticle",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A NewsArticle associated with the Media Object.",
+ "rdfs:label": "associatedArticle",
+ "schema:domainIncludes": {
+ "@id": "schema:MediaObject"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ "schema:rangeIncludes": {
+ "@id": "schema:NewsArticle"
}
},
{
- "@id": "schema:BarOrPub",
+ "@id": "schema:ExerciseAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A bar or pub.",
- "rdfs:label": "BarOrPub",
+ "rdfs:comment": "The act of participating in exertive activity for the purposes of improving health and fitness.",
+ "rdfs:label": "ExerciseAction",
"rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:PlayAction"
}
},
{
- "@id": "schema:EnergyConsumptionDetails",
+ "@id": "schema:GameServerStatus",
"@type": "rdfs:Class",
- "rdfs:comment": "EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US.",
- "rdfs:label": "EnergyConsumptionDetails",
+ "rdfs:comment": "Status of a game server.",
+ "rdfs:label": "GameServerStatus",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "schema:StatusEnumeration"
}
},
{
- "@id": "schema:EducationalOccupationalCredential",
+ "@id": "schema:Gene",
"@type": "rdfs:Class",
- "rdfs:comment": "An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc., that may be awarded to a person or other entity that meets the requirements defined by the credentialer.",
- "rdfs:label": "EducationalOccupationalCredential",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "A discrete unit of inheritance which affects one or more biological traits (Source: [https://en.wikipedia.org/wiki/Gene](https://en.wikipedia.org/wiki/Gene)). Examples include FOXP2 (Forkhead box protein P2), SCARNA21 (small Cajal body-specific RNA 21), A- (agouti genotype).",
+ "rdfs:label": "Gene",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:BioChemEntity"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
},
{
- "@id": "schema:drugUnit",
- "@type": "rdf:Property",
- "rdfs:comment": "The unit in which the drug is measured, e.g. '5 mg tablet'.",
- "rdfs:label": "drugUnit",
- "schema:domainIncludes": [
- {
- "@id": "schema:Drug"
- },
- {
- "@id": "schema:DrugCost"
- }
- ],
+ "@id": "schema:Downpayment",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments.",
+ "rdfs:label": "Downpayment",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
}
},
{
- "@id": "schema:legislationLegalForce",
+ "@id": "schema:scheduleTimezone",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#in_force"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#in_force"
- },
- "rdfs:comment": "Whether the legislation is currently in force, not in force, or partially in force.",
- "rdfs:label": "legislationLegalForce",
+ "rdfs:comment": "Indicates the timezone for which the time(s) indicated in the [[Schedule]] are given. The value provided should be among those listed in the IANA Time Zone Database.",
+ "rdfs:label": "scheduleTimezone",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:Schedule"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:LegalForceStatus"
+ "@id": "schema:Text"
},
- "schema:source": [
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- }
- ]
- },
- {
- "@id": "schema:MulticellularParasite",
- "@type": "schema:InfectiousAgentClass",
- "rdfs:comment": "Multicellular parasite that causes an infection.",
- "rdfs:label": "MulticellularParasite",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:FindAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of finding an object.\\n\\nRelated actions:\\n\\n* [[SearchAction]]: FindAction is generally lead by a SearchAction, but not necessarily.",
- "rdfs:label": "FindAction",
- "rdfs:subClassOf": {
- "@id": "schema:Action"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
}
},
{
- "@id": "schema:OfferForLease",
- "@type": "rdfs:Class",
- "rdfs:comment": "An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose\n [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
- "rdfs:label": "OfferForLease",
- "rdfs:subClassOf": {
- "@id": "schema:Offer"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:dropoffLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Where a rental car can be dropped off.",
+ "rdfs:label": "dropoffLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:RentalCarReservation"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:ExchangeRefund",
- "@type": "schema:RefundTypeEnumeration",
- "rdfs:comment": "Specifies that a refund can be done as an exchange for the same product.",
- "rdfs:label": "ExchangeRefund",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:knows",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The most generic bi-directional social/work relation.",
+ "rdfs:label": "knows",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:availableService",
- "@type": "rdf:Property",
- "rdfs:comment": "A medical service available from this provider.",
- "rdfs:label": "availableService",
- "schema:domainIncludes": [
- {
- "@id": "schema:MedicalClinic"
- },
- {
- "@id": "schema:Physician"
- },
- {
- "@id": "schema:Hospital"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:MedicalTest"
- },
- {
- "@id": "schema:MedicalProcedure"
- },
- {
- "@id": "schema:MedicalTherapy"
- }
- ]
+ "@id": "schema:Invoice",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statement of the money due for goods or services; a bill.",
+ "rdfs:label": "Invoice",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
},
{
- "@id": "schema:doseValue",
+ "@id": "schema:broadcastAffiliateOf",
"@type": "rdf:Property",
- "rdfs:comment": "The value of the dose, e.g. 500.",
- "rdfs:label": "doseValue",
+ "rdfs:comment": "The media network(s) whose content is broadcast on this station.",
+ "rdfs:label": "broadcastAffiliateOf",
"schema:domainIncludes": {
- "@id": "schema:DoseSchedule"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:BroadcastService"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Number"
- },
- {
- "@id": "schema:QualitativeValue"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
},
{
- "@id": "schema:proprietaryName",
+ "@id": "schema:relatedTo",
"@type": "rdf:Property",
- "rdfs:comment": "Proprietary name given to the diet plan, typically by its originator or creator.",
- "rdfs:label": "proprietaryName",
- "schema:domainIncludes": [
- {
- "@id": "schema:Drug"
- },
- {
- "@id": "schema:DietarySupplement"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "rdfs:comment": "The most generic familial relation.",
+ "rdfs:label": "relatedTo",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:programPrerequisites",
+ "@id": "schema:superEvent",
"@type": "rdf:Property",
- "rdfs:comment": "Prerequisites for enrolling in the program.",
- "rdfs:label": "programPrerequisites",
+ "rdfs:comment": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
+ "rdfs:label": "superEvent",
"schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:Event"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:subEvent"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:EducationalOccupationalCredential"
- },
- {
- "@id": "schema:Course"
- },
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:AlignmentObject"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:TipAction",
+ "@id": "schema:PostOffice",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.",
- "rdfs:label": "TipAction",
+ "rdfs:comment": "A post office.",
+ "rdfs:label": "PostOffice",
"rdfs:subClassOf": {
- "@id": "schema:TradeAction"
- }
- },
- {
- "@id": "schema:numberOfRooms",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue.",
- "rdfs:label": "numberOfRooms",
- "schema:domainIncludes": [
- {
- "@id": "schema:LodgingBusiness"
- },
- {
- "@id": "schema:Apartment"
- },
- {
- "@id": "schema:Suite"
- },
- {
- "@id": "schema:Accommodation"
- },
- {
- "@id": "schema:SingleFamilyResidence"
- },
- {
- "@id": "schema:House"
- },
- {
- "@id": "schema:FloorPlan"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:Number"
- }
- ],
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "schema:GovernmentOffice"
}
},
{
- "@id": "schema:availableIn",
+ "@id": "schema:relatedDrug",
"@type": "rdf:Property",
- "rdfs:comment": "The location in which the strength is available.",
- "rdfs:label": "availableIn",
+ "rdfs:comment": "Any other drug related to this one, for example commonly-prescribed alternatives.",
+ "rdfs:label": "relatedDrug",
"schema:domainIncludes": {
- "@id": "schema:DrugStrength"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:Drug"
}
},
{
- "@id": "schema:hasBioChemEntityPart",
+ "@id": "schema:replyToUrl",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org"
+ "rdfs:comment": "The URL at which a reply may be posted to the specified UserComment.",
+ "rdfs:label": "replyToUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
},
- "rdfs:comment": "Indicates a BioChemEntity that (in some sense) has this BioChemEntity as a part. ",
- "rdfs:label": "hasBioChemEntityPart",
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:providesBroadcastService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The BroadcastService offered on this channel.",
+ "rdfs:label": "providesBroadcastService",
"schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:BroadcastChannel"
},
"schema:inverseOf": {
- "@id": "schema:isPartOfBioChemEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:hasBroadcastChannel"
},
"schema:rangeIncludes": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:BroadcastService"
}
},
{
- "@id": "schema:AskAction",
+ "@id": "schema:TextDigitalDocument",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n* [[ReplyAction]]: Appears generally as a response to AskAction.",
- "rdfs:label": "AskAction",
+ "rdfs:comment": "A file composed primarily of text.",
+ "rdfs:label": "TextDigitalDocument",
"rdfs:subClassOf": {
- "@id": "schema:CommunicateAction"
+ "@id": "schema:DigitalDocument"
}
},
{
- "@id": "schema:parentTaxon",
+ "@id": "schema:vehicleIdentificationNumber",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/Taxon"
+ "rdfs:comment": "The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.",
+ "rdfs:label": "vehicleIdentificationNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:serialNumber"
},
- "rdfs:comment": "Closest parent taxon of the taxon in question.",
- "rdfs:label": "parentTaxon",
"schema:domainIncludes": {
- "@id": "schema:Taxon"
- },
- "schema:inverseOf": {
- "@id": "schema:childTaxon"
+ "@id": "schema:Vehicle"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Taxon"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
},
{
- "@id": "schema:HVACBusiness",
+ "@id": "schema:Flight",
"@type": "rdfs:Class",
- "rdfs:comment": "A business that provide Heating, Ventilation and Air Conditioning services.",
- "rdfs:label": "HVACBusiness",
+ "rdfs:comment": "An airline flight.",
+ "rdfs:label": "Flight",
"rdfs:subClassOf": {
- "@id": "schema:HomeAndConstructionBusiness"
+ "@id": "schema:Trip"
}
},
{
- "@id": "schema:applicableLocation",
- "@type": "rdf:Property",
- "rdfs:comment": "The location in which the status applies.",
- "rdfs:label": "applicableLocation",
- "schema:domainIncludes": [
- {
- "@id": "schema:DrugCost"
- },
- {
- "@id": "schema:DrugLegalStatus"
- }
+ "@id": "schema:Text",
+ "@type": [
+ "rdfs:Class",
+ "schema:DataType"
],
+ "rdfs:comment": "Data type: Text.",
+ "rdfs:label": "Text"
+ },
+ {
+ "@id": "schema:handlingTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup. Typical properties: minValue, maxValue, unitCode (d for DAY). This is by common convention assumed to mean business days (if a unitCode is used, coded as \"d\"), i.e. only counting days when the business normally operates.",
+ "rdfs:label": "handlingTime",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:RadioSeries",
- "@type": "rdfs:Class",
- "rdfs:comment": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.",
- "rdfs:label": "RadioSeries",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWorkSeries"
+ "@id": "schema:DecontextualizedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'missing context' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'missing context': Presenting unaltered video in an inaccurate manner that misrepresents the footage. For example, using incorrect dates or locations, altering the transcript or sharing brief clips from a longer video to mislead viewers. (A video rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] to be 'missing context': Presenting unaltered images in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An image rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] with embedded text to be 'missing context': An unaltered image presented in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An 'original' image with inaccurate text would generally fall in this category.)\n\nFor an [[AudioObject]] to be 'missing context': Unaltered audio presented in an inaccurate manner that misrepresents it. For example, using incorrect dates or locations, or sharing brief clips from a longer recording to mislead viewers. (Audio rated “original” can also be missing context.)\n",
+ "rdfs:label": "DecontextualizedContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:TreatmentIndication",
+ "@id": "schema:BedType",
"@type": "rdfs:Class",
- "rdfs:comment": "An indication for treating an underlying condition, symptom, etc.",
- "rdfs:label": "TreatmentIndication",
+ "rdfs:comment": "A type of bed. This is used for indicating the bed or beds available in an accommodation.",
+ "rdfs:label": "BedType",
"rdfs:subClassOf": {
- "@id": "schema:MedicalIndication"
+ "@id": "schema:QualitativeValue"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1262"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ ]
},
{
- "@id": "schema:error",
+ "@id": "schema:sameAs",
"@type": "rdf:Property",
- "rdfs:comment": "For failed actions, more information on the cause of the failure.",
- "rdfs:label": "error",
+ "rdfs:comment": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
+ "rdfs:label": "sameAs",
"schema:domainIncludes": {
- "@id": "schema:Action"
+ "@id": "schema:Thing"
},
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:WesternConventional",
- "@type": "schema:MedicineSystem",
- "rdfs:comment": "The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.",
- "rdfs:label": "WesternConventional",
+ "@id": "schema:doesNotShip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates when shipping to a particular [[shippingDestination]] is not available.",
+ "rdfs:label": "doesNotShip",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ShippingRateSettings"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:TrainTrip",
+ "@id": "schema:BlogPosting",
"@type": "rdfs:Class",
- "rdfs:comment": "A trip on a commercial train line.",
- "rdfs:label": "TrainTrip",
+ "rdfs:comment": "A blog post.",
+ "rdfs:label": "BlogPosting",
"rdfs:subClassOf": {
- "@id": "schema:Trip"
+ "@id": "schema:SocialMediaPosting"
}
},
{
- "@id": "schema:JobPosting",
+ "@id": "schema:Distance",
"@type": "rdfs:Class",
- "rdfs:comment": "A listing that describes a job opening in a certain organization.",
- "rdfs:label": "JobPosting",
+ "rdfs:comment": "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.",
+ "rdfs:label": "Distance",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Quantity"
}
},
{
- "@id": "schema:printPage",
+ "@id": "schema:energyEfficiencyScaleMin",
"@type": "rdf:Property",
- "rdfs:comment": "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).",
- "rdfs:label": "printPage",
+ "rdfs:comment": "Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
+ "rdfs:label": "energyEfficiencyScaleMin",
"schema:domainIncludes": {
- "@id": "schema:NewsArticle"
+ "@id": "schema:EnergyConsumptionDetails"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:BusStation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A bus station.",
- "rdfs:label": "BusStation",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
- }
- },
- {
- "@id": "schema:PlayAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\\n\\nRelated actions:\\n\\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.",
- "rdfs:label": "PlayAction",
- "rdfs:subClassOf": {
- "@id": "schema:Action"
- }
- },
- {
- "@id": "schema:WearableSizeSystemUK",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "United Kingdom size system for wearables.",
- "rdfs:label": "WearableSizeSystemUK",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:EUEnergyEfficiencyEnumeration"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:fuelEfficiency",
+ "@id": "schema:worksFor",
"@type": "rdf:Property",
- "rdfs:comment": "The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\\n\\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel economy to another value.",
- "rdfs:label": "fuelEfficiency",
+ "rdfs:comment": "Organizations that the person works for.",
+ "rdfs:label": "worksFor",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:WearableMeasurementOutsideLeg",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the outside leg, for example of pants",
- "rdfs:label": "WearableMeasurementOutsideLeg",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
+ "@id": "schema:ReservationPending",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a reservation when a request has been sent, but not confirmed.",
+ "rdfs:label": "ReservationPending"
},
{
- "@id": "schema:Collection",
+ "@id": "schema:LodgingReservation",
"@type": "rdfs:Class",
- "rdfs:comment": "A collection of items e.g. creative works or products.",
- "rdfs:label": "Collection",
+ "rdfs:comment": "A reservation for lodging at a hotel, motel, inn, etc.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
+ "rdfs:label": "LodgingReservation",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- }
- },
- {
- "@id": "schema:manufacturer",
- "@type": "rdf:Property",
- "rdfs:comment": "The manufacturer of the product.",
- "rdfs:label": "manufacturer",
- "schema:domainIncludes": [
- {
- "@id": "schema:DietarySupplement"
- },
- {
- "@id": "schema:Drug"
- },
- {
- "@id": "schema:Product"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
- }
- },
- {
- "@id": "schema:evidenceLevel",
- "@type": "rdf:Property",
- "rdfs:comment": "Strength of evidence of the data used to formulate the guideline (enumerated).",
- "rdfs:label": "evidenceLevel",
- "schema:domainIncludes": {
- "@id": "schema:MedicalGuideline"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalEvidenceLevel"
+ "@id": "schema:Reservation"
}
},
{
- "@id": "schema:merchantReturnLink",
+ "@id": "schema:restockingFee",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies a Web page or service by URL, for product returns.",
- "rdfs:label": "merchantReturnLink",
+ "rdfs:comment": "Use [[MonetaryAmount]] to specify a fixed restocking fee for product returns, or use [[Number]] to specify a percentage of the product price paid by the customer.",
+ "rdfs:label": "restockingFee",
"schema:domainIncludes": {
"@id": "schema:MerchantReturnPolicy"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:URL"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
- }
- },
- {
- "@id": "schema:programmingLanguage",
- "@type": "rdf:Property",
- "rdfs:comment": "The computer programming language.",
- "rdfs:label": "programmingLanguage",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareSourceCode"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:ComputerLanguage"
+ "@id": "schema:MonetaryAmount"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Number"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
},
{
- "@id": "schema:estimatedCost",
+ "@id": "schema:geoWithin",
"@type": "rdf:Property",
- "rdfs:comment": "The estimated cost of the supply or supplies consumed when performing instructions.",
- "rdfs:label": "estimatedCost",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoWithin",
"schema:domainIncludes": [
{
- "@id": "schema:HowToSupply"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:HowTo"
+ "@id": "schema:Place"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Place"
}
]
},
{
- "@id": "schema:MoveAction",
+ "@id": "schema:SearchResultsPage",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.",
- "rdfs:label": "MoveAction",
+ "rdfs:comment": "Web page type: Search results page.",
+ "rdfs:label": "SearchResultsPage",
"rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:WebPage"
}
},
{
- "@id": "schema:Skin",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Skin assessment with clinical examination.",
- "rdfs:label": "Skin",
+ "@id": "schema:physicalRequirement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
+ "rdfs:label": "physicalRequirement",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
}
},
{
- "@id": "schema:runsTo",
+ "@id": "schema:gameServer",
"@type": "rdf:Property",
- "rdfs:comment": "The vasculature the lymphatic structure runs, or efferents, to.",
- "rdfs:label": "runsTo",
+ "rdfs:comment": "The server on which it is possible to play the game.",
+ "rdfs:label": "gameServer",
"schema:domainIncludes": {
- "@id": "schema:LymphaticVessel"
+ "@id": "schema:VideoGame"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:game"
},
"schema:rangeIncludes": {
- "@id": "schema:Vessel"
+ "@id": "schema:GameServer"
}
},
{
- "@id": "schema:director",
+ "@id": "schema:financialAidEligible",
"@type": "rdf:Property",
- "rdfs:comment": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.",
- "rdfs:label": "director",
- "schema:domainIncludes": [
- {
- "@id": "schema:TVSeries"
- },
- {
- "@id": "schema:CreativeWorkSeason"
- },
- {
- "@id": "schema:MovieSeries"
- },
- {
- "@id": "schema:Movie"
- },
+ "rdfs:comment": "A financial aid type or program which students may use to pay for tuition or fees associated with the program.",
+ "rdfs:label": "financialAidEligible",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Episode"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:VideoGameSeries"
- },
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2418"
+ }
+ },
+ {
+ "@id": "schema:award",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An award won by or for this item.",
+ "rdfs:label": "award",
+ "schema:domainIncludes": [
{
- "@id": "schema:VideoObject"
+ "@id": "schema:Service"
},
{
- "@id": "schema:RadioSeries"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Event"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Clip"
+ "@id": "schema:Person"
},
{
- "@id": "schema:VideoGame"
+ "@id": "schema:Product"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:FDAcategoryD",
- "@type": "schema:DrugPregnancyCategory",
- "rdfs:comment": "A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.",
- "rdfs:label": "FDAcategoryD",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:equal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is equal to the object.",
+ "rdfs:label": "equal",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:MiddleSchool",
+ "@id": "schema:TennisComplex",
"@type": "rdfs:Class",
- "rdfs:comment": "A middle school (typically for children aged around 11-14, although this varies somewhat).",
- "rdfs:label": "MiddleSchool",
+ "rdfs:comment": "A tennis complex.",
+ "rdfs:label": "TennisComplex",
"rdfs:subClassOf": {
- "@id": "schema:EducationalOrganization"
+ "@id": "schema:SportsActivityLocation"
}
},
{
- "@id": "schema:lyrics",
+ "@id": "schema:Embassy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An embassy.",
+ "rdfs:label": "Embassy",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:cvdFacilityId",
"@type": "rdf:Property",
- "rdfs:comment": "The words in the song.",
- "rdfs:label": "lyrics",
+ "rdfs:comment": "Identifier of the NHSN facility that this data record applies to. Use [[cvdFacilityCounty]] to indicate the county. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.",
+ "rdfs:label": "cvdFacilityId",
"schema:domainIncludes": {
- "@id": "schema:MusicComposition"
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:GraphicNovel",
- "@type": "schema:BookFormatType",
- "rdfs:comment": "Book format: GraphicNovel. May represent a bound collection of ComicIssue instances.",
- "rdfs:label": "GraphicNovel",
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- }
+ "@id": "schema:DamagedCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is damaged.",
+ "rdfs:label": "DamagedCondition"
},
{
- "@id": "schema:brand",
- "@type": "rdf:Property",
- "rdfs:comment": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
- "rdfs:label": "brand",
- "schema:domainIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- },
+ "@id": "schema:UnofficialLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates that a document has no particular or special standing (e.g. a republication of a law by a private publisher).",
+ "rdfs:label": "UnofficialLegalValue",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:Product"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:Service"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Brand"
- }
- ]
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-unofficial"
+ }
},
{
- "@id": "schema:PostalCodeRangeSpecification",
+ "@id": "schema:MedicalGuideline",
"@type": "rdfs:Class",
- "rdfs:comment": "Indicates a range of postalcodes, usually defined as the set of valid codes between [[postalCodeBegin]] and [[postalCodeEnd]], inclusively.",
- "rdfs:label": "PostalCodeRangeSpecification",
+ "rdfs:comment": "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.",
+ "rdfs:label": "MedicalGuideline",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "@id": "schema:MedicalEntity"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:CampingPitch",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\\n\\n\nIn British English a campsite, or campground, is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites.\n(Source: Wikipedia, see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite).)\\n\\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n",
+ "rdfs:label": "CampingPitch",
+ "rdfs:subClassOf": {
+ "@id": "schema:Accommodation"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:application",
- "@type": "rdf:Property",
- "rdfs:comment": "An application that can complete the request.",
- "rdfs:label": "application",
- "schema:domainIncludes": {
- "@id": "schema:EntryPoint"
- },
- "schema:rangeIncludes": {
- "@id": "schema:SoftwareApplication"
- },
- "schema:supersededBy": {
- "@id": "schema:actionApplication"
- }
- },
- {
- "@id": "schema:Emergency",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.",
- "rdfs:label": "Emergency",
+ "@id": "schema:LoseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of being defeated in a competitive activity.",
+ "rdfs:label": "LoseAction",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:AchieveAction"
}
},
{
- "@id": "schema:duns",
+ "@id": "schema:eventSchedule",
"@type": "rdf:Property",
- "rdfs:comment": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
- "rdfs:label": "duns",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "rdfs:comment": "Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of\n repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly\n gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that\n is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated\n [[Schedule]], this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months\n or seasons.",
+ "rdfs:label": "eventSchedule",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Schedule"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
}
},
{
- "@id": "schema:storageRequirements",
+ "@id": "schema:webCheckinTime",
"@type": "rdf:Property",
- "rdfs:comment": "Storage requirements (free space required).",
- "rdfs:label": "storageRequirements",
+ "rdfs:comment": "The time when a passenger can check into the flight online.",
+ "rdfs:label": "webCheckinTime",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:Flight"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
},
{
- "@id": "schema:SingleRelease",
- "@type": "schema:MusicAlbumReleaseType",
- "rdfs:comment": "SingleRelease.",
- "rdfs:label": "SingleRelease",
+ "@id": "schema:WearableSizeGroupTall",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Tall\" for wearables.",
+ "rdfs:label": "WearableSizeGroupTall",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:significance",
- "@type": "rdf:Property",
- "rdfs:comment": "The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.",
- "rdfs:label": "significance",
- "schema:domainIncludes": {
- "@id": "schema:SuperficialAnatomy"
- },
+ "@id": "schema:KosherDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Jewish dietary practices.",
+ "rdfs:label": "KosherDiet"
+ },
+ {
+ "@id": "schema:FDAcategoryB",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.",
+ "rdfs:label": "FDAcategoryB",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
}
},
{
- "@id": "schema:Nonprofit501c15",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c15: Non-profit type referring to Mutual Insurance Companies or Associations.",
- "rdfs:label": "Nonprofit501c15",
+ "@id": "schema:WearableSizeGroupJuniors",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Juniors\" for wearables.",
+ "rdfs:label": "WearableSizeGroupJuniors",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:EmployerAggregateRating",
+ "@id": "schema:ElementarySchool",
"@type": "rdfs:Class",
- "rdfs:comment": "An aggregate rating of an Organization related to its role as an employer.",
- "rdfs:label": "EmployerAggregateRating",
+ "rdfs:comment": "An elementary school.",
+ "rdfs:label": "ElementarySchool",
"rdfs:subClassOf": {
- "@id": "schema:AggregateRating"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1689"
+ "@id": "schema:EducationalOrganization"
}
},
{
- "@id": "schema:category",
- "@type": "rdf:Property",
- "rdfs:comment": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
- "rdfs:label": "category",
- "schema:domainIncludes": [
- {
- "@id": "schema:PhysicalActivity"
- },
- {
- "@id": "schema:Invoice"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:Recommendation"
- },
- {
- "@id": "schema:Service"
- },
- {
- "@id": "schema:SpecialAnnouncement"
- },
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:ActionAccessSpecification"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:PhysicalActivityCategory"
- },
- {
- "@id": "schema:Thing"
- },
- {
- "@id": "schema:URL"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
- }
- ]
- },
- {
- "@id": "schema:medicalAudience",
+ "@id": "schema:streetAddress",
"@type": "rdf:Property",
- "rdfs:comment": "Medical audience for page.",
- "rdfs:label": "medicalAudience",
+ "rdfs:comment": "The street address. For example, 1600 Amphitheatre Pkwy.",
+ "rdfs:label": "streetAddress",
"schema:domainIncludes": {
- "@id": "schema:MedicalWebPage"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:PostalAddress"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:MedicalAudienceType"
- },
- {
- "@id": "schema:MedicalAudience"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:AutoBodyShop",
+ "@id": "schema:EmailMessage",
"@type": "rdfs:Class",
- "rdfs:comment": "Auto body shop.",
- "rdfs:label": "AutoBodyShop",
+ "rdfs:comment": "An email message.",
+ "rdfs:label": "EmailMessage",
"rdfs:subClassOf": {
- "@id": "schema:AutomotiveBusiness"
+ "@id": "schema:Message"
}
},
{
- "@id": "schema:EmploymentAgency",
+ "@id": "schema:SaleEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "An employment agency.",
- "rdfs:label": "EmploymentAgency",
+ "rdfs:comment": "Event type: Sales event.",
+ "rdfs:label": "SaleEvent",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:Ticket",
+ "@id": "schema:ControlAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Used to describe a ticket to an event, a flight, a bus ride, etc.",
- "rdfs:label": "Ticket",
+ "rdfs:comment": "An agent controls a device or application.",
+ "rdfs:label": "ControlAction",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:rxcui",
+ "@id": "schema:sportsTeam",
"@type": "rdf:Property",
- "rdfs:comment": "The RxCUI drug identifier from RXNORM.",
- "rdfs:label": "rxcui",
+ "rdfs:comment": "A sub property of participant. The sports team that participated on this action.",
+ "rdfs:label": "sportsTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SportsTeam"
+ }
+ },
+ {
+ "@id": "schema:GameAvailabilityEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "For a [[VideoGame]], such as used with a [[PlayGameAction]], an enumeration of the kind of game availability offered. ",
+ "rdfs:label": "GameAvailabilityEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
}
},
{
- "@id": "schema:editEIDR",
+ "@id": "schema:ActionStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The status of an Action.",
+ "rdfs:label": "ActionStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:clipNumber",
"@type": "rdf:Property",
- "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" whose [[titleEIDR]] is \"10.5240/7EC7-228A-510A-053E-CBB8-J\", has several edits e.g. \"10.5240/1F2A-E1C5-680A-14C6-E76B-I\" and \"10.5240/8A35-3BEE-6497-5D12-9E4F-3\".\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
- "rdfs:label": "editEIDR",
+ "rdfs:comment": "Position of the clip within an ordered group of clips.",
+ "rdfs:label": "clipNumber",
"rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "@id": "schema:position"
},
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Clip"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Integer"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Text"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2469"
+ ]
+ },
+ {
+ "@id": "schema:broadcaster",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization owning or operating the broadcast service.",
+ "rdfs:label": "broadcaster",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:WearableSizeGroupRegular",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Regular\" for wearables.",
- "rdfs:label": "WearableSizeGroupRegular",
+ "@id": "schema:partOfSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomical or organ system that this structure is part of.",
+ "rdfs:label": "partOfSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalSystem"
}
},
{
- "@id": "schema:containsPlace",
+ "@id": "schema:articleBody",
"@type": "rdf:Property",
- "rdfs:comment": "The basic containment relation between a place and another that it contains.",
- "rdfs:label": "containsPlace",
+ "rdfs:comment": "The actual body of the article.",
+ "rdfs:label": "articleBody",
"schema:domainIncludes": {
- "@id": "schema:Place"
- },
- "schema:inverseOf": {
- "@id": "schema:containedInPlace"
+ "@id": "schema:Article"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:SatireOrParodyContent",
- "@type": "schema:MediaManipulationRatingEnumeration",
- "rdfs:comment": "Content coded 'satire or parody content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'satire or parody content': A video that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[ImageObject]] with embedded text to be 'satire or parody content': An image that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n\nFor an [[AudioObject]] to be 'satire or parody content': Audio that was created as political or humorous commentary and is presented in that context. (Reshares of satire/parody content that do not include relevant context are more likely to fall under the “missing context” rating.)\n",
- "rdfs:label": "SatireOrParodyContent",
+ "@id": "schema:contactlessPayment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology.",
+ "rdfs:label": "contactlessPayment",
+ "schema:domainIncludes": {
+ "@id": "schema:PaymentCard"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:MediaReviewItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Represents an item or group of closely related items treated as a unit for the sake of evaluation in a [[MediaReview]]. Authorship etc. apply to the items rather than to the curation/grouping or reviewing party.",
+ "rdfs:label": "MediaReviewItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -14685,730 +14306,623 @@
}
},
{
- "@id": "schema:BroadcastFrequencySpecification",
+ "@id": "schema:ImageObjectSnapshot",
"@type": "rdfs:Class",
- "rdfs:comment": "The frequency in MHz and the modulation used for a particular BroadcastService.",
- "rdfs:label": "BroadcastFrequencySpecification",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[ImageObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata (e.g. XMP, EXIF) the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "ImageObjectSnapshot",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:ImageObject"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:productionCompany",
- "@type": "rdf:Property",
- "rdfs:comment": "The production company or studio responsible for the item e.g. series, video game, episode etc.",
- "rdfs:label": "productionCompany",
- "schema:domainIncludes": [
- {
- "@id": "schema:MediaObject"
- },
- {
- "@id": "schema:CreativeWorkSeason"
- },
- {
- "@id": "schema:RadioSeries"
- },
- {
- "@id": "schema:MovieSeries"
- },
- {
- "@id": "schema:Episode"
- },
- {
- "@id": "schema:Movie"
- },
+ "@id": "schema:Pharmacy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A pharmacy or drugstore.",
+ "rdfs:label": "Pharmacy",
+ "rdfs:subClassOf": [
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:MedicalBusiness"
},
{
- "@id": "schema:TVSeries"
+ "@id": "schema:MedicalOrganization"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
- }
+ ]
},
{
- "@id": "schema:hasMerchantReturnPolicy",
+ "@id": "schema:fatContent",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies a MerchantReturnPolicy that may be applicable.",
- "rdfs:label": "hasMerchantReturnPolicy",
- "schema:domainIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:Offer"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "rdfs:comment": "The number of grams of fat.",
+ "rdfs:label": "fatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
},
"schema:rangeIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "schema:Mass"
}
},
{
- "@id": "schema:RadioStation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A radio station.",
- "rdfs:label": "RadioStation",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:acceptedOffer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.",
+ "rdfs:label": "acceptedOffer",
+ "schema:domainIncludes": {
+ "@id": "schema:Order"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
}
},
{
- "@id": "schema:GenderType",
- "@type": "rdfs:Class",
- "rdfs:comment": "An enumeration of genders.",
- "rdfs:label": "GenderType",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:includedDataCatalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').",
+ "rdfs:label": "includedDataCatalog",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataCatalog"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:includedInDataCatalog"
}
},
{
- "@id": "schema:VeterinaryCare",
+ "@id": "schema:ContactPoint",
"@type": "rdfs:Class",
- "rdfs:comment": "A vet's office.",
- "rdfs:label": "VeterinaryCare",
+ "rdfs:comment": "A contact point—for example, a Customer Complaints department.",
+ "rdfs:label": "ContactPoint",
"rdfs:subClassOf": {
- "@id": "schema:MedicalOrganization"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:StructuredValue"
}
},
{
- "@id": "schema:sdPublisher",
+ "@id": "schema:labelDetails",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The\n[[sdPublisher]] property helps make such practices more explicit.",
- "rdfs:label": "sdPublisher",
+ "rdfs:comment": "Link to the drug's label details.",
+ "rdfs:label": "labelDetails",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ],
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:PublicHolidays",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a \"day of the week\", it can be used with [[OpeningHoursSpecification]]. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs.",
+ "rdfs:label": "PublicHolidays",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:UnofficialLegalValue",
- "@type": "schema:LegalValueLevel",
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#LegalValue-unofficial"
- },
- "rdfs:comment": "Indicates that a document has no particular or special standing (e.g. a republication of a law by a private publisher).",
- "rdfs:label": "UnofficialLegalValue",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- }
- ]
- },
- {
- "@id": "schema:Series",
+ "@id": "schema:BusTrip",
"@type": "rdfs:Class",
- "rdfs:comment": "A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].",
- "rdfs:label": "Series",
+ "rdfs:comment": "A trip on a commercial bus line.",
+ "rdfs:label": "BusTrip",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Trip"
}
},
{
- "@id": "schema:Nonprofit501c10",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c10: Non-profit type referring to Domestic Fraternal Societies and Associations.",
- "rdfs:label": "Nonprofit501c10",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "schema:AutomotiveBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Car repair, sales, or parts.",
+ "rdfs:label": "AutomotiveBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:borrower",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The person that borrows the object being lent.",
- "rdfs:label": "borrower",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
- },
- "schema:domainIncludes": {
- "@id": "schema:LendAction"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Rating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.",
+ "rdfs:label": "Rating",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:GlutenFreeDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet exclusive of gluten.",
- "rdfs:label": "GlutenFreeDiet"
+ "@id": "schema:Physician",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A doctor's office.",
+ "rdfs:label": "Physician",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalBusiness"
+ }
+ ]
},
{
- "@id": "schema:handlingTime",
+ "@id": "schema:subtitleLanguage",
"@type": "rdf:Property",
- "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup. Typical properties: minValue, maxValue, unitCode (d for DAY). This is by common convention assumed to mean business days (if a unitCode is used, coded as \"d\"), i.e. only counting days when the business normally operates.",
- "rdfs:label": "handlingTime",
- "schema:domainIncludes": {
- "@id": "schema:ShippingDeliveryTime"
- },
+ "rdfs:comment": "Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).",
+ "rdfs:label": "subtitleLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ScreeningEvent"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:BroadcastEvent"
+ },
+ {
+ "@id": "schema:TVEpisode"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Language"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2110"
}
},
{
- "@id": "schema:actionAccessibilityRequirement",
- "@type": "rdf:Property",
- "rdfs:comment": "A set of requirements that a must be fulfilled in order to perform an Action. If more than one value is specied, fulfilling one set of requirements will allow the Action to be performed.",
- "rdfs:label": "actionAccessibilityRequirement",
- "schema:domainIncludes": {
- "@id": "schema:ConsumeAction"
- },
- "schema:rangeIncludes": {
- "@id": "schema:ActionAccessSpecification"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
- }
+ "@id": "schema:EventCancelled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s).",
+ "rdfs:label": "EventCancelled"
},
{
- "@id": "schema:costCurrency",
- "@type": "rdf:Property",
- "rdfs:comment": "The currency (in 3-letter of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217. ",
- "rdfs:label": "costCurrency",
- "schema:domainIncludes": {
- "@id": "schema:DrugCost"
- },
+ "@id": "schema:ResultsNotAvailable",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Results are not available.",
+ "rdfs:label": "ResultsNotAvailable",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:URL",
- "@type": "rdfs:Class",
- "rdfs:comment": "Data type: URL.",
- "rdfs:label": "URL",
- "rdfs:subClassOf": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:WinAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of achieving victory in a competitive activity.",
- "rdfs:label": "WinAction",
- "rdfs:subClassOf": {
- "@id": "schema:AchieveAction"
- }
- },
- {
- "@id": "schema:Store",
- "@type": "rdfs:Class",
- "rdfs:comment": "A retail good store.",
- "rdfs:label": "Store",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:SatiricalArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "An [[Article]] whose content is primarily [[satirical]](https://en.wikipedia.org/wiki/Satire) in nature, i.e. unlikely to be literally true. A satirical article is sometimes but not necessarily also a [[NewsArticle]]. [[ScholarlyArticle]]s are also sometimes satirized.",
- "rdfs:label": "SatiricalArticle",
- "rdfs:subClassOf": {
- "@id": "schema:Article"
+ "@id": "schema:variesBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. \"color\"; terms defined elsewhere can be referenced with their URIs.",
+ "rdfs:label": "variesBy",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductGroup"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:Text"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:DefinedTerm"
}
- ]
- },
- {
- "@id": "schema:commentText",
- "@type": "rdf:Property",
- "rdfs:comment": "The text of the UserComment.",
- "rdfs:label": "commentText",
- "schema:domainIncludes": {
- "@id": "schema:UserComments"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
}
},
{
- "@id": "schema:identifier",
+ "@id": "schema:gameLocation",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/dc/terms/identifier"
- },
- "rdfs:comment": "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n ",
- "rdfs:label": "identifier",
- "schema:domainIncludes": {
- "@id": "schema:Thing"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "Real or fictional location of the game (or part of game).",
+ "rdfs:label": "gameLocation",
+ "schema:domainIncludes": [
{
- "@id": "schema:PropertyValue"
+ "@id": "schema:Game"
},
{
- "@id": "schema:Text"
+ "@id": "schema:VideoGameSeries"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:PostalAddress"
},
{
"@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Place"
}
]
},
{
- "@id": "schema:Book",
+ "@id": "schema:Review",
"@type": "rdfs:Class",
- "rdfs:comment": "A book.",
- "rdfs:label": "Book",
+ "rdfs:comment": "A review of an item - for example, of a restaurant, movie, or store.",
+ "rdfs:label": "Review",
"rdfs:subClassOf": {
"@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:servingSize",
+ "@id": "schema:measurementTechnique",
"@type": "rdf:Property",
- "rdfs:comment": "The serving size, in terms of the number of volume or mass.",
- "rdfs:label": "servingSize",
- "schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
+ "rdfs:comment": "A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]),\ncorresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.\n\nFor example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".\n\nIf the [[variableMeasured]] is \"depression rating\", the [[measurementTechnique]] could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".\n\nIf there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].\n ",
+ "rdfs:label": "measurementTechnique",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DataCatalog"
+ },
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:DataDownload"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1425"
}
},
{
- "@id": "schema:BloodTest",
+ "@id": "schema:Campground",
"@type": "rdfs:Class",
- "rdfs:comment": "A medical test performed on a sample of a patient's blood.",
- "rdfs:label": "BloodTest",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalTest"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "rdfs:comment": "A camping site, campsite, or [[Campground]] is a place used for overnight stay in the outdoors, typically containing individual [[CampingPitch]] locations. \\n\\n\nIn British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites (source: Wikipedia, see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n",
+ "rdfs:label": "Campground",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:playersOnline",
+ "@id": "schema:percentile25",
"@type": "rdf:Property",
- "rdfs:comment": "Number of players on the server.",
- "rdfs:label": "playersOnline",
+ "rdfs:comment": "The 25th percentile value.",
+ "rdfs:label": "percentile25",
"schema:domainIncludes": {
- "@id": "schema:GameServer"
+ "@id": "schema:QuantitativeValueDistribution"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:specialCommitments",
+ "@id": "schema:email",
"@type": "rdf:Property",
- "rdfs:comment": "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.",
- "rdfs:label": "specialCommitments",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
- },
+ "rdfs:comment": "Email address.",
+ "rdfs:label": "email",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:InsertAction",
+ "@id": "schema:Joint",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of adding at a specific location in an ordered collection.",
- "rdfs:label": "InsertAction",
+ "rdfs:comment": "The anatomical location at which two or more bones make contact.",
+ "rdfs:label": "Joint",
"rdfs:subClassOf": {
- "@id": "schema:AddAction"
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:expectedArrivalUntil",
+ "@id": "schema:healthPlanCostSharing",
"@type": "rdf:Property",
- "rdfs:comment": "The latest date the package may arrive.",
- "rdfs:label": "expectedArrivalUntil",
- "schema:domainIncludes": {
- "@id": "schema:ParcelDelivery"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The costs to the patient for services under this network or formulary.",
+ "rdfs:label": "healthPlanCostSharing",
+ "schema:domainIncludes": [
{
- "@id": "schema:DateTime"
+ "@id": "schema:HealthPlanFormulary"
},
{
- "@id": "schema:Date"
+ "@id": "schema:HealthPlanNetwork"
}
- ]
- },
- {
- "@id": "schema:WearableMeasurementCup",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the cup, for example of a bra",
- "rdfs:label": "WearableMeasurementCup",
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:potentialAction",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.",
- "rdfs:label": "potentialAction",
- "schema:domainIncludes": {
- "@id": "schema:Thing"
- },
"schema:rangeIncludes": {
- "@id": "schema:Action"
- }
- },
- {
- "@id": "schema:WearableSizeSystemCN",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "Chinese size system for wearables.",
- "rdfs:label": "WearableSizeSystemCN",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Boolean"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:numberOfCredits",
+ "@id": "schema:bed",
"@type": "rdf:Property",
- "rdfs:comment": "The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.",
- "rdfs:label": "numberOfCredits",
+ "rdfs:comment": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.",
+ "rdfs:label": "bed",
"schema:domainIncludes": [
{
- "@id": "schema:Course"
+ "@id": "schema:HotelRoom"
},
{
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:Suite"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:Integer"
+ "@id": "schema:Text"
},
{
- "@id": "schema:StructuredValue"
+ "@id": "schema:BedDetails"
+ },
+ {
+ "@id": "schema:BedType"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:broadcaster",
+ "@id": "schema:inPlaylist",
"@type": "rdf:Property",
- "rdfs:comment": "The organization owning or operating the broadcast service.",
- "rdfs:label": "broadcaster",
+ "rdfs:comment": "The playlist to which this recording belongs.",
+ "rdfs:label": "inPlaylist",
"schema:domainIncludes": {
- "@id": "schema:BroadcastService"
+ "@id": "schema:MusicRecording"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:MusicPlaylist"
}
},
{
- "@id": "schema:DisabilitySupport",
- "@type": "schema:GovernmentBenefitsType",
- "rdfs:comment": "DisabilitySupport: this is a benefit for disability support.",
- "rdfs:label": "DisabilitySupport",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:givenName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Given name. In the U.S., the first name of a Person.",
+ "rdfs:label": "givenName",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:hasEnergyConsumptionDetails",
+ "@id": "schema:actionStatus",
"@type": "rdf:Property",
- "rdfs:comment": "Defines the energy efficiency Category (also known as \"class\" or \"rating\") for a product according to an international energy efficiency standard.",
- "rdfs:label": "hasEnergyConsumptionDetails",
+ "rdfs:comment": "Indicates the current disposition of the Action.",
+ "rdfs:label": "actionStatus",
"schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ActionStatusType"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnPolicy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A MerchantReturnPolicy provides information about product return policies associated with an [[Organization]], [[Product]], or [[Offer]].",
+ "rdfs:label": "MerchantReturnPolicy",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:EnergyConsumptionDetails"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:datasetTimeInterval",
- "@type": "rdf:Property",
- "rdfs:comment": "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).",
- "rdfs:label": "datasetTimeInterval",
- "schema:domainIncludes": {
- "@id": "schema:Dataset"
+ "@id": "schema:CompleteDataFeed",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[CompleteDataFeed]] is a [[DataFeed]] whose standard representation includes content for every item currently in the feed.\n\nThis is the equivalent of Atom's element as defined in Feed Paging and Archiving [RFC 5005](https://tools.ietf.org/html/rfc5005), for example (and as defined for Atom), when using data from a feed that represents a collection of items that varies over time (e.g. \"Top Twenty Records\") there is no need to have newer entries mixed in alongside older, obsolete entries. By marking this feed as a CompleteDataFeed, old entries can be safely discarded when the feed is refreshed, since we can assume the feed has provided descriptions for all current items.",
+ "rdfs:label": "CompleteDataFeed",
+ "rdfs:subClassOf": {
+ "@id": "schema:DataFeed"
},
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:supersededBy": {
- "@id": "schema:temporalCoverage"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1397"
}
},
{
- "@id": "schema:availabilityStarts",
+ "@id": "schema:PrimaryCare",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The medical care by a physician, or other health-care professional, who is the patient's first contact with the health-care system and who may recommend a specialist if necessary.",
+ "rdfs:label": "PrimaryCare",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:workLocation",
"@type": "rdf:Property",
- "rdfs:comment": "The beginning of the availability of the product or service included in the offer.",
- "rdfs:label": "availabilityStarts",
- "schema:domainIncludes": [
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:ActionAccessSpecification"
- },
- {
- "@id": "schema:Offer"
- }
- ],
+ "rdfs:comment": "A contact location for a person's place of work.",
+ "rdfs:label": "workLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:DateTime"
- },
- {
- "@id": "schema:Time"
- },
- {
- "@id": "schema:Date"
- }
- ],
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:ContactPoint"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ "@id": "schema:Place"
}
]
},
{
- "@id": "schema:location",
- "@type": "rdf:Property",
- "rdfs:comment": "The location of, for example, where an event is happening, where an organization is located, or where an action takes place.",
- "rdfs:label": "location",
- "schema:domainIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:Action"
- },
- {
- "@id": "schema:InteractionCounter"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:PostalAddress"
- },
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:VirtualLocation"
- }
- ]
- },
- {
- "@id": "schema:Occupation",
+ "@id": "schema:Article",
"@type": "rdfs:Class",
- "rdfs:comment": "A profession, may involve prolonged training and/or a formal qualification.",
- "rdfs:label": "Occupation",
+ "rdfs:comment": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "Article",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:CreativeWork"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
}
},
{
- "@id": "schema:Plumber",
+ "@id": "schema:City",
"@type": "rdfs:Class",
- "rdfs:comment": "A plumbing service.",
- "rdfs:label": "Plumber",
+ "rdfs:comment": "A city or town.",
+ "rdfs:label": "City",
"rdfs:subClassOf": {
- "@id": "schema:HomeAndConstructionBusiness"
+ "@id": "schema:AdministrativeArea"
}
},
{
- "@id": "schema:license",
+ "@id": "schema:albums",
"@type": "rdf:Property",
- "rdfs:comment": "A license document that applies to this content, typically indicated by URL.",
- "rdfs:label": "license",
+ "rdfs:comment": "A collection of music albums.",
+ "rdfs:label": "albums",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ]
- },
- {
- "@id": "schema:AuthoritativeLegalValue",
- "@type": "schema:LegalValueLevel",
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#LegalValue-authoritative"
+ "@id": "schema:MusicGroup"
},
- "rdfs:comment": "Indicates that the publisher gives some special status to the publication of the document. (\"The Queens Printer\" version of a UK Act of Parliament, or the PDF version of a Directive published by the EU Office of Publications). Something \"Authoritative\" is considered to be also [[OfficialLegalValue]]\".",
- "rdfs:label": "AuthoritativeLegalValue",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
},
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- }
- ]
+ "schema:supersededBy": {
+ "@id": "schema:album"
+ }
},
{
- "@id": "schema:CausesHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Information about the causes and main actions that gave rise to the topic.",
- "rdfs:label": "CausesHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:arrivalAirport",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The airport where the flight terminates.",
+ "rdfs:label": "arrivalAirport",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "schema:rangeIncludes": {
+ "@id": "schema:Airport"
}
},
{
- "@id": "schema:isAcceptingNewPatients",
- "@type": "rdf:Property",
- "rdfs:comment": "Whether the provider is accepting new patients.",
- "rdfs:label": "isAcceptingNewPatients",
- "schema:domainIncludes": {
- "@id": "schema:MedicalOrganization"
+ "@id": "schema:HealthPlanCostSharingSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A description of costs to the patient under a given network or formulary.",
+ "rdfs:label": "HealthPlanCostSharingSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
"schema:source": {
"@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:Optician",
+ "@id": "schema:MedicalObservationalStudy",
"@type": "rdfs:Class",
- "rdfs:comment": "A store that sells reading glasses and similar devices for improving vision.",
- "rdfs:label": "Optician",
+ "rdfs:comment": "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.",
+ "rdfs:label": "MedicalObservationalStudy",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:MedicalStudy"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:partySize",
+ "@id": "schema:LockerDelivery",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A DeliveryMethod in which an item is made available via locker.",
+ "rdfs:label": "LockerDelivery"
+ },
+ {
+ "@id": "schema:ItemListOrderAscending",
+ "@type": "schema:ItemListOrderType",
+ "rdfs:comment": "An ItemList ordered with lower values listed first.",
+ "rdfs:label": "ItemListOrderAscending"
+ },
+ {
+ "@id": "schema:checkoutTime",
"@type": "rdf:Property",
- "rdfs:comment": "Number of people the reservation should accommodate.",
- "rdfs:label": "partySize",
+ "rdfs:comment": "The latest someone may check out of a lodging establishment.",
+ "rdfs:label": "checkoutTime",
"schema:domainIncludes": [
{
- "@id": "schema:TaxiReservation"
+ "@id": "schema:LodgingBusiness"
},
{
- "@id": "schema:FoodEstablishmentReservation"
+ "@id": "schema:LodgingReservation"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:Integer"
+ "@id": "schema:Time"
}
]
},
{
- "@id": "schema:gamePlatform",
+ "@id": "schema:price",
"@type": "rdf:Property",
- "rdfs:comment": "The electronic systems used to play video games.",
- "rdfs:label": "gamePlatform",
+ "rdfs:comment": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\\n\\nUsage guidelines:\\n\\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\n ",
+ "rdfs:label": "price",
"schema:domainIncludes": [
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:PriceSpecification"
},
{
- "@id": "schema:VideoGame"
+ "@id": "schema:TradeAction"
+ },
+ {
+ "@id": "schema:Offer"
}
],
"schema:rangeIncludes": [
@@ -15416,316 +14930,370 @@
"@id": "schema:Text"
},
{
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Thing"
+ "@id": "schema:Number"
}
]
},
{
- "@id": "schema:valuePattern",
+ "@id": "schema:validUntil",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies a regular expression for testing literal values according to the HTML spec.",
- "rdfs:label": "valuePattern",
+ "rdfs:comment": "The date when the item is no longer valid.",
+ "rdfs:label": "validUntil",
"schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
+ "@id": "schema:Permit"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:flightNumber",
+ "@id": "schema:termsOfService",
"@type": "rdf:Property",
- "rdfs:comment": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.",
- "rdfs:label": "flightNumber",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
+ "rdfs:comment": "Human-readable terms of service documentation.",
+ "rdfs:label": "termsOfService",
"schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:Service"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
}
},
{
- "@id": "schema:trainNumber",
+ "@id": "schema:contactPoints",
"@type": "rdf:Property",
- "rdfs:comment": "The unique identifier for the train.",
- "rdfs:label": "trainNumber",
- "schema:domainIncludes": {
- "@id": "schema:TrainTrip"
- },
+ "rdfs:comment": "A contact point for a person or organization.",
+ "rdfs:label": "contactPoints",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:ContactPoint"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:contactPoint"
}
},
{
- "@id": "schema:Geriatric",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.",
- "rdfs:label": "Geriatric",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:agent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote a book.",
+ "rdfs:label": "agent",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
},
{
- "@id": "schema:GovernmentOffice",
+ "@id": "schema:AudioObjectSnapshot",
"@type": "rdfs:Class",
- "rdfs:comment": "A government office—for example, an IRS or DMV office.",
- "rdfs:label": "GovernmentOffice",
+ "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[AudioObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
+ "rdfs:label": "AudioObjectSnapshot",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:AudioObject"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:SingleCenterTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "A trial that takes place at a single center.",
- "rdfs:label": "SingleCenterTrial",
+ "@id": "schema:doseSchedule",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.",
+ "rdfs:label": "doseSchedule",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:TherapeuticProcedure"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DoseSchedule"
}
},
{
- "@id": "schema:Preschool",
- "@type": "rdfs:Class",
- "rdfs:comment": "A preschool.",
- "rdfs:label": "Preschool",
- "rdfs:subClassOf": {
- "@id": "schema:EducationalOrganization"
+ "@id": "schema:reviewAspect",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This Review or Rating is relevant to this part or facet of the itemReviewed.",
+ "rdfs:label": "reviewAspect",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Guide"
+ },
+ {
+ "@id": "schema:Review"
+ },
+ {
+ "@id": "schema:Rating"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1689"
}
},
{
- "@id": "schema:itemDefectReturnLabelSource",
- "@type": "rdf:Property",
- "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a defect product.",
- "rdfs:label": "itemDefectReturnLabelSource",
- "schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
+ "@id": "schema:Statement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statement about something, for example a fun or interesting fact. If known, the main entity this statement is about can be indicated using mainEntity. For more formal claims (e.g. in Fact Checking), consider using [[Claim]] instead. Use the [[text]] property to capture the text of the statement.",
+ "rdfs:label": "Statement",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:ReturnLabelSourceEnumeration"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2912"
}
},
{
- "@id": "schema:LodgingBusiness",
+ "@id": "schema:Trip",
"@type": "rdfs:Class",
- "rdfs:comment": "A lodging business, such as a motel, hotel, or inn.",
- "rdfs:label": "LodgingBusiness",
+ "rdfs:comment": "A trip or journey. An itinerary of visits to one or more places.",
+ "rdfs:label": "Trip",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
}
},
{
- "@id": "schema:eduQuestionType",
- "@type": "rdf:Property",
- "rdfs:comment": "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".",
- "rdfs:label": "eduQuestionType",
- "schema:domainIncludes": [
- {
- "@id": "schema:SolveMathAction"
- },
- {
- "@id": "schema:Question"
- }
- ],
+ "@id": "schema:WearableMeasurementWaist",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the waist section, for example of pants",
+ "rdfs:label": "WearableMeasurementWaist",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2636"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:menu",
+ "@id": "schema:authenticator",
"@type": "rdf:Property",
- "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
- "rdfs:label": "menu",
+ "rdfs:comment": "The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media.",
+ "rdfs:label": "authenticator",
"schema:domainIncludes": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:MediaSubscription"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Menu"
- },
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- }
- ],
- "schema:supersededBy": {
- "@id": "schema:hasMenu"
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
}
},
{
- "@id": "schema:wordCount",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of words in the text of the Article.",
- "rdfs:label": "wordCount",
- "schema:domainIncludes": {
- "@id": "schema:Article"
+ "@id": "schema:WearableMeasurementBack",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the back section, for example of a jacket",
+ "rdfs:label": "WearableMeasurementBack",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:availableOnDevice",
+ "@id": "schema:lesser",
"@type": "rdf:Property",
- "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
- "rdfs:label": "availableOnDevice",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than the object.",
+ "rdfs:label": "lesser",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:QualitativeValue"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:orderedItem",
+ "@id": "schema:AnaerobicActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.",
+ "rdfs:label": "AnaerobicActivity",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:experienceRequirements",
"@type": "rdf:Property",
- "rdfs:comment": "The item ordered.",
- "rdfs:label": "orderedItem",
+ "rdfs:comment": "Description of skills and experience needed for the position or Occupation.",
+ "rdfs:label": "experienceRequirements",
"schema:domainIncludes": [
{
- "@id": "schema:Order"
+ "@id": "schema:Occupation"
},
{
- "@id": "schema:OrderItem"
+ "@id": "schema:JobPosting"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:OrderItem"
- },
- {
- "@id": "schema:Product"
+ "@id": "schema:OccupationalExperienceRequirements"
},
{
- "@id": "schema:Service"
+ "@id": "schema:Text"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
},
{
- "@id": "schema:DownloadAction",
+ "@id": "schema:ReducedRelevanceForChildrenConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "A general code for cases where relevance to children is reduced, e.g. adult education, mortgages, retirement-related products, etc.",
+ "rdfs:label": "ReducedRelevanceForChildrenConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:MedicalIndication",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of downloading an object.",
- "rdfs:label": "DownloadAction",
+ "rdfs:comment": "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.",
+ "rdfs:label": "MedicalIndication",
"rdfs:subClassOf": {
- "@id": "schema:TransferAction"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:jobLocationType",
- "@type": "rdf:Property",
- "rdfs:comment": "A description of the job location (e.g TELECOMMUTE for telecommute jobs).",
- "rdfs:label": "jobLocationType",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:ResearchOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Research Organization (e.g. scientific institute, research company).",
+ "rdfs:label": "ResearchOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1591"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2877"
}
},
{
- "@id": "schema:articleBody",
+ "@id": "schema:GenderType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enumeration of genders.",
+ "rdfs:label": "GenderType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:partOfEpisode",
"@type": "rdf:Property",
- "rdfs:comment": "The actual body of the article.",
- "rdfs:label": "articleBody",
+ "rdfs:comment": "The episode to which this clip belongs.",
+ "rdfs:label": "partOfEpisode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
"schema:domainIncludes": {
- "@id": "schema:Article"
+ "@id": "schema:Clip"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Episode"
}
},
{
- "@id": "schema:HairSalon",
+ "@id": "schema:Eye",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Eye or ophthalmological function assessment with clinical examination.",
+ "rdfs:label": "Eye",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:QAPage",
"@type": "rdfs:Class",
- "rdfs:comment": "A hair salon.",
- "rdfs:label": "HairSalon",
+ "rdfs:comment": "A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).",
+ "rdfs:label": "QAPage",
"rdfs:subClassOf": {
- "@id": "schema:HealthAndBeautyBusiness"
+ "@id": "schema:WebPage"
}
},
{
- "@id": "schema:roofLoad",
+ "@id": "schema:targetUrl",
"@type": "rdf:Property",
- "rdfs:comment": "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]]\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "roofLoad",
- "schema:domainIncludes": [
- {
- "@id": "schema:Car"
- },
- {
- "@id": "schema:BusOrCoach"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "rdfs:comment": "The URL of a node in an established educational framework.",
+ "rdfs:label": "targetUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
- },
- {
- "@id": "schema:SteeringPositionValue",
- "@type": "rdfs:Class",
- "rdfs:comment": "A value indicating a steering position.",
- "rdfs:label": "SteeringPositionValue",
- "rdfs:subClassOf": {
- "@id": "schema:QualitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:legislationIdentifier",
+ "@id": "schema:diversityStaffingReport",
"@type": "rdf:Property",
- "http://www.w3.org/2004/02/skos/core#closeMatch": {
- "@id": "http://data.europa.eu/eli/ontology#id_local"
- },
- "rdfs:comment": "An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI (European Legislation Identifier) or an URN-Lex.",
- "rdfs:label": "legislationIdentifier",
+ "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.",
+ "rdfs:label": "diversityStaffingReport",
"rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
- "schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:publishingPrinciples"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Article"
},
{
"@id": "schema:URL"
@@ -15733,205 +15301,256 @@
],
"schema:source": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
]
},
{
- "@id": "schema:interactionStatistic",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.",
- "rdfs:label": "interactionStatistic",
- "schema:domainIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:InteractionCounter"
+ "@id": "schema:PhysicalActivityCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Categories of physical activity, organized by physiologic classification.",
+ "rdfs:label": "PhysicalActivityCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2421"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:foodWarning",
+ "@id": "schema:cvdNumC19HospPats",
"@type": "rdf:Property",
- "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.",
- "rdfs:label": "foodWarning",
+ "rdfs:comment": "numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.",
+ "rdfs:label": "cvdNumC19HospPats",
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:CDCPMDRecord"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:AcceptAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of committing to/adopting an object.\\n\\nRelated actions:\\n\\n* [[RejectAction]]: The antonym of AcceptAction.",
- "rdfs:label": "AcceptAction",
- "rdfs:subClassOf": {
- "@id": "schema:AllocateAction"
+ "@id": "schema:containsPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The basic containment relation between a place and another that it contains.",
+ "rdfs:label": "containsPlace",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:containedInPlace"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:accountMinimumInflow",
+ "@id": "schema:qualifications",
"@type": "rdf:Property",
- "rdfs:comment": "A minimum amount that has to be paid in every month.",
- "rdfs:label": "accountMinimumInflow",
- "schema:domainIncludes": {
- "@id": "schema:BankAccount"
- },
+ "rdfs:comment": "Specific qualifications required for this role or Occupation.",
+ "rdfs:label": "qualifications",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
]
},
{
- "@id": "schema:Abdomen",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Abdomen clinical examination.",
- "rdfs:label": "Abdomen",
+ "@id": "schema:AdultOrientedEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumeration of considerations that make a product relevant or potentially restricted for adults only.",
+ "rdfs:label": "AdultOrientedEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:driveWheelConfiguration",
+ "@id": "schema:validFor",
"@type": "rdf:Property",
- "rdfs:comment": "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.",
- "rdfs:label": "driveWheelConfiguration",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The duration of validity of a permit or similar thing.",
+ "rdfs:label": "validFor",
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:EducationalOccupationalCredential"
},
{
- "@id": "schema:DriveWheelConfigurationValue"
+ "@id": "schema:Permit"
}
],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
+ },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
},
{
- "@id": "schema:Grant",
+ "@id": "schema:Playground",
"@type": "rdfs:Class",
- "rdfs:comment": "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n ",
- "rdfs:label": "Grant",
+ "rdfs:comment": "A playground.",
+ "rdfs:label": "Playground",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:MedicalObservationalStudyDesign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Design models for observational medical studies. Enumerated type.",
+ "rdfs:label": "MedicalObservationalStudyDesign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ChemicalSubstance",
+ "@type": "rdfs:Class",
+ "dcterms:source": [
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ "@id": "http://bioschemas.org"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ "@id": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999"
}
- ]
+ ],
+ "rdfs:comment": "A chemical substance is 'a portion of matter of constant composition, composed of molecular entities of the same type or of different types' (source: [ChEBI:59999](https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999)).",
+ "rdfs:label": "ChemicalSubstance",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
},
{
- "@id": "schema:CoOp",
- "@type": "schema:GamePlayMode",
- "rdfs:comment": "Play mode: CoOp. Co-operative games, where you play on the same team with friends.",
- "rdfs:label": "CoOp"
+ "@id": "schema:specialCommitments",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.",
+ "rdfs:label": "specialCommitments",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:paymentStatus",
+ "@id": "schema:nsn",
"@type": "rdf:Property",
- "rdfs:comment": "The status of payment; whether the invoice has been paid or not.",
- "rdfs:label": "paymentStatus",
+ "rdfs:comment": "Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. ",
+ "rdfs:label": "nsn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
"schema:domainIncludes": {
- "@id": "schema:Invoice"
+ "@id": "schema:Product"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:PaymentStatusType"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2126"
+ }
},
{
- "@id": "schema:messageAttachment",
+ "@id": "schema:commentCount",
"@type": "rdf:Property",
- "rdfs:comment": "A CreativeWork attached to the message.",
- "rdfs:label": "messageAttachment",
+ "rdfs:comment": "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.",
+ "rdfs:label": "commentCount",
"schema:domainIncludes": {
- "@id": "schema:Message"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:suggestedMaxAge",
+ "@id": "schema:servicePostalAddress",
"@type": "rdf:Property",
- "rdfs:comment": "Maximum recommended age in years for the audience or user.",
- "rdfs:label": "suggestedMaxAge",
+ "rdfs:comment": "The address for accessing the service by mail.",
+ "rdfs:label": "servicePostalAddress",
"schema:domainIncludes": {
- "@id": "schema:PeopleAudience"
+ "@id": "schema:ServiceChannel"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:PostalAddress"
}
},
{
- "@id": "schema:UserPlays",
- "@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserPlays",
- "rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
+ "@id": "schema:WearableSizeGroupRegular",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Regular\" for wearables.",
+ "rdfs:label": "WearableSizeGroupRegular",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:supersededBy": {
- "@id": "schema:InteractionCounter"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:ScholarlyArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "A scholarly article.",
- "rdfs:label": "ScholarlyArticle",
- "rdfs:subClassOf": {
- "@id": "schema:Article"
+ "@id": "schema:cookTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time it takes to actually cook the dish, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "cookTime",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:performTime"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
}
},
{
- "@id": "schema:MedicalAudienceType",
+ "@id": "schema:MedicineSystem",
"@type": "rdfs:Class",
- "rdfs:comment": "Target audiences types for medical web pages. Enumerated type.",
- "rdfs:label": "MedicalAudienceType",
+ "rdfs:comment": "Systems of medical practice.",
+ "rdfs:label": "MedicineSystem",
"rdfs:subClassOf": {
"@id": "schema:MedicalEnumeration"
},
@@ -15940,134 +15559,143 @@
}
},
{
- "@id": "schema:repeatCount",
- "@type": "rdf:Property",
- "rdfs:comment": "Defines the number of times a recurring [[Event]] will take place",
- "rdfs:label": "repeatCount",
- "schema:domainIncludes": {
- "@id": "schema:Schedule"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:SubwayStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A subway station.",
+ "rdfs:label": "SubwayStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:SomeProducts",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A placeholder for multiple similar products of the same kind.",
+ "rdfs:label": "SomeProducts",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:shippingSettingsLink",
+ "@id": "schema:deliveryAddress",
"@type": "rdf:Property",
- "rdfs:comment": "Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.",
- "rdfs:label": "shippingSettingsLink",
+ "rdfs:comment": "Destination address.",
+ "rdfs:label": "deliveryAddress",
"schema:domainIncludes": {
- "@id": "schema:OfferShippingDetails"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:ParcelDelivery"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "schema:PostalAddress"
}
},
{
- "@id": "schema:MedicalStudyStatus",
+ "@id": "schema:MonetaryAmount",
"@type": "rdfs:Class",
- "rdfs:comment": "The status of a medical study. Enumerated type.",
- "rdfs:label": "MedicalStudyStatus",
+ "rdfs:comment": "A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between £1,000 and £1,000,000 GBP, or the value of a salary, etc. It is recommended to use [[PriceSpecification]] Types to describe the price of an Offer, Invoice, etc.",
+ "rdfs:label": "MonetaryAmount",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:OverviewHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Overview of the content. Contains a summarized view of the topic with the most relevant information for an introduction.",
- "rdfs:label": "OverviewHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:StructuredValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:softwareRequirements",
+ "@id": "schema:foundingDate",
"@type": "rdf:Property",
- "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).",
- "rdfs:label": "softwareRequirements",
+ "rdfs:comment": "The date that this organization was founded.",
+ "rdfs:label": "foundingDate",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:Organization"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
},
{
- "@id": "schema:EntertainmentBusiness",
+ "@id": "schema:InsertAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A business providing entertainment.",
- "rdfs:label": "EntertainmentBusiness",
+ "rdfs:comment": "The act of adding at a specific location in an ordered collection.",
+ "rdfs:label": "InsertAction",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:AddAction"
}
},
{
- "@id": "schema:MotorcycleDealer",
+ "@id": "schema:ReturnLabelSourceEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A motorcycle dealer.",
- "rdfs:label": "MotorcycleDealer",
+ "rdfs:comment": "Enumerates several types of return labels for product returns.",
+ "rdfs:label": "ReturnLabelSourceEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:AutomotiveBusiness"
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:wheelbase",
- "@type": "rdf:Property",
- "rdfs:comment": "The distance between the centers of the front and rear wheels.\\n\\nTypical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet",
- "rdfs:label": "wheelbase",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:ProductGroup",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc.\n\nWhile a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. ",
+ "rdfs:label": "ProductGroup",
+ "rdfs:subClassOf": {
+ "@id": "schema:Product"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2597"
}
},
{
- "@id": "schema:utterances",
+ "@id": "schema:taxonomicRange",
"@type": "rdf:Property",
- "rdfs:comment": "Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].",
- "rdfs:label": "utterances",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "The taxonomic grouping of the organism that expresses, encodes, or in some way related to the BioChemEntity.",
+ "rdfs:label": "taxonomicRange",
"schema:domainIncludes": {
- "@id": "schema:HyperTocEntry"
+ "@id": "schema:BioChemEntity"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Taxon"
+ }
+ ]
+ },
+ {
+ "@id": "schema:resultReview",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of result. The review that resulted in the performing of the action.",
+ "rdfs:label": "resultReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:result"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ "schema:domainIncludes": {
+ "@id": "schema:ReviewAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
}
},
{
@@ -16089,48 +15717,103 @@
}
},
{
- "@id": "schema:assembly",
+ "@id": "schema:repetitions",
"@type": "rdf:Property",
- "rdfs:comment": "Library file name e.g., mscorlib.dll, system.web.dll.",
- "rdfs:label": "assembly",
+ "rdfs:comment": "Number of times one should repeat the activity.",
+ "rdfs:label": "repetitions",
"schema:domainIncludes": {
- "@id": "schema:APIReference"
+ "@id": "schema:ExercisePlan"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:supersededBy": {
- "@id": "schema:executableLibraryName"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
},
{
- "@id": "schema:hasCredential",
+ "@id": "schema:reviewedBy",
"@type": "rdf:Property",
- "rdfs:comment": "A credential awarded to the Person or Organization.",
- "rdfs:label": "hasCredential",
- "schema:domainIncludes": [
+ "rdfs:comment": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.",
+ "rdfs:label": "reviewedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
{
"@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:jobTitle",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The job title of the person (for example, Financial Manager).",
+ "rdfs:label": "jobTitle",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Text"
}
],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
+ }
+ },
+ {
+ "@id": "schema:hostingOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The organization (airline, travelers' club, etc.) the membership is made with.",
+ "rdfs:label": "hostingOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:ProgramMembership"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:hasVariant",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]).",
+ "rdfs:label": "hasVariant",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductGroup"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isVariantOf"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:EducationalOccupationalCredential"
+ "@id": "schema:Product"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
}
},
{
- "@id": "schema:SymptomsHealthAspect",
+ "@id": "schema:LivingWithHealthAspect",
"@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Symptoms or related symptoms of a Topic.",
- "rdfs:label": "SymptomsHealthAspect",
+ "rdfs:comment": "Information about coping or life related to the topic.",
+ "rdfs:label": "LivingWithHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -16139,662 +15822,839 @@
}
},
{
- "@id": "schema:Drug",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/410942007"
+ "@id": "schema:isLocatedInSubcellularLocation",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
},
- "rdfs:comment": "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge make a clear difference between them.",
- "rdfs:label": "Drug",
- "rdfs:subClassOf": {
- "@id": "schema:Substance"
+ "rdfs:comment": "Subcellular location where this BioChemEntity is located; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "isLocatedInSubcellularLocation",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
},
{
- "@id": "schema:foodEstablishment",
+ "@id": "schema:temporalCoverage",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The specific food establishment where the action occurred.",
- "rdfs:label": "foodEstablishment",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
+ "owl:equivalentProperty": {
+ "@id": "dcterms:temporal"
},
+ "rdfs:comment": "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content, e.g. ScholarlyArticle, Book, TVSeries or TVEpisode, may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.",
+ "rdfs:label": "temporalCoverage",
"schema:domainIncludes": {
- "@id": "schema:CookAction"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": [
{
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Place"
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DateTime"
}
]
},
{
- "@id": "schema:nonprofitStatus",
+ "@id": "schema:dateCreated",
"@type": "rdf:Property",
- "rdfs:comment": "nonprofit Status indicates the legal status of a non-profit organization in its primary place of business.",
- "rdfs:label": "nonprofitStatus",
- "schema:domainIncludes": {
- "@id": "schema:Organization"
+ "rdfs:comment": "The date on which the CreativeWork was created or the item was added to a DataFeed.",
+ "rdfs:label": "dateCreated",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:RecommendedDoseSchedule",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
+ "rdfs:label": "RecommendedDoseSchedule",
+ "rdfs:subClassOf": {
+ "@id": "schema:DoseSchedule"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:NonprofitType"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:PaymentComplete",
- "@type": "schema:PaymentStatusType",
- "rdfs:comment": "The payment has been received and processed.",
- "rdfs:label": "PaymentComplete"
- },
- {
- "@id": "schema:valueRequired",
+ "@id": "schema:deliveryMethod",
"@type": "rdf:Property",
- "rdfs:comment": "Whether the property must be filled in to complete the action. Default is false.",
- "rdfs:label": "valueRequired",
- "schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
+ "rdfs:comment": "A sub property of instrument. The method of delivery.",
+ "rdfs:label": "deliveryMethod",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TrackAction"
+ },
+ {
+ "@id": "schema:ReceiveAction"
+ },
+ {
+ "@id": "schema:SendAction"
+ },
+ {
+ "@id": "schema:OrderAction"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:DeliveryMethod"
}
},
{
- "@id": "schema:regionsAllowed",
+ "@id": "schema:owns",
"@type": "rdf:Property",
- "rdfs:comment": "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166).",
- "rdfs:label": "regionsAllowed",
- "schema:domainIncludes": {
- "@id": "schema:MediaObject"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Place"
+ "rdfs:comment": "Products owned by the organization or person.",
+ "rdfs:label": "owns",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OwnershipInfo"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:serviceUrl",
+ "@id": "schema:discussionUrl",
"@type": "rdf:Property",
- "rdfs:comment": "The website to access the service.",
- "rdfs:label": "serviceUrl",
+ "rdfs:comment": "A link to the page containing the comments of the CreativeWork.",
+ "rdfs:label": "discussionUrl",
"schema:domainIncludes": {
- "@id": "schema:ServiceChannel"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
"@id": "schema:URL"
}
},
{
- "@id": "schema:CohortStudy",
- "@type": "schema:MedicalObservationalStudyDesign",
- "rdfs:comment": "Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.",
- "rdfs:label": "CohortStudy",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:SurgicalProcedure",
+ "@id": "schema:ActionAccessSpecification",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/387713003"
- },
- "rdfs:comment": "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.",
- "rdfs:label": "SurgicalProcedure",
+ "rdfs:comment": "A set of requirements that must be fulfilled in order to perform an Action.",
+ "rdfs:label": "ActionAccessSpecification",
"rdfs:subClassOf": {
- "@id": "schema:MedicalProcedure"
+ "@id": "schema:Intangible"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:TheaterGroup",
- "@type": "rdfs:Class",
- "rdfs:comment": "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.",
- "rdfs:label": "TheaterGroup",
- "rdfs:subClassOf": {
- "@id": "schema:PerformingGroup"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
}
},
{
- "@id": "schema:browserRequirements",
+ "@id": "schema:duplicateTherapy",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.",
- "rdfs:label": "browserRequirements",
+ "rdfs:comment": "A therapy that duplicates or overlaps this one.",
+ "rdfs:label": "duplicateTherapy",
"schema:domainIncludes": {
- "@id": "schema:WebApplication"
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MedicalTherapy"
}
},
{
- "@id": "schema:priceCurrency",
+ "@id": "schema:numberOfBathroomsTotal",
"@type": "rdf:Property",
- "rdfs:comment": "The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".",
- "rdfs:label": "priceCurrency",
+ "rdfs:comment": "The total integer number of bathrooms in some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): \"The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.\". See also [[numberOfRooms]].",
+ "rdfs:label": "numberOfBathroomsTotal",
"schema:domainIncludes": [
{
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Ticket"
- },
- {
- "@id": "schema:Reservation"
- },
- {
- "@id": "schema:TradeAction"
+ "@id": "schema:FloorPlan"
},
{
- "@id": "schema:PriceSpecification"
+ "@id": "schema:Accommodation"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:EnrollingByInvitation",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Enrolling participants by invitation only.",
- "rdfs:label": "EnrollingByInvitation",
+ "@id": "schema:drugUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unit in which the drug is measured, e.g. '5 mg tablet'.",
+ "rdfs:label": "drugUnit",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:DrugCost"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:title",
+ "@id": "schema:dietFeatures",
"@type": "rdf:Property",
- "rdfs:comment": "The title of the job.",
- "rdfs:label": "title",
+ "rdfs:comment": "Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.",
+ "rdfs:label": "dietFeatures",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:PaymentService",
+ "@id": "schema:EntertainmentBusiness",
"@type": "rdfs:Class",
- "rdfs:comment": "A Service to transfer funds from a person or organization to a beneficiary person or organization.",
- "rdfs:label": "PaymentService",
+ "rdfs:comment": "A business providing entertainment.",
+ "rdfs:label": "EntertainmentBusiness",
"rdfs:subClassOf": {
- "@id": "schema:FinancialProduct"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:accessibilityFeature",
+ "@id": "schema:free",
"@type": "rdf:Property",
- "rdfs:comment": "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).",
- "rdfs:label": "accessibilityFeature",
+ "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.",
+ "rdfs:label": "free",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:PublicationEvent"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Boolean"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:isAccessibleForFree"
}
},
{
- "@id": "schema:WearableMeasurementLength",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Represents the length, for example of a dress",
- "rdfs:label": "WearableMeasurementLength",
+ "@id": "schema:copyrightNotice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.",
+ "rdfs:label": "copyrightNotice",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2659"
}
},
{
- "@id": "schema:merchantReturnDays",
+ "@id": "schema:learningResourceType",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies either a fixed return date or the number of days (from the delivery date) that a product can be returned. Used when the [[returnPolicyCategory]] property is specified as [[MerchantReturnFiniteReturnWindow]].",
- "rdfs:label": "merchantReturnDays",
+ "rdfs:comment": "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.",
+ "rdfs:label": "learningResourceType",
"schema:domainIncludes": [
{
- "@id": "schema:MerchantReturnPolicy"
+ "@id": "schema:LearningResource"
},
{
- "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ "@id": "schema:CreativeWork"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:Date"
- },
- {
- "@id": "schema:DateTime"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:Integer"
+ "@id": "schema:Text"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
- }
+ ]
},
{
- "@id": "schema:PrimaryCare",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "The medical care by a physician, or other health-care professional, who is the patient's first contact with the health-care system and who may recommend a specialist if necessary.",
- "rdfs:label": "PrimaryCare",
+ "@id": "schema:Beach",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Beach.",
+ "rdfs:label": "Beach",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:OccupationalActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.",
+ "rdfs:label": "OccupationalActivity",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:arrivalBoatTerminal",
+ "@id": "schema:estimatedFlightDuration",
"@type": "rdf:Property",
- "rdfs:comment": "The terminal or port from which the boat arrives.",
- "rdfs:label": "arrivalBoatTerminal",
+ "rdfs:comment": "The estimated time the flight will take.",
+ "rdfs:label": "estimatedFlightDuration",
"schema:domainIncludes": {
- "@id": "schema:BoatTrip"
+ "@id": "schema:Flight"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Duration"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:requiredMinAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Audiences defined by a person's minimum age.",
+ "rdfs:label": "requiredMinAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
},
"schema:rangeIncludes": {
- "@id": "schema:BoatTerminal"
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:borrower",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The person that borrows the object being lent.",
+ "rdfs:label": "borrower",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ "schema:domainIncludes": {
+ "@id": "schema:LendAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:mentions",
+ "@id": "schema:FDAcategoryD",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.",
+ "rdfs:label": "FDAcategoryD",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Podiatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Podiatry is the care of the human foot, especially the diagnosis and treatment of foot disorders.",
+ "rdfs:label": "Podiatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:billingPeriod",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.",
- "rdfs:label": "mentions",
+ "rdfs:comment": "The time interval used to compute the invoice.",
+ "rdfs:label": "billingPeriod",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Invoice"
},
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Duration"
}
},
{
- "@id": "schema:ethicsPolicy",
+ "@id": "schema:awards",
"@type": "rdf:Property",
- "rdfs:comment": "Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.",
- "rdfs:label": "ethicsPolicy",
+ "rdfs:comment": "Awards won by or for this item.",
+ "rdfs:label": "awards",
"schema:domainIncludes": [
{
- "@id": "schema:NewsMediaOrganization"
+ "@id": "schema:CreativeWork"
},
{
"@id": "schema:Organization"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ },
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Person"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Product"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:award"
}
},
{
- "@id": "schema:WebApplication",
+ "@id": "schema:ReactAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Web applications.",
- "rdfs:label": "WebApplication",
+ "rdfs:comment": "The act of responding instinctively and emotionally to an object, expressing a sentiment.",
+ "rdfs:label": "ReactAction",
"rdfs:subClassOf": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:AssessAction"
}
},
{
- "@id": "schema:nextItem",
- "@type": "rdf:Property",
- "rdfs:comment": "A link to the ListItem that follows the current one.",
- "rdfs:label": "nextItem",
- "schema:domainIncludes": {
- "@id": "schema:ListItem"
+ "@id": "schema:MedicalScholarlyArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A scholarly article in the medical domain.",
+ "rdfs:label": "MedicalScholarlyArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:ScholarlyArticle"
},
- "schema:rangeIncludes": {
- "@id": "schema:ListItem"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:CityHall",
+ "@id": "schema:RefundTypeEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A city hall.",
- "rdfs:label": "CityHall",
+ "rdfs:comment": "Enumerates several kinds of product return refund types.",
+ "rdfs:label": "RefundTypeEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:GovernmentBuilding"
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:ShoeStore",
+ "@id": "schema:OfferForLease",
"@type": "rdfs:Class",
- "rdfs:comment": "A shoe store.",
- "rdfs:label": "ShoeStore",
+ "rdfs:comment": "An [[OfferForLease]] in Schema.org represents an [[Offer]] to lease out something, i.e. an [[Offer]] whose\n [[businessFunction]] is [lease out](http://purl.org/goodrelations/v1#LeaseOut.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
+ "rdfs:label": "OfferForLease",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:Offer"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
}
},
{
- "@id": "schema:fuelCapacity",
+ "@id": "schema:differentialDiagnosis",
"@type": "rdf:Property",
- "rdfs:comment": "The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.\\n\\nTypical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles).",
- "rdfs:label": "fuelCapacity",
+ "rdfs:comment": "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.",
+ "rdfs:label": "differentialDiagnosis",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:MedicalCondition"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DDxElement"
+ }
+ },
+ {
+ "@id": "schema:CatholicChurch",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Catholic church.",
+ "rdfs:label": "CatholicChurch",
+ "rdfs:subClassOf": {
+ "@id": "schema:Church"
+ }
+ },
+ {
+ "@id": "schema:ReservationHold",
+ "@type": "schema:ReservationStatusType",
+ "rdfs:comment": "The status of a reservation on hold pending an update like credit card number or flight changes.",
+ "rdfs:label": "ReservationHold"
+ },
+ {
+ "@id": "schema:Nonprofit501c6",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards.",
+ "rdfs:label": "Nonprofit501c6",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:Midwifery",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period (including care of the newborn), besides sexual and reproductive health of women throughout their lives.",
+ "rdfs:label": "Midwifery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:loanTerm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of the loan or credit agreement.",
+ "rdfs:label": "loanTerm",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:duration"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:LoanOrCredit"
},
"schema:rangeIncludes": {
"@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:catalogNumber",
+ "@id": "schema:accessModeSufficient",
"@type": "rdf:Property",
- "rdfs:comment": "The catalog number for the release.",
- "rdfs:label": "catalogNumber",
+ "rdfs:comment": "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).",
+ "rdfs:label": "accessModeSufficient",
"schema:domainIncludes": {
- "@id": "schema:MusicRelease"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:ItemList"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
}
},
{
- "@id": "schema:correctionsPolicy",
+ "@id": "schema:maximumVirtualAttendeeCapacity",
"@type": "rdf:Property",
- "rdfs:comment": "For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.",
- "rdfs:label": "correctionsPolicy",
- "rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
+ "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). ",
+ "rdfs:label": "maximumVirtualAttendeeCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:NewsMediaOrganization"
- }
- ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
- },
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
},
{
- "@id": "schema:InteractionCounter",
+ "@id": "schema:FinancialProduct",
"@type": "rdfs:Class",
- "rdfs:comment": "A summary of how users have interacted with this CreativeWork. In most cases, authors will use a subtype to specify the specific type of interaction.",
- "rdfs:label": "InteractionCounter",
+ "rdfs:comment": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.",
+ "rdfs:label": "FinancialProduct",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "@id": "schema:Service"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:ChildrensEvent",
+ "@id": "schema:LiveAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "LiveAlbum.",
+ "rdfs:label": "LiveAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:ExhibitionEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "Event type: Children's event.",
- "rdfs:label": "ChildrensEvent",
+ "rdfs:comment": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...",
+ "rdfs:label": "ExhibitionEvent",
"rdfs:subClassOf": {
"@id": "schema:Event"
}
},
{
- "@id": "schema:price",
- "@type": "rdf:Property",
- "rdfs:comment": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\\n\\nUsage guidelines:\\n\\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n ",
- "rdfs:label": "price",
- "schema:domainIncludes": [
- {
- "@id": "schema:TradeAction"
- },
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:PriceSpecification"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Number"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "@id": "schema:FullGameAvailability",
+ "@type": "schema:GameAvailabilityEnumeration",
+ "rdfs:comment": "Indicates full game availability.",
+ "rdfs:label": "FullGameAvailability",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3058"
+ }
},
{
- "@id": "schema:ReviewAction",
+ "@id": "schema:MedicalEntity",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.",
- "rdfs:label": "ReviewAction",
+ "rdfs:comment": "The most generic type of entity related to health and the practice of medicine.",
+ "rdfs:label": "MedicalEntity",
"rdfs:subClassOf": {
- "@id": "schema:AssessAction"
+ "@id": "schema:Thing"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:variesBy",
+ "@id": "schema:byMonthWeek",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. \"color\"; terms defined elsewhere can be referenced with their URIs.",
- "rdfs:label": "variesBy",
+ "rdfs:comment": "Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month.",
+ "rdfs:label": "byMonthWeek",
"schema:domainIncludes": {
- "@id": "schema:ProductGroup"
+ "@id": "schema:Schedule"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2599"
+ }
+ },
+ {
+ "@id": "schema:ResumeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer).",
+ "rdfs:label": "ResumeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:pathophysiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.",
+ "rdfs:label": "pathophysiology",
+ "schema:domainIncludes": [
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:PhysicalActivity"
},
{
- "@id": "schema:Text"
+ "@id": "schema:MedicalCondition"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:ReturnLabelInBox",
- "@type": "schema:ReturnLabelSourceEnumeration",
- "rdfs:comment": "Specifies that a return label will be provided by the seller in the shipping box.",
- "rdfs:label": "ReturnLabelInBox",
+ "@id": "schema:ProgramMembership",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.",
+ "rdfs:label": "ProgramMembership",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:guidelineSubject",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The medical conditions, treatments, etc. that are the subject of the guideline.",
+ "rdfs:label": "guidelineSubject",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
+ },
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
}
},
{
- "@id": "schema:temporal",
+ "@id": "schema:attendees",
"@type": "rdf:Property",
- "rdfs:comment": "The \"temporal\" property can be used in cases where more specific properties\n(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.",
- "rdfs:label": "temporal",
+ "rdfs:comment": "A person attending the event.",
+ "rdfs:label": "attendees",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Event"
},
"schema:rangeIncludes": [
{
- "@id": "schema:DateTime"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
- ]
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:attendee"
+ }
},
{
- "@id": "schema:measurementTechnique",
+ "@id": "schema:review",
"@type": "rdf:Property",
- "rdfs:comment": "A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]),\ncorresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.\n\nFor example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: \"mass spectrometry\" or \"nmr spectroscopy\" or \"colorimetry\" or \"immunofluorescence\".\n\nIf the [[variableMeasured]] is \"depression rating\", the [[measurementTechnique]] could be \"Zung Scale\" or \"HAM-D\" or \"Beck Depression Inventory\".\n\nIf there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].\n ",
- "rdfs:label": "measurementTechnique",
+ "rdfs:comment": "A review of the item.",
+ "rdfs:label": "review",
"schema:domainIncludes": [
{
- "@id": "schema:PropertyValue"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:DataDownload"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:DataCatalog"
+ "@id": "schema:Brand"
},
{
- "@id": "schema:Dataset"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "@id": "schema:Event"
+ },
{
- "@id": "schema:Text"
+ "@id": "schema:Place"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1425"
+ "schema:rangeIncludes": {
+ "@id": "schema:Review"
}
},
{
- "@id": "schema:MedicalEntity",
+ "@id": "schema:DiscoverAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The most generic type of entity related to health and the practice of medicine.",
- "rdfs:label": "MedicalEntity",
+ "rdfs:comment": "The act of discovering/finding an object.",
+ "rdfs:label": "DiscoverAction",
"rdfs:subClassOf": {
- "@id": "schema:Thing"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:FindAction"
}
},
{
- "@id": "schema:FrontWheelDriveConfiguration",
- "@type": "schema:DriveWheelConfigurationValue",
- "rdfs:comment": "Front-wheel drive is a transmission layout where the engine drives the front wheels.",
- "rdfs:label": "FrontWheelDriveConfiguration",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:children",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A child of the person.",
+ "rdfs:label": "children",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:ratingValue",
+ "@id": "schema:OfflinePermanently",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: OfflinePermanently. Server is offline and not available.",
+ "rdfs:label": "OfflinePermanently"
+ },
+ {
+ "@id": "schema:dissolutionDate",
"@type": "rdf:Property",
- "rdfs:comment": "The rating for the content.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
- "rdfs:label": "ratingValue",
+ "rdfs:comment": "The date that this organization was dissolved.",
+ "rdfs:label": "dissolutionDate",
"schema:domainIncludes": {
- "@id": "schema:Rating"
+ "@id": "schema:Organization"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Number"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ }
},
{
- "@id": "schema:billingStart",
+ "@id": "schema:CafeOrCoffeeShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A cafe or coffee shop.",
+ "rdfs:label": "CafeOrCoffeeShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:conditionsOfAccess",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies after how much time this price (or price component) becomes valid and billing starts. Can be used, for example, to model a price increase after the first year of a subscription. The unit of measurement is specified by the unitCode property.",
- "rdfs:label": "billingStart",
+ "rdfs:comment": "Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\\n\\nFor example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \". ",
+ "rdfs:label": "conditionsOfAccess",
"schema:domainIncludes": {
- "@id": "schema:UnitPriceSpecification"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
- }
- },
- {
- "@id": "schema:Nonprofit501c3",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c3: Non-profit type referring to Religious, Educational, Charitable, Scientific, Literary, Testing for Public Safety, to Foster National or International Amateur Sports Competition, or Prevention of Cruelty to Children or Animals Organizations.",
- "rdfs:label": "Nonprofit501c3",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2173"
}
},
{
- "@id": "schema:BrainStructure",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.",
- "rdfs:label": "BrainStructure",
- "rdfs:subClassOf": {
- "@id": "schema:AnatomicalStructure"
- },
+ "@id": "schema:ReimbursementCap",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the maximum reimbursement paid by an insurer for the drug.",
+ "rdfs:label": "ReimbursementCap",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:strengthUnit",
+ "@id": "schema:administrationRoute",
"@type": "rdf:Property",
- "rdfs:comment": "The units of an active ingredient's strength, e.g. mg.",
- "rdfs:label": "strengthUnit",
+ "rdfs:comment": "A route by which this drug may be administered, e.g. 'oral'.",
+ "rdfs:label": "administrationRoute",
"schema:domainIncludes": {
- "@id": "schema:DrugStrength"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
@@ -16804,576 +16664,607 @@
}
},
{
- "@id": "schema:MusicVenue",
- "@type": "rdfs:Class",
- "rdfs:comment": "A music venue.",
- "rdfs:label": "MusicVenue",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:paymentMethodId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).",
+ "rdfs:label": "paymentMethodId",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Order"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:SellAction",
+ "@id": "schema:DryCleaningOrLaundry",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.",
- "rdfs:label": "SellAction",
+ "rdfs:comment": "A dry-cleaning business.",
+ "rdfs:label": "DryCleaningOrLaundry",
"rdfs:subClassOf": {
- "@id": "schema:TradeAction"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:DigitalFormat",
- "@type": "schema:MusicReleaseFormatType",
- "rdfs:comment": "DigitalFormat.",
- "rdfs:label": "DigitalFormat",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:dateReceived",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date/time the message was received if a single recipient exists.",
+ "rdfs:label": "dateReceived",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
}
},
{
- "@id": "schema:VisualArtsEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: Visual arts event.",
- "rdfs:label": "VisualArtsEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:healthPlanId",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)",
+ "rdfs:label": "healthPlanId",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:videoFormat",
- "@type": "rdf:Property",
- "rdfs:comment": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).",
- "rdfs:label": "videoFormat",
- "schema:domainIncludes": [
- {
- "@id": "schema:ScreeningEvent"
- },
- {
- "@id": "schema:BroadcastService"
- },
- {
- "@id": "schema:BroadcastEvent"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:ContagiousnessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about contagion mechanisms and contagiousness information over the topic.",
+ "rdfs:label": "ContagiousnessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:nutrition",
+ "@id": "schema:interactivityType",
"@type": "rdf:Property",
- "rdfs:comment": "Nutrition information about the recipe or menu item.",
- "rdfs:label": "nutrition",
- "schema:domainIncludes": [
- {
- "@id": "schema:Recipe"
- },
- {
- "@id": "schema:MenuItem"
- }
- ],
+ "rdfs:comment": "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.",
+ "rdfs:label": "interactivityType",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
"schema:rangeIncludes": {
- "@id": "schema:NutritionInformation"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:usageInfo",
+ "@id": "schema:includesAttraction",
"@type": "rdf:Property",
- "rdfs:comment": "The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.\n\nThis property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.",
- "rdfs:label": "usageInfo",
+ "rdfs:comment": "Attraction located at destination.",
+ "rdfs:label": "includesAttraction",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:TouristDestination"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:TouristAttraction"
+ },
+ "schema:source": [
{
- "@id": "schema:CreativeWork"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
},
{
- "@id": "schema:URL"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2454"
- }
- },
- {
- "@id": "schema:Audiobook",
- "@type": "rdfs:Class",
- "rdfs:comment": "An audiobook.",
- "rdfs:label": "Audiobook",
- "rdfs:subClassOf": [
- {
- "@id": "schema:AudioObject"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
},
{
- "@id": "schema:Book"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
}
- ],
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- }
+ ]
},
{
- "@id": "schema:CheckOutAction",
+ "@id": "schema:RVPark",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).\\n\\nRelated actions:\\n\\n* [[CheckInAction]]: The antonym of CheckOutAction.\\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.",
- "rdfs:label": "CheckOutAction",
+ "rdfs:comment": "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.",
+ "rdfs:label": "RVPark",
"rdfs:subClassOf": {
- "@id": "schema:CommunicateAction"
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:suggestedMinAge",
- "@type": "rdf:Property",
- "rdfs:comment": "Minimum recommended age in years for the audience or user.",
- "rdfs:label": "suggestedMinAge",
- "schema:domainIncludes": {
- "@id": "schema:PeopleAudience"
+ "@id": "schema:LymphaticVessel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.",
+ "rdfs:label": "LymphaticVessel",
+ "rdfs:subClassOf": {
+ "@id": "schema:Vessel"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:UnitPriceSpecification",
+ "@id": "schema:ItemAvailability",
"@type": "rdfs:Class",
- "rdfs:comment": "The price asked for a given offer by the respective organization or person.",
- "rdfs:label": "UnitPriceSpecification",
+ "rdfs:comment": "A list of possible product availability options.",
+ "rdfs:label": "ItemAvailability",
"rdfs:subClassOf": {
- "@id": "schema:PriceSpecification"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "schema:Enumeration"
}
},
{
- "@id": "schema:primaryPrevention",
- "@type": "rdf:Property",
- "rdfs:comment": "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.",
- "rdfs:label": "primaryPrevention",
- "schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
- },
+ "@id": "schema:ExchangeRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that a refund can be done as an exchange for the same product.",
+ "rdfs:label": "ExchangeRefund",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalTherapy"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:BoatTrip",
- "@type": "rdfs:Class",
- "rdfs:comment": "A trip on a commercial ferry line.",
- "rdfs:label": "BoatTrip",
- "rdfs:subClassOf": {
- "@id": "schema:Trip"
- },
+ "@id": "schema:CharitableIncorporatedOrganization",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization (UK).",
+ "rdfs:label": "CharitableIncorporatedOrganization",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:recipeIngredient",
+ "@id": "schema:lodgingUnitType",
"@type": "rdf:Property",
- "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
- "rdfs:label": "recipeIngredient",
- "rdfs:subPropertyOf": {
- "@id": "schema:supply"
- },
+ "rdfs:comment": "Textual description of the unit type (including suite vs. room, size of bed, etc.).",
+ "rdfs:label": "lodgingUnitType",
"schema:domainIncludes": {
- "@id": "schema:Recipe"
+ "@id": "schema:LodgingReservation"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
},
{
- "@id": "schema:subjectOf",
+ "@id": "schema:Discontinued",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has been discontinued.",
+ "rdfs:label": "Discontinued"
+ },
+ {
+ "@id": "schema:itemLocation",
"@type": "rdf:Property",
- "rdfs:comment": "A CreativeWork or Event about this Thing.",
- "rdfs:label": "subjectOf",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "Current location of the item."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "itemLocation"
+ },
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
"schema:domainIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:ArchiveComponent"
},
- "schema:inverseOf": {
- "@id": "schema:about"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Event"
+ "@id": "schema:Place"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PostalAddress"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
}
},
{
- "@id": "schema:replyToUrl",
+ "@id": "schema:medicalSpecialty",
"@type": "rdf:Property",
- "rdfs:comment": "The URL at which a reply may be posted to the specified UserComment.",
- "rdfs:label": "replyToUrl",
- "schema:domainIncludes": {
- "@id": "schema:UserComments"
- },
- "schema:rangeIncludes": {
- "@id": "schema:URL"
- }
- },
- {
- "@id": "schema:FireStation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A fire station. With firemen.",
- "rdfs:label": "FireStation",
- "rdfs:subClassOf": [
+ "rdfs:comment": "A medical specialty of the provider.",
+ "rdfs:label": "medicalSpecialty",
+ "schema:domainIncludes": [
{
- "@id": "schema:CivicStructure"
+ "@id": "schema:Physician"
},
{
- "@id": "schema:EmergencyService"
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalClinic"
+ },
+ {
+ "@id": "schema:Hospital"
}
- ]
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSpecialty"
+ }
},
{
- "@id": "schema:numConstraints",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the number of constraints (not counting [[populationType]]) defined for a particular [[StatisticalPopulation]]. This helps applications understand if they have access to a sufficiently complete description of a [[StatisticalPopulation]].",
- "rdfs:label": "numConstraints",
- "schema:domainIncludes": {
- "@id": "schema:StatisticalPopulation"
- },
+ "@id": "schema:BodyMeasurementNeck",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of neck. Used, for example, to fit shirts.",
+ "rdfs:label": "BodyMeasurementNeck",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:creativeWorkStatus",
- "@type": "rdf:Property",
- "rdfs:comment": "The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.",
- "rdfs:label": "creativeWorkStatus",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
+ "@id": "schema:EvidenceLevelA",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Data derived from multiple randomized clinical trials or meta-analyses.",
+ "rdfs:label": "EvidenceLevelA",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:returnPolicyCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies an applicable return policy (from an enumeration).",
+ "rdfs:label": "returnPolicyCategory",
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
},
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:MerchantReturnPolicy"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MerchantReturnEnumeration"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/987"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:HearingImpairedSupported",
- "@type": "schema:ContactPointOption",
- "rdfs:comment": "Uses devices to support users with hearing impairments.",
- "rdfs:label": "HearingImpairedSupported"
- },
- {
- "@id": "schema:OfferShippingDetails",
- "@type": "rdfs:Class",
- "rdfs:comment": "OfferShippingDetails represents information about shipping destinations.\n\nMultiple of these entities can be used to represent different shipping rates for different destinations:\n\nOne entity for Alaska/Hawaii. A different one for continental US.A different one for all France.\n\nMultiple of these entities can be used to represent different shipping costs and delivery times.\n\nTwo entities that are identical but differ in rate and time:\n\ne.g. Cheaper and slower: $5 in 5-7days\nor Fast and expensive: $15 in 1-2 days.",
- "rdfs:label": "OfferShippingDetails",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
+ "@id": "schema:SpeechPathology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The scientific study and treatment of defects, disorders, and malfunctions of speech and voice, as stuttering, lisping, or lalling, and of language disturbances, as aphasia or delayed language acquisition.",
+ "rdfs:label": "SpeechPathology",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:MenuItem",
+ "@id": "schema:DigitalDocument",
"@type": "rdfs:Class",
- "rdfs:comment": "A food or drink item listed in a menu or menu section.",
- "rdfs:label": "MenuItem",
+ "rdfs:comment": "An electronic file or document.",
+ "rdfs:label": "DigitalDocument",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:catalog",
+ "@id": "schema:device",
"@type": "rdf:Property",
- "rdfs:comment": "A data catalog which contains this dataset.",
- "rdfs:label": "catalog",
+ "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
+ "rdfs:label": "device",
"schema:domainIncludes": {
- "@id": "schema:Dataset"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": {
- "@id": "schema:DataCatalog"
+ "@id": "schema:Text"
},
"schema:supersededBy": {
- "@id": "schema:includedInDataCatalog"
+ "@id": "schema:availableOnDevice"
}
},
{
- "@id": "schema:query",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of instrument. The query used on this action.",
- "rdfs:label": "query",
- "rdfs:subPropertyOf": {
- "@id": "schema:instrument"
- },
- "schema:domainIncludes": {
- "@id": "schema:SearchAction"
+ "@id": "schema:OpeningHoursSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value providing information about the opening hours of a place or a certain service inside a place.\\n\\n\nThe place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\\n\\nIf the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.\n ",
+ "rdfs:label": "OpeningHoursSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:Crematorium",
+ "@id": "schema:PresentationDigitalDocument",
"@type": "rdfs:Class",
- "rdfs:comment": "A crematorium.",
- "rdfs:label": "Crematorium",
+ "rdfs:comment": "A file containing slides or used for a presentation.",
+ "rdfs:label": "PresentationDigitalDocument",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:DigitalDocument"
}
},
{
- "@id": "schema:billingAddress",
+ "@id": "schema:ProfessionalService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Original definition: \"provider of professional services.\"\\n\\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]],\n [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]],\n [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]].",
+ "rdfs:label": "ProfessionalService",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:availableChannel",
"@type": "rdf:Property",
- "rdfs:comment": "The billing address for the order.",
- "rdfs:label": "billingAddress",
+ "rdfs:comment": "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).",
+ "rdfs:label": "availableChannel",
"schema:domainIncludes": {
- "@id": "schema:Order"
+ "@id": "schema:Service"
},
"schema:rangeIncludes": {
- "@id": "schema:PostalAddress"
+ "@id": "schema:ServiceChannel"
}
},
{
- "@id": "schema:vehicleConfiguration",
+ "@id": "schema:Book",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A book.",
+ "rdfs:label": "Book",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:BankOrCreditUnion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Bank or credit union.",
+ "rdfs:label": "BankOrCreditUnion",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:abstract",
"@type": "rdf:Property",
- "rdfs:comment": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.",
- "rdfs:label": "vehicleConfiguration",
+ "rdfs:comment": "An abstract is a short description that summarizes a [[CreativeWork]].",
+ "rdfs:label": "abstract",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/276"
}
},
{
- "@id": "schema:aspect",
+ "@id": "schema:cholesterolContent",
"@type": "rdf:Property",
- "rdfs:comment": "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.",
- "rdfs:label": "aspect",
+ "rdfs:comment": "The number of milligrams of cholesterol.",
+ "rdfs:label": "cholesterolContent",
"schema:domainIncludes": {
- "@id": "schema:MedicalWebPage"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:NutritionInformation"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:supersededBy": {
- "@id": "schema:mainContentOfPage"
+ "@id": "schema:Mass"
}
},
{
- "@id": "schema:Protein",
- "@type": "rdfs:Class",
- "http://purl.org/dc/terms/source": {
- "@id": "http://bioschemas.org"
- },
- "rdfs:comment": "Protein is here used in its widest possible definition, as classes of amino acid based molecules. Amyloid-beta Protein in human (UniProt P05067), eukaryota (e.g. an OrthoDB group) or even a single molecule that one can point to are all of type schema:Protein. A protein can thus be a subclass of another protein, e.g. schema:Protein as a UniProt record can have multiple isoforms inside it which would also be schema:Protein. They can be imagined, synthetic, hypothetical or naturally occurring.",
- "rdfs:label": "Protein",
- "rdfs:subClassOf": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:numChildren",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of children staying in the unit.",
+ "rdfs:label": "numChildren",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
},
{
- "@id": "schema:WearableMeasurementChestOrBust",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the chest/bust section, for example of a suit",
- "rdfs:label": "WearableMeasurementChestOrBust",
+ "@id": "schema:IngredientsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content discussing ingredients-related aspects of a health topic.",
+ "rdfs:label": "IngredientsHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:WantAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of expressing a desire about the object. An agent wants an object.",
- "rdfs:label": "WantAction",
- "rdfs:subClassOf": {
- "@id": "schema:ReactAction"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
}
},
{
- "@id": "schema:softwareHelp",
+ "@id": "schema:membershipNumber",
"@type": "rdf:Property",
- "rdfs:comment": "Software application help.",
- "rdfs:label": "softwareHelp",
+ "rdfs:comment": "A unique identifier for the membership.",
+ "rdfs:label": "membershipNumber",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:ProgramMembership"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:HyperToc",
- "@type": "rdfs:Class",
- "rdfs:comment": "A HyperToc represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. Items in the table of contents are indicated using the [[tocEntry]] property, and typed [[HyperTocEntry]]. For cases where the same larger work is split into multiple files, [[associatedMedia]] can be used on individual [[HyperTocEntry]] items.",
- "rdfs:label": "HyperToc",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:distribution",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A downloadable form of this dataset, at a specific location, in a specific format. This property can be repeated if different variations are available. There is no expectation that different downloadable distributions must contain exactly equivalent information (see also [DCAT](https://www.w3.org/TR/vocab-dcat-3/#Class:Distribution) on this point). Different distributions might include or exclude different subsets of the entire dataset, for example.",
+ "rdfs:label": "distribution",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ "schema:rangeIncludes": {
+ "@id": "schema:DataDownload"
}
},
{
- "@id": "schema:TrackAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "An agent tracks an object for updates.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects.",
- "rdfs:label": "TrackAction",
- "rdfs:subClassOf": {
- "@id": "schema:FindAction"
+ "@id": "schema:valueMinLength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the minimum allowed range for number of characters in a literal value.",
+ "rdfs:label": "valueMinLength",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:pageStart",
+ "@id": "schema:guidelineDate",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/ontology/bibo/pageStart"
+ "rdfs:comment": "Date on which this guideline's recommendation was made.",
+ "rdfs:label": "guidelineDate",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
},
- "rdfs:comment": "The page on which the work starts; for example \"135\" or \"xiii\".",
- "rdfs:label": "pageStart",
- "schema:domainIncludes": [
- {
- "@id": "schema:Article"
- },
- {
- "@id": "schema:Chapter"
- },
- {
- "@id": "schema:PublicationIssue"
- },
- {
- "@id": "schema:PublicationVolume"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Integer"
- },
- {
- "@id": "schema:Text"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:CommunityHealth",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas.",
- "rdfs:label": "CommunityHealth",
+ "@id": "schema:programMembershipUsed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.",
+ "rdfs:label": "programMembershipUsed",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ProgramMembership"
+ }
+ },
+ {
+ "@id": "schema:medicineSystem",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.",
+ "rdfs:label": "medicineSystem",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicineSystem"
+ }
+ },
+ {
+ "@id": "schema:MedicalTrialDesign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Design models for medical trials. Enumerated type.",
+ "rdfs:label": "MedicalTrialDesign",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:MedicalEnumeration"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc"
}
},
{
- "@id": "schema:seatingType",
+ "@id": "schema:fileFormat",
"@type": "rdf:Property",
- "rdfs:comment": "The type/class of the seat.",
- "rdfs:label": "seatingType",
+ "rdfs:comment": "Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.",
+ "rdfs:label": "fileFormat",
"schema:domainIncludes": {
- "@id": "schema:Seat"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": [
{
"@id": "schema:Text"
},
{
- "@id": "schema:QualitativeValue"
+ "@id": "schema:URL"
}
- ]
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:encodingFormat"
+ }
},
{
- "@id": "schema:eligibleRegion",
+ "@id": "schema:PhysicalTherapy",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A process of progressive physical care and rehabilitation aimed at improving a health condition.",
+ "rdfs:label": "PhysicalTherapy",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalTherapy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:interpretedAsClaim",
"@type": "rdf:Property",
- "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\\n\\nSee also [[ineligibleRegion]].\n ",
- "rdfs:label": "eligibleRegion",
+ "rdfs:comment": "Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].",
+ "rdfs:label": "interpretedAsClaim",
"rdfs:subPropertyOf": {
- "@id": "schema:areaServed"
+ "@id": "schema:description"
},
"schema:domainIncludes": [
{
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:ActionAccessSpecification"
- },
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:DeliveryChargeSpecification"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:GeoShape"
- },
- {
- "@id": "schema:Place"
+ "@id": "schema:MediaObject"
},
{
- "@id": "schema:Text"
+ "@id": "schema:CreativeWork"
}
],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Claim"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
+ },
+ {
+ "@id": "schema:serviceOperator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.",
+ "rdfs:label": "serviceOperator",
+ "schema:domainIncludes": {
+ "@id": "schema:GovernmentService"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ }
},
{
"@id": "schema:broadcastOfEvent",
@@ -17388,1939 +17279,2178 @@
}
},
{
- "@id": "schema:printColumn",
+ "@id": "schema:bookingAgent",
"@type": "rdf:Property",
- "rdfs:comment": "The number of the column in which the NewsArticle appears in the print edition.",
- "rdfs:label": "printColumn",
+ "rdfs:comment": "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.",
+ "rdfs:label": "bookingAgent",
"schema:domainIncludes": {
- "@id": "schema:NewsArticle"
+ "@id": "schema:Reservation"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:broker"
}
},
{
- "@id": "schema:minValue",
+ "@id": "schema:itemReviewed",
"@type": "rdf:Property",
- "rdfs:comment": "The lower value of some characteristic or property.",
- "rdfs:label": "minValue",
+ "rdfs:comment": "The item that is being reviewed/rated.",
+ "rdfs:label": "itemReviewed",
"schema:domainIncludes": [
{
- "@id": "schema:MonetaryAmount"
- },
- {
- "@id": "schema:PropertyValueSpecification"
- },
- {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Review"
},
{
- "@id": "schema:PropertyValue"
+ "@id": "schema:AggregateRating"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:DrugPregnancyCategory",
- "@type": "rdfs:Class",
- "rdfs:comment": "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.",
- "rdfs:label": "DrugPregnancyCategory",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
- },
+ "@id": "schema:status",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The status of the study (enumerated).",
+ "rdfs:label": "status",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ },
+ {
+ "@id": "schema:MedicalStudy"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:OfficialLegalValue",
- "@type": "schema:LegalValueLevel",
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#LegalValue-official"
- },
- "rdfs:comment": "All the documents published by an official publisher should have at least the legal value level \"OfficialLegalValue\". This indicates that the document was published by an organisation with the public task of making it available (e.g. a consolidated version of a EU directive published by the EU Office of Publications).",
- "rdfs:label": "OfficialLegalValue",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:MedicalStudyStatus"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:EventStatusType"
}
]
},
{
- "@id": "schema:Installment",
- "@type": "schema:PriceComponentTypeEnumeration",
- "rdfs:comment": "Represents the installment pricing component of the total price for an offered product.",
- "rdfs:label": "Installment",
+ "@id": "schema:returnLabelSource",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned for any reason.",
+ "rdfs:label": "returnLabelSource",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnLabelSourceEnumeration"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:WearableSizeGroupHusky",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Husky\" (or \"Stocky\") for wearables.",
- "rdfs:label": "WearableSizeGroupHusky",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:vehicleInteriorType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.",
+ "rdfs:label": "vehicleInteriorType",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:MusicPlaylist",
- "@type": "rdfs:Class",
- "rdfs:comment": "A collection of music tracks in playlist form.",
- "rdfs:label": "MusicPlaylist",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:originatesFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The vasculature the lymphatic structure originates, or afferents, from.",
+ "rdfs:label": "originatesFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:LymphaticVessel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
}
},
{
- "@id": "schema:requiresSubscription",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates if use of the media require a subscription (either paid or free). Allowed values are ```true``` or ```false``` (note that an earlier version had 'yes', 'no').",
- "rdfs:label": "requiresSubscription",
- "schema:domainIncludes": [
+ "@id": "schema:Drug",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/410942007"
+ },
+ "rdfs:comment": "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge makes a clear difference between them.",
+ "rdfs:label": "Drug",
+ "rdfs:subClassOf": [
{
- "@id": "schema:ActionAccessSpecification"
+ "@id": "schema:Product"
},
{
- "@id": "schema:MediaObject"
+ "@id": "schema:Substance"
}
],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:interactionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Action representing the type of interaction. For up votes, +1s, etc. use [[LikeAction]]. For down votes use [[DislikeAction]]. Otherwise, use the most specific Action.",
+ "rdfs:label": "interactionType",
+ "schema:domainIncludes": {
+ "@id": "schema:InteractionCounter"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:hasMap",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "hasMap",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Boolean"
+ "@id": "schema:URL"
},
{
- "@id": "schema:MediaSubscription"
+ "@id": "schema:Map"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ ]
+ },
+ {
+ "@id": "schema:Season",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media season, e.g. TV, radio, video game etc.",
+ "rdfs:label": "Season",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:CreativeWorkSeason"
}
},
{
- "@id": "schema:runtime",
+ "@id": "schema:parent",
"@type": "rdf:Property",
- "rdfs:comment": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).",
- "rdfs:label": "runtime",
+ "rdfs:comment": "A parent of this person.",
+ "rdfs:label": "parent",
"schema:domainIncludes": {
- "@id": "schema:SoftwareSourceCode"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:supersededBy": {
- "@id": "schema:runtimePlatform"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:MedicineSystem",
- "@type": "rdfs:Class",
- "rdfs:comment": "Systems of medical practice.",
- "rdfs:label": "MedicineSystem",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:safetyConsideration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.",
+ "rdfs:label": "safetyConsideration",
+ "schema:domainIncludes": {
+ "@id": "schema:DietarySupplement"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:EmergencyService",
+ "@id": "schema:EventVenue",
"@type": "rdfs:Class",
- "rdfs:comment": "An emergency service, such as a fire station or ER.",
- "rdfs:label": "EmergencyService",
+ "rdfs:comment": "An event venue.",
+ "rdfs:label": "EventVenue",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:Duration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).",
- "rdfs:label": "Duration",
- "rdfs:subClassOf": {
- "@id": "schema:Quantity"
+ "@id": "schema:vehicleEngine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about the engine or engines of the vehicle.",
+ "rdfs:label": "vehicleEngine",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:publisher",
+ "@id": "schema:text",
"@type": "rdf:Property",
- "rdfs:comment": "The publisher of the creative work.",
- "rdfs:label": "publisher",
+ "rdfs:comment": "The textual content of this CreativeWork.",
+ "rdfs:label": "text",
"schema:domainIncludes": {
"@id": "schema:CreativeWork"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:NonprofitSBBI",
- "@type": "schema:NLNonprofitType",
- "rdfs:comment": "NonprofitSBBI: Non-profit type referring to a Social Interest Promoting Institution (NL).",
- "rdfs:label": "NonprofitSBBI",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ "@id": "schema:EPRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "EPRelease.",
+ "rdfs:label": "EPRelease",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:memberOf",
+ "@id": "schema:fundedItem",
"@type": "rdf:Property",
- "rdfs:comment": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
- "rdfs:label": "memberOf",
- "schema:domainIncludes": [
+ "rdfs:comment": "Indicates something directly or indirectly funded or sponsored through a [[Grant]]. See also [[ownershipFundingInfo]].",
+ "rdfs:label": "fundedItem",
+ "schema:domainIncludes": {
+ "@id": "schema:Grant"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:funding"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:Event"
+ },
{
"@id": "schema:Person"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:MedicalEntity"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
],
- "schema:inverseOf": {
- "@id": "schema:member"
- },
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:ProgramMembership"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "schema:Organization"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
}
]
},
{
- "@id": "schema:pickupLocation",
+ "@id": "schema:ReservationPackage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A group of multiple reservations with common values for all sub-reservations.",
+ "rdfs:label": "ReservationPackage",
+ "rdfs:subClassOf": {
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:archivedAt",
"@type": "rdf:Property",
- "rdfs:comment": "Where a taxi will pick up a passenger or a rental car can be picked up.",
- "rdfs:label": "pickupLocation",
- "schema:domainIncludes": [
+ "rdfs:comment": "Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.",
+ "rdfs:label": "archivedAt",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:RentalCarReservation"
+ "@id": "schema:WebPage"
},
{
- "@id": "schema:TaxiReservation"
+ "@id": "schema:URL"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Place"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:BackgroundNewsArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [[NewsArticle]] providing historical context, definition and detail on a specific topic (aka \"explainer\" or \"backgrounder\"). For example, an in-depth article or frequently-asked-questions ([FAQ](https://en.wikipedia.org/wiki/FAQ)) document on topics such as Climate Change or the European Union. Other kinds of background material from a non-news setting are often described using [[Book]] or [[Article]], in particular [[ScholarlyArticle]]. See also [[NewsArticle]] for related vocabulary from a learning/education perspective.",
- "rdfs:label": "BackgroundNewsArticle",
- "rdfs:subClassOf": {
- "@id": "schema:NewsArticle"
+ "@id": "schema:molecularWeight",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "This is the molecular weight of the entity being described, not of the parent. Units should be included in the form '<Number> <unit>', for example '12 amu' or as '<QuantitativeValue>.",
+ "rdfs:label": "molecularWeight",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:educationalProgramMode",
+ "@id": "schema:merchant",
"@type": "rdf:Property",
- "rdfs:comment": "Similar to courseMode, The medium or means of delivery of the program as a whole. The value may either be a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).",
- "rdfs:label": "educationalProgramMode",
+ "rdfs:comment": "'merchant' is an out-dated term for 'seller'.",
+ "rdfs:label": "merchant",
"schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Order"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Person"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ "schema:supersededBy": {
+ "@id": "schema:seller"
}
},
{
- "@id": "schema:Course",
+ "@id": "schema:AutoBodyShop",
"@type": "rdfs:Class",
- "rdfs:comment": "A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.",
- "rdfs:label": "Course",
- "rdfs:subClassOf": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:LearningResource"
- }
- ]
- },
- {
- "@id": "schema:RespiratoryTherapy",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "The therapy that is concerned with the maintenance or improvement of respiratory function (as in patients with pulmonary disease).",
- "rdfs:label": "RespiratoryTherapy",
+ "rdfs:comment": "Auto body shop.",
+ "rdfs:label": "AutoBodyShop",
"rdfs:subClassOf": {
- "@id": "schema:MedicalTherapy"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:AutomotiveBusiness"
}
},
{
- "@id": "schema:commentTime",
+ "@id": "schema:gtin",
"@type": "rdf:Property",
- "rdfs:comment": "The time at which the UserComment was made.",
- "rdfs:label": "commentTime",
- "schema:domainIncludes": {
- "@id": "schema:UserComments"
+ "rdfs:comment": "A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin)). GTINs identify trade items, including products and services, using numeric identification codes.\n\nThe GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) express GTINs as URLs (URIs, IRIs, etc.). Details including regular expression examples can be found in, Section 6 of the GS1 URI Syntax specification; see also [schema.org tracking issue](https://github.com/schemaorg/schemaorg/issues/3156#issuecomment-1209522809) for schema.org-specific discussion. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a \"GS1 Digital Link\" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties.\n\nNote also that this is a definition for how to include GTINs in Schema.org data, and not a definition of GTINs in general - see the GS1 documentation for authoritative details.",
+ "rdfs:label": "gtin",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
},
- "schema:rangeIncludes": [
+ "schema:domainIncludes": [
{
- "@id": "schema:Date"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:DateTime"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
}
- ]
- },
- {
- "@id": "schema:dateRead",
- "@type": "rdf:Property",
- "rdfs:comment": "The date/time at which the message has been read by the recipient if a single recipient exists.",
- "rdfs:label": "dateRead",
- "schema:domainIncludes": {
- "@id": "schema:Message"
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:DateTime"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Date"
+ "@id": "schema:URL"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
},
{
- "@id": "schema:Bakery",
+ "@id": "schema:LegalForceStatus",
"@type": "rdfs:Class",
- "rdfs:comment": "A bakery.",
- "rdfs:label": "Bakery",
+ "rdfs:comment": "A list of possible statuses for the legal force of a legislation.",
+ "rdfs:label": "LegalForceStatus",
"rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:StatusEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce"
}
},
{
- "@id": "schema:recipeCategory",
+ "@id": "schema:jobStartDate",
"@type": "rdf:Property",
- "rdfs:comment": "The category of the recipe—for example, appetizer, entree, etc.",
- "rdfs:label": "recipeCategory",
+ "rdfs:comment": "The date on which a successful applicant for this job would be expected to start work. Choose a specific date in the future or use the jobImmediateStart property to indicate the position is to be filled as soon as possible.",
+ "rdfs:label": "jobStartDate",
"schema:domainIncludes": {
- "@id": "schema:Recipe"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:HowTo",
- "@type": "rdfs:Class",
- "rdfs:comment": "Instructions that explain how to achieve a result by performing a sequence of steps.",
- "rdfs:label": "HowTo",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:Hackathon",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event.",
- "rdfs:label": "Hackathon",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:JobPosting"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2526"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2244"
}
},
{
- "@id": "schema:healthPlanId",
- "@type": "rdf:Property",
- "rdfs:comment": "The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)",
- "rdfs:label": "healthPlanId",
- "schema:domainIncludes": {
- "@id": "schema:HealthInsurancePlan"
- },
+ "@id": "schema:TypesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Categorization and other types related to a topic.",
+ "rdfs:label": "TypesHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:MusicReleaseFormatType",
+ "@id": "schema:CheckAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).",
- "rdfs:label": "MusicReleaseFormatType",
+ "rdfs:comment": "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.",
+ "rdfs:label": "CheckAction",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:FindAction"
}
},
{
- "@id": "schema:ReturnAtKiosk",
- "@type": "schema:ReturnMethodEnumeration",
- "rdfs:comment": "Specifies that product returns must be made at a kiosk.",
- "rdfs:label": "ReturnAtKiosk",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ "@id": "schema:StudioAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "StudioAlbum.",
+ "rdfs:label": "StudioAlbum",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:HowToDirection",
- "@type": "rdfs:Class",
- "rdfs:comment": "A direction indicating a single action to do in the instructions for how to achieve a result.",
- "rdfs:label": "HowToDirection",
- "rdfs:subClassOf": [
+ "@id": "schema:iataCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "IATA identifier for an airline or airport.",
+ "rdfs:label": "iataCode",
+ "schema:domainIncludes": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Airline"
},
{
- "@id": "schema:ListItem"
+ "@id": "schema:Airport"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:PostalAddress",
- "@type": "rdfs:Class",
- "rdfs:comment": "The mailing address.",
- "rdfs:label": "PostalAddress",
- "rdfs:subClassOf": {
+ "@id": "schema:contactType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.",
+ "rdfs:label": "contactType",
+ "schema:domainIncludes": {
"@id": "schema:ContactPoint"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:ItemListOrderType",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.",
- "rdfs:label": "ItemListOrderType",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:title",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The title of the job.",
+ "rdfs:label": "title",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:payload",
+ "@id": "schema:characterName",
"@type": "rdf:Property",
- "rdfs:comment": "The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]\\n* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "payload",
+ "rdfs:comment": "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.",
+ "rdfs:label": "characterName",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "schema:PerformanceRole"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:Surgical",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.",
- "rdfs:label": "Surgical",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "schema:dateDeleted",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The datetime the item was removed from the DataFeed.",
+ "rdfs:label": "dateDeleted",
+ "schema:domainIncludes": {
+ "@id": "schema:DataFeedItem"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ]
},
{
- "@id": "schema:slogan",
+ "@id": "schema:isRelatedTo",
"@type": "rdf:Property",
- "rdfs:comment": "A slogan or motto associated with the item.",
- "rdfs:label": "slogan",
+ "rdfs:comment": "A pointer to another, somehow related product (or multiple products).",
+ "rdfs:label": "isRelatedTo",
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:Service"
},
{
"@id": "schema:Product"
- },
- {
- "@id": "schema:Service"
- },
+ }
+ ],
+ "schema:rangeIncludes": [
{
- "@id": "schema:Brand"
+ "@id": "schema:Product"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Service"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:subTrip",
- "@type": "rdf:Property",
- "rdfs:comment": "Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip.",
- "rdfs:label": "subTrip",
- "schema:domainIncludes": {
- "@id": "schema:Trip"
- },
- "schema:inverseOf": {
- "@id": "schema:partOfTrip"
- },
+ "@id": "schema:DisabilitySupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "DisabilitySupport: this is a benefit for disability support.",
+ "rdfs:label": "DisabilitySupport",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Trip"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:negativeNotes",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Provides negative considerations regarding something, most typically in pro/con lists for reviews (alongside [[positiveNotes]]). For symmetry \n\nIn the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described. Since product descriptions \ntend to emphasise positive claims, it may be relatively unusual to find [[negativeNotes]] used in this way. Nevertheless for the sake of symmetry, [[negativeNotes]] can be used on [[Product]].\n\nThe property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most negative is at the beginning of the list).",
+ "rdfs:label": "negativeNotes",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Review"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ "@id": "schema:ListItem"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:WebContent"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2832"
+ }
},
{
- "@id": "schema:associatedClaimReview",
- "@type": "rdf:Property",
- "rdfs:comment": "An associated [[ClaimReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].",
- "rdfs:label": "associatedClaimReview",
- "rdfs:subPropertyOf": {
- "@id": "schema:associatedReview"
- },
- "schema:domainIncludes": {
- "@id": "schema:Review"
- },
+ "@id": "schema:StagesHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Stages that can be observed from a topic.",
+ "rdfs:label": "StagesHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Review"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:releasedEvent",
+ "@id": "schema:alternativeHeadline",
"@type": "rdf:Property",
- "rdfs:comment": "The place and time the release was issued, expressed as a PublicationEvent.",
- "rdfs:label": "releasedEvent",
+ "rdfs:comment": "A secondary title of the CreativeWork.",
+ "rdfs:label": "alternativeHeadline",
"schema:domainIncludes": {
"@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:PublicationEvent"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:Male",
- "@type": "schema:GenderType",
- "rdfs:comment": "The male gender.",
- "rdfs:label": "Male"
- },
- {
- "@id": "schema:UserBlocks",
- "@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserBlocks",
- "rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
+ "@id": "schema:assembly",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Library file name, e.g., mscorlib.dll, system.web.dll.",
+ "rdfs:label": "assembly",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
"schema:supersededBy": {
- "@id": "schema:InteractionCounter"
- }
- },
- {
- "@id": "schema:AuthorizeAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of granting permission to an object.",
- "rdfs:label": "AuthorizeAction",
- "rdfs:subClassOf": {
- "@id": "schema:AllocateAction"
+ "@id": "schema:executableLibraryName"
}
},
{
- "@id": "schema:PaymentMethod",
- "@type": "rdfs:Class",
- "rdfs:comment": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n* http://purl.org/goodrelations/v1#ByInvoice\\n* http://purl.org/goodrelations/v1#Cash\\n* http://purl.org/goodrelations/v1#CheckInAdvance\\n* http://purl.org/goodrelations/v1#COD\\n* http://purl.org/goodrelations/v1#DirectDebit\\n* http://purl.org/goodrelations/v1#GoogleCheckout\\n* http://purl.org/goodrelations/v1#PayPal\\n* http://purl.org/goodrelations/v1#PaySwarm\n ",
- "rdfs:label": "PaymentMethod",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:application",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An application that can complete the request.",
+ "rdfs:label": "application",
+ "schema:domainIncludes": {
+ "@id": "schema:EntryPoint"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:actionApplication"
}
},
{
- "@id": "schema:answerExplanation",
+ "@id": "schema:creditText",
"@type": "rdf:Property",
- "rdfs:comment": "A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ",
- "rdfs:label": "answerExplanation",
+ "rdfs:comment": "Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.",
+ "rdfs:label": "creditText",
"schema:domainIncludes": {
- "@id": "schema:Answer"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2659"
+ }
+ },
+ {
+ "@id": "schema:suggestedMeasurement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A suggested range of body measurements for the intended audience or person, for example inseam between 32 and 34 inches or height between 170 and 190 cm. Typically found on a size chart for wearable products.",
+ "rdfs:label": "suggestedMeasurement",
+ "schema:domainIncludes": [
{
- "@id": "schema:WebContent"
+ "@id": "schema:SizeSpecification"
},
{
- "@id": "schema:Comment"
+ "@id": "schema:PeopleAudience"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2636"
- }
- },
- {
- "@id": "schema:UsedCondition",
- "@type": "schema:OfferItemCondition",
- "rdfs:comment": "Indicates that the item is used.",
- "rdfs:label": "UsedCondition"
- },
- {
- "@id": "schema:UserPlusOnes",
- "@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserPlusOnes",
- "rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:supersededBy": {
- "@id": "schema:InteractionCounter"
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:downvoteCount",
+ "@id": "schema:eventStatus",
"@type": "rdf:Property",
- "rdfs:comment": "The number of downvotes this question, answer or comment has received from the community.",
- "rdfs:label": "downvoteCount",
+ "rdfs:comment": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.",
+ "rdfs:label": "eventStatus",
"schema:domainIncludes": {
- "@id": "schema:Comment"
+ "@id": "schema:Event"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:EventStatusType"
}
},
{
- "@id": "schema:containedInPlace",
+ "@id": "schema:containedIn",
"@type": "rdf:Property",
"rdfs:comment": "The basic containment relation between a place and one that contains it.",
- "rdfs:label": "containedInPlace",
+ "rdfs:label": "containedIn",
"schema:domainIncludes": {
"@id": "schema:Place"
},
- "schema:inverseOf": {
- "@id": "schema:containsPlace"
- },
"schema:rangeIncludes": {
"@id": "schema:Place"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:containedInPlace"
}
},
{
- "@id": "schema:customer",
- "@type": "rdf:Property",
- "rdfs:comment": "Party placing the order or paying the invoice.",
- "rdfs:label": "customer",
- "schema:domainIncludes": [
- {
- "@id": "schema:Invoice"
+ "@id": "schema:LegislationObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific object or file containing a Legislation. Note that the same Legislation can be published in multiple files. For example, a digitally signed PDF, a plain PDF and an HTML version.",
+ "rdfs:label": "LegislationObject",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Legislation"
},
{
- "@id": "schema:Order"
+ "@id": "schema:MediaObject"
}
],
- "schema:rangeIncludes": [
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:Person"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:Organization"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
- ]
+ ],
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#Format"
+ }
},
{
- "@id": "schema:includedRiskFactor",
+ "@id": "schema:bankAccountType",
"@type": "rdf:Property",
- "rdfs:comment": "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.",
- "rdfs:label": "includedRiskFactor",
+ "rdfs:comment": "The type of a bank account.",
+ "rdfs:label": "bankAccountType",
"schema:domainIncludes": {
- "@id": "schema:MedicalRiskEstimator"
+ "@id": "schema:BankAccount"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalRiskFactor"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
},
{
- "@id": "schema:uploadDate",
- "@type": "rdf:Property",
- "rdfs:comment": "Date when this media object was uploaded to this site.",
- "rdfs:label": "uploadDate",
- "schema:domainIncludes": {
- "@id": "schema:MediaObject"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Airport",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An airport.",
+ "rdfs:label": "Airport",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:seasons",
+ "@id": "schema:trailer",
"@type": "rdf:Property",
- "rdfs:comment": "A season in a media series.",
- "rdfs:label": "seasons",
+ "rdfs:comment": "The trailer of a movie or TV/radio series, season, episode, etc.",
+ "rdfs:label": "trailer",
"schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
{
"@id": "schema:TVSeries"
},
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
},
{
"@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
}
],
"schema:rangeIncludes": {
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:VideoObject"
+ }
+ },
+ {
+ "@id": "schema:documentation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Further documentation describing the Web API in more detail.",
+ "rdfs:label": "documentation",
+ "schema:domainIncludes": {
+ "@id": "schema:WebAPI"
},
- "schema:supersededBy": {
- "@id": "schema:season"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
}
},
{
- "@id": "schema:RandomizedTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "A randomized trial design.",
- "rdfs:label": "RandomizedTrial",
+ "@id": "schema:MedicalStudyStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The status of a medical study. Enumerated type.",
+ "rdfs:label": "MedicalStudyStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:supplyTo",
+ "@id": "schema:bioChemInteraction",
"@type": "rdf:Property",
- "rdfs:comment": "The area to which the artery supplies blood.",
- "rdfs:label": "supplyTo",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A BioChemEntity that is known to interact with this item.",
+ "rdfs:label": "bioChemInteraction",
"schema:domainIncludes": {
- "@id": "schema:Artery"
+ "@id": "schema:BioChemEntity"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:BioChemEntity"
}
},
{
- "@id": "schema:programType",
+ "@id": "schema:naturalProgression",
"@type": "rdf:Property",
- "rdfs:comment": "The type of educational or occupational program. For example, classroom, internship, alternance, etc..",
- "rdfs:label": "programType",
+ "rdfs:comment": "The expected progression of the condition if it is not treated and allowed to progress naturally.",
+ "rdfs:label": "naturalProgression",
"schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:MedicalCondition"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:paymentStatus",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The status of payment; whether the invoice has been paid or not.",
+ "rdfs:label": "paymentStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
},
"schema:rangeIncludes": [
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Text"
+ "@id": "schema:PaymentStatusType"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
- }
- },
- {
- "@id": "schema:WPHeader",
- "@type": "rdfs:Class",
- "rdfs:comment": "The header section of the page.",
- "rdfs:label": "WPHeader",
- "rdfs:subClassOf": {
- "@id": "schema:WebPageElement"
- }
+ ]
},
{
- "@id": "schema:fuelType",
+ "@id": "schema:itemOffered",
"@type": "rdf:Property",
- "rdfs:comment": "The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.",
- "rdfs:label": "fuelType",
+ "rdfs:comment": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
+ "rdfs:label": "itemOffered",
"schema:domainIncludes": [
{
- "@id": "schema:Vehicle"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:EngineSpecification"
+ "@id": "schema:Offer"
}
],
+ "schema:inverseOf": {
+ "@id": "schema:offers"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Product"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Service"
},
{
- "@id": "schema:QualitativeValue"
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:AggregateOffer"
+ },
+ {
+ "@id": "schema:Trip"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ ]
+ },
+ {
+ "@id": "schema:gameEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The edition of a video game.",
+ "rdfs:label": "gameEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoGame"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:isSimilarTo",
+ "@id": "schema:numberOfBedrooms",
"@type": "rdf:Property",
- "rdfs:comment": "A pointer to another, functionally similar product (or multiple products).",
- "rdfs:label": "isSimilarTo",
+ "rdfs:comment": "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]].",
+ "rdfs:label": "numberOfBedrooms",
"schema:domainIncludes": [
{
- "@id": "schema:Service"
+ "@id": "schema:FloorPlan"
},
{
- "@id": "schema:Product"
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Product"
+ "@id": "schema:Number"
},
{
- "@id": "schema:Service"
+ "@id": "schema:QuantitativeValue"
}
],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:arrivalPlatform",
+ "@id": "schema:intensity",
"@type": "rdf:Property",
- "rdfs:comment": "The platform where the train arrives.",
- "rdfs:label": "arrivalPlatform",
+ "rdfs:comment": "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.",
+ "rdfs:label": "intensity",
"schema:domainIncludes": {
- "@id": "schema:TrainTrip"
+ "@id": "schema:ExercisePlan"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:UserInteraction",
+ "@id": "schema:UserLikes",
"@type": "rdfs:Class",
"rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserInteraction",
+ "rdfs:label": "UserLikes",
"rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:UserInteraction"
},
"schema:supersededBy": {
"@id": "schema:InteractionCounter"
}
},
{
- "@id": "schema:CreativeWork",
- "@type": "rdfs:Class",
- "rdfs:comment": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
- "rdfs:label": "CreativeWork",
- "rdfs:subClassOf": {
- "@id": "schema:Thing"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
- }
- },
- {
- "@id": "schema:Quotation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A quotation. Often but not necessarily from some written work, attributable to a real world author and - if associated with a fictional character - to any fictional Person. Use [[isBasedOn]] to link to source/origin. The [[recordedIn]] property can be used to reference a Quotation from an [[Event]].",
- "rdfs:label": "Quotation",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:funding",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]].",
+ "rdfs:label": "funding",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ },
+ {
+ "@id": "schema:Product"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:fundedItem"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/271"
- }
+ "schema:rangeIncludes": {
+ "@id": "schema:Grant"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
},
{
- "@id": "schema:TraditionalChinese",
- "@type": "schema:MedicineSystem",
- "rdfs:comment": "A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.",
- "rdfs:label": "TraditionalChinese",
+ "@id": "schema:proprietaryName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Proprietary name given to the diet plan, typically by its originator or creator.",
+ "rdfs:label": "proprietaryName",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DietarySupplement"
+ },
+ {
+ "@id": "schema:Drug"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:MusicVideoObject",
- "@type": "rdfs:Class",
- "rdfs:comment": "A music video file.",
- "rdfs:label": "MusicVideoObject",
- "rdfs:subClassOf": {
- "@id": "schema:MediaObject"
+ "@id": "schema:sharedContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.",
+ "rdfs:label": "sharedContent",
+ "schema:domainIncludes": {
+ "@id": "schema:SocialMediaPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:PlasticSurgery",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.",
- "rdfs:label": "PlasticSurgery",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
+ "@id": "schema:AmpStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A creative work with a visual storytelling format intended to be viewed online, particularly on mobile devices.",
+ "rdfs:label": "AmpStory",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2646"
}
},
{
- "@id": "schema:alternativeHeadline",
+ "@id": "schema:collection",
"@type": "rdf:Property",
- "rdfs:comment": "A secondary title of the CreativeWork.",
- "rdfs:label": "alternativeHeadline",
+ "rdfs:comment": "A sub property of object. The collection target of the action.",
+ "rdfs:label": "collection",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:UpdateAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Thing"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:targetCollection"
}
},
{
- "@id": "schema:starRating",
+ "@id": "schema:interactionStatistic",
"@type": "rdf:Property",
- "rdfs:comment": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).",
- "rdfs:label": "starRating",
+ "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used.",
+ "rdfs:label": "interactionStatistic",
"schema:domainIncludes": [
{
- "@id": "schema:LodgingBusiness"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Rating"
+ "@id": "schema:InteractionCounter"
},
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2421"
}
},
{
- "@id": "schema:EventSeries",
+ "@id": "schema:CookAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A series of [[Event]]s. Included events can relate with the series using the [[superEvent]] property.\n\nAn EventSeries is a collection of events that share some unifying characteristic. For example, \"The Olympic Games\" is a series, which\nis repeated regularly. The \"2012 London Olympics\" can be presented both as an [[Event]] in the series \"Olympic Games\", and as an\n[[EventSeries]] that included a number of sporting competitions as Events.\n\nThe nature of the association between the events in an [[EventSeries]] can vary, but typical examples could\ninclude a thematic event series (e.g. topical meetups or classes), or a series of regular events that share a location, attendee group and/or organizers.\n\nEventSeries has been defined as a kind of Event to make it easy for publishers to use it in an Event context without\nworrying about which kinds of series are really event-like enough to call an Event. In general an EventSeries\nmay seem more Event-like when the period of time is compact and when aspects such as location are fixed, but\nit may also sometimes prove useful to describe a longer-term series as an Event.\n ",
- "rdfs:label": "EventSeries",
- "rdfs:subClassOf": [
- {
- "@id": "schema:Series"
- },
- {
- "@id": "schema:Event"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/447"
+ "rdfs:comment": "The act of producing/preparing food.",
+ "rdfs:label": "CookAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
}
},
{
- "@id": "schema:Thursday",
- "@type": "schema:DayOfWeek",
- "rdfs:comment": "The day of the week between Wednesday and Friday.",
- "rdfs:label": "Thursday",
- "schema:sameAs": {
- "@id": "http://www.wikidata.org/entity/Q129"
+ "@id": "schema:isPartOfBioChemEntity",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "Indicates a BioChemEntity that is (in some sense) a part of this BioChemEntity. ",
+ "rdfs:label": "isPartOfBioChemEntity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:hasBioChemEntityPart"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BioChemEntity"
}
},
{
- "@id": "schema:LegalForceStatus",
+ "@id": "schema:MedicalWebPage",
"@type": "rdfs:Class",
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#InForce"
- },
- "rdfs:comment": "A list of possible statuses for the legal force of a legislation.",
- "rdfs:label": "LegalForceStatus",
+ "rdfs:comment": "A web page that provides medical information.",
+ "rdfs:label": "MedicalWebPage",
"rdfs:subClassOf": {
- "@id": "schema:StatusEnumeration"
+ "@id": "schema:WebPage"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- }
- ]
+ "@id": "https://health-lifesci.schema.org"
+ }
},
{
- "@id": "schema:proficiencyLevel",
+ "@id": "schema:greaterOrEqual",
"@type": "rdf:Property",
- "rdfs:comment": "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.",
- "rdfs:label": "proficiencyLevel",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.",
+ "rdfs:label": "greaterOrEqual",
"schema:domainIncludes": {
- "@id": "schema:TechArticle"
+ "@id": "schema:QualitativeValue"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:MedicalRiskFactor",
- "@type": "rdfs:Class",
- "rdfs:comment": "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.",
- "rdfs:label": "MedicalRiskFactor",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
- },
+ "@id": "schema:Throat",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Throat assessment with clinical examination.",
+ "rdfs:label": "Throat",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Flight",
- "@type": "rdfs:Class",
- "rdfs:comment": "An airline flight.",
- "rdfs:label": "Flight",
- "rdfs:subClassOf": {
- "@id": "schema:Trip"
+ "@id": "schema:Urologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.",
+ "rdfs:label": "Urologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:bankAccountType",
+ "@id": "schema:events",
"@type": "rdf:Property",
- "rdfs:comment": "The type of a bank account.",
- "rdfs:label": "bankAccountType",
- "schema:domainIncludes": {
- "@id": "schema:BankAccount"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "Upcoming or past events associated with this place or organization.",
+ "rdfs:label": "events",
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Place"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Organization"
}
],
- "schema:source": [
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:event"
+ }
+ },
+ {
+ "@id": "schema:StadiumOrArena",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A stadium.",
+ "rdfs:label": "StadiumOrArena",
+ "rdfs:subClassOf": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "schema:SportsActivityLocation"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:CivicStructure"
}
]
},
{
- "@id": "schema:totalJobOpenings",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known.",
- "rdfs:label": "totalJobOpenings",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
- },
+ "@id": "schema:FDAnotEvaluated",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.",
+ "rdfs:label": "FDAnotEvaluated",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2329"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:applicationDeadline",
- "@type": "rdf:Property",
- "rdfs:comment": "The date at which the program stops collecting applications for the next enrollment cycle.",
- "rdfs:label": "applicationDeadline",
- "schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
- },
+ "@id": "schema:Cardiovascular",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.",
+ "rdfs:label": "Cardiovascular",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:UserComments",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserComments",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
}
},
{
- "@id": "schema:seller",
+ "@id": "schema:numberOfDoors",
"@type": "rdf:Property",
- "rdfs:comment": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider.",
- "rdfs:label": "seller",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
+ "rdfs:comment": "The number of doors.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfDoors",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:Order"
- },
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:BuyAction"
- },
- {
- "@id": "schema:Flight"
- },
- {
- "@id": "schema:Offer"
- }
- ],
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Number"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:QuantitativeValue"
}
- ]
- },
- {
- "@id": "schema:ContactPointOption",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerated options related to a ContactPoint.",
- "rdfs:label": "ContactPointOption",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:executableLibraryName",
+ "@id": "schema:lastReviewed",
"@type": "rdf:Property",
- "rdfs:comment": "Library file name e.g., mscorlib.dll, system.web.dll.",
- "rdfs:label": "executableLibraryName",
+ "rdfs:comment": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.",
+ "rdfs:label": "lastReviewed",
"schema:domainIncludes": {
- "@id": "schema:APIReference"
+ "@id": "schema:WebPage"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:Movie",
- "@type": "rdfs:Class",
- "rdfs:comment": "A movie.",
- "rdfs:label": "Movie",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:upvoteCount",
+ "@id": "schema:foodEvent",
"@type": "rdf:Property",
- "rdfs:comment": "The number of upvotes this question, answer or comment has received from the community.",
- "rdfs:label": "upvoteCount",
+ "rdfs:comment": "A sub property of location. The specific food event where the action occurred.",
+ "rdfs:label": "foodEvent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
"schema:domainIncludes": {
- "@id": "schema:Comment"
+ "@id": "schema:CookAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:FoodEvent"
}
},
{
- "@id": "schema:department",
- "@type": "rdf:Property",
- "rdfs:comment": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.",
- "rdfs:label": "department",
- "schema:domainIncludes": {
- "@id": "schema:Organization"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:Lung",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Lung and respiratory system clinical examination.",
+ "rdfs:label": "Lung",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:occupationLocation",
+ "@id": "schema:workExample",
"@type": "rdf:Property",
- "rdfs:comment": " The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions.",
- "rdfs:label": "occupationLocation",
+ "rdfs:comment": "Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book.",
+ "rdfs:label": "workExample",
"schema:domainIncludes": {
- "@id": "schema:Occupation"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:exampleOfWork"
},
"schema:rangeIncludes": {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:CreativeWork"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:Newspaper",
- "@type": "rdfs:Class",
- "rdfs:comment": "A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter (i.e. business, culture, education). Often published daily.",
- "rdfs:label": "Newspaper",
- "rdfs:subClassOf": {
- "@id": "schema:Periodical"
+ "@id": "schema:workPerformed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A work performed in some event, for example a play performed in a TheaterEvent.",
+ "rdfs:label": "workPerformed",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workFeatured"
},
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
},
- "schema:source": {
- "@id": "http://www.productontology.org/id/Newspaper"
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:Obstetric",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.",
- "rdfs:label": "Obstetric",
+ "@id": "schema:ReserveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.",
+ "rdfs:label": "ReserveAction",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:PlanAction"
}
},
{
- "@id": "schema:FoodEvent",
+ "@id": "schema:OrderInTransit",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order is in transit.",
+ "rdfs:label": "OrderInTransit"
+ },
+ {
+ "@id": "schema:BusinessEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "Event type: Food event.",
- "rdfs:label": "FoodEvent",
+ "rdfs:comment": "Event type: Business event.",
+ "rdfs:label": "BusinessEvent",
"rdfs:subClassOf": {
"@id": "schema:Event"
}
},
{
- "@id": "schema:MovieRentalStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A movie rental store.",
- "rdfs:label": "MovieRentalStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:identifyingExam",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A physical examination that can identify this sign.",
+ "rdfs:label": "identifyingExam",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalSign"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PhysicalExam"
}
},
{
- "@id": "schema:BankAccount",
+ "@id": "schema:Residence",
"@type": "rdfs:Class",
- "rdfs:comment": "A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.",
- "rdfs:label": "BankAccount",
+ "rdfs:comment": "The place where a person lives.",
+ "rdfs:label": "Residence",
"rdfs:subClassOf": {
- "@id": "schema:FinancialProduct"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:WearableSizeGroupExtraTall",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Extra Tall\" for wearables.",
- "rdfs:label": "WearableSizeGroupExtraTall",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:includedInDataCatalog",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A data catalog which contains this dataset.",
+ "rdfs:label": "includedInDataCatalog",
+ "schema:domainIncludes": {
+ "@id": "schema:Dataset"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "schema:inverseOf": {
+ "@id": "schema:dataset"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DataCatalog"
}
},
{
- "@id": "schema:LearningResource",
+ "@id": "schema:BroadcastChannel",
"@type": "rdfs:Class",
- "rdfs:comment": "The LearningResource type can be used to indicate [[CreativeWork]]s (whether physical or digital) that have a particular and explicit orientation towards learning, education, skill acquisition, and other educational purposes.\n\n[[LearningResource]] is expected to be used as an addition to a primary type such as [[Book]], [[VideoObject]], [[Product]] etc.\n\n[[EducationEvent]] serves a similar purpose for event-like things (e.g. a [[Trip]]). A [[LearningResource]] may be created as a result of an [[EducationEvent]], for example by recording one.",
- "rdfs:label": "LearningResource",
+ "rdfs:comment": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.",
+ "rdfs:label": "BroadcastChannel",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1401"
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:BodyMeasurementHeight",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Body height (measured between crown of head and soles of feet). Used, for example, to fit jackets.",
- "rdfs:label": "BodyMeasurementHeight",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:MusicComposition",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A musical composition.",
+ "rdfs:label": "MusicComposition",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:LeaveAction",
+ "@id": "schema:WinAction",
"@type": "rdfs:Class",
- "rdfs:comment": "An agent leaves an event / group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: The antonym of LeaveAction.\\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.",
- "rdfs:label": "LeaveAction",
+ "rdfs:comment": "The act of achieving victory in a competitive activity.",
+ "rdfs:label": "WinAction",
"rdfs:subClassOf": {
- "@id": "schema:InteractAction"
+ "@id": "schema:AchieveAction"
}
},
{
- "@id": "schema:intensity",
+ "@id": "schema:currentExchangeRate",
"@type": "rdf:Property",
- "rdfs:comment": "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.",
- "rdfs:label": "intensity",
+ "rdfs:comment": "The current price of a currency.",
+ "rdfs:label": "currentExchangeRate",
"schema:domainIncludes": {
- "@id": "schema:ExercisePlan"
+ "@id": "schema:ExchangeRateSpecification"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:source": [
{
- "@id": "schema:Text"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
]
},
{
- "@id": "schema:MusicComposition",
- "@type": "rdfs:Class",
- "rdfs:comment": "A musical composition.",
- "rdfs:label": "MusicComposition",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:dependencies",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Prerequisites needed to fulfill steps in article.",
+ "rdfs:label": "dependencies",
+ "schema:domainIncludes": {
+ "@id": "schema:TechArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:SalePrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents a sale price (usually active for a limited period) of an offered product.",
+ "rdfs:label": "SalePrice",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
}
},
{
- "@id": "schema:actionOption",
+ "@id": "schema:duration",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. The options subject to this action.",
- "rdfs:label": "actionOption",
- "rdfs:subPropertyOf": {
- "@id": "schema:object"
- },
- "schema:domainIncludes": {
- "@id": "schema:ChooseAction"
+ "rdfs:comment": "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "duration",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:Audiobook"
+ },
+ {
+ "@id": "schema:MusicRecording"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:MusicRelease"
+ },
+ {
+ "@id": "schema:QuantitativeValueDistribution"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Duration"
},
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:Text"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
},
{
- "@id": "schema:Thing"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
]
},
{
- "@id": "schema:strengthValue",
+ "@id": "schema:relevantOccupation",
"@type": "rdf:Property",
- "rdfs:comment": "The value of an active ingredient's strength, e.g. 325.",
- "rdfs:label": "strengthValue",
+ "rdfs:comment": "The Occupation for the JobPosting.",
+ "rdfs:label": "relevantOccupation",
"schema:domainIncludes": {
- "@id": "schema:DrugStrength"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:JobPosting"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:Occupation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:CompletedActionStatus",
- "@type": "schema:ActionStatusType",
- "rdfs:comment": "An action that has already taken place.",
- "rdfs:label": "CompletedActionStatus"
- },
- {
- "@id": "schema:givenName",
+ "@id": "schema:jobLocation",
"@type": "rdf:Property",
- "rdfs:comment": "Given name. In the U.S., the first name of a Person.",
- "rdfs:label": "givenName",
+ "rdfs:comment": "A (typically single) geographic location associated with the job position.",
+ "rdfs:label": "jobLocation",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:JobPosting"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:softwareVersion",
+ "@id": "schema:volumeNumber",
"@type": "rdf:Property",
- "rdfs:comment": "Version of the software instance.",
- "rdfs:label": "softwareVersion",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/volume"
+ },
+ "rdfs:comment": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".",
+ "rdfs:label": "volumeNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:PublicationVolume"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:vehicleInteriorType",
+ "@id": "schema:HowToTip",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).",
+ "rdfs:label": "HowToTip",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ListItem"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:torque",
"@type": "rdf:Property",
- "rdfs:comment": "The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.",
- "rdfs:label": "vehicleInteriorType",
+ "rdfs:comment": "The torque (turning force) of the vehicle's engine.\\n\\nTypical unit code(s): NU for newton metre (N m), F17 for pound-force per foot, or F48 for pound-force per inch\\n\\n* Note 1: You can link to information about how the given value has been determined (e.g. reference RPM) using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "torque",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:permissions",
+ "@id": "schema:publishedOn",
"@type": "rdf:Property",
- "rdfs:comment": "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).",
- "rdfs:label": "permissions",
+ "rdfs:comment": "A broadcast service associated with the publication event.",
+ "rdfs:label": "publishedOn",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:PublicationEvent"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:track",
- "@type": "rdf:Property",
- "rdfs:comment": "A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.",
- "rdfs:label": "track",
- "schema:domainIncludes": [
- {
- "@id": "schema:MusicGroup"
- },
- {
- "@id": "schema:MusicPlaylist"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:MusicRecording"
- },
- {
- "@id": "schema:ItemList"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:BroadcastService"
}
},
{
- "@id": "schema:nerveMotor",
- "@type": "rdf:Property",
- "rdfs:comment": "The neurological pathway extension that involves muscle control.",
- "rdfs:label": "nerveMotor",
- "schema:domainIncludes": {
- "@id": "schema:Nerve"
- },
+ "@id": "schema:Longitudinal",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.",
+ "rdfs:label": "Longitudinal",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Muscle"
}
},
{
- "@id": "schema:DiagnosticLab",
+ "@id": "schema:Hackathon",
"@type": "rdfs:Class",
- "rdfs:comment": "A medical laboratory that offers on-site or off-site diagnostic services.",
- "rdfs:label": "DiagnosticLab",
+ "rdfs:comment": "A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event.",
+ "rdfs:label": "Hackathon",
"rdfs:subClassOf": {
- "@id": "schema:MedicalOrganization"
+ "@id": "schema:Event"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:UpdateAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of managing by changing/editing the state of the object.",
- "rdfs:label": "UpdateAction",
- "rdfs:subClassOf": {
- "@id": "schema:Action"
- }
- },
- {
- "@id": "schema:FAQPage",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).",
- "rdfs:label": "FAQPage",
- "rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1723"
- }
- },
- {
- "@id": "schema:SaleEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: Sales event.",
- "rdfs:label": "SaleEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2526"
}
},
{
- "@id": "schema:MedicalDevicePurpose",
- "@type": "rdfs:Class",
- "rdfs:comment": "Categories of medical devices, organized by the purpose or intended use of the device.",
- "rdfs:label": "MedicalDevicePurpose",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:algorithm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The algorithm or rules to follow to compute the score.",
+ "rdfs:label": "algorithm",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskScore"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:serviceType",
+ "@id": "schema:legislationLegalValue",
"@type": "rdf:Property",
- "rdfs:comment": "The type of service being offered, e.g. veterans' benefits, emergency relief, etc.",
- "rdfs:label": "serviceType",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#legal_value"
+ },
+ "rdfs:comment": "The legal value of this legislation file. The same legislation can be written in multiple files with different legal values. Typically a digitally signed PDF have a \"stronger\" legal value than the HTML file of the same act.",
+ "rdfs:label": "legislationLegalValue",
"schema:domainIncludes": {
- "@id": "schema:Service"
+ "@id": "schema:LegislationObject"
},
- "schema:rangeIncludes": [
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:LegalValueLevel"
+ },
+ "schema:source": [
{
- "@id": "schema:Text"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:GovernmentBenefitsType"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
- ]
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#legal_value"
+ }
},
{
- "@id": "schema:area",
+ "@id": "schema:associatedClaimReview",
"@type": "rdf:Property",
- "rdfs:comment": "The area within which users can expect to reach the broadcast service.",
- "rdfs:label": "area",
+ "rdfs:comment": "An associated [[ClaimReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]].",
+ "rdfs:label": "associatedClaimReview",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:associatedReview"
+ },
"schema:domainIncludes": {
- "@id": "schema:BroadcastService"
+ "@id": "schema:Review"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Review"
},
- "schema:supersededBy": {
- "@id": "schema:serviceArea"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:sdLicense",
+ "@id": "schema:StatisticalPopulation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A StatisticalPopulation is a set of instances of a certain given type that satisfy some set of constraints. The property [[populationType]] is used to specify the type. Any property that can be used on instances of that type can appear on the statistical population. For example, a [[StatisticalPopulation]] representing all [[Person]]s with a [[homeLocation]] of East Podunk California would be described by applying the appropriate [[homeLocation]] and [[populationType]] properties to a [[StatisticalPopulation]] item that stands for that set of people.\nThe properties [[numConstraints]] and [[constrainingProperty]] are used to specify which of the populations properties are used to specify the population. Note that the sense of \"population\" used here is the general sense of a statistical\npopulation, and does not imply that the population consists of people. For example, a [[populationType]] of [[Event]] or [[NewsArticle]] could be used. See also [[Observation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ",
+ "rdfs:label": "StatisticalPopulation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ }
+ },
+ {
+ "@id": "schema:answerExplanation",
"@type": "rdf:Property",
- "rdfs:comment": "A license document that applies to this structured data, typically indicated by URL.",
- "rdfs:label": "sdLicense",
+ "rdfs:comment": "A step-by-step or full explanation about Answer. Can outline how this Answer was achieved or contain more broad clarification or statement about it. ",
+ "rdfs:label": "answerExplanation",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Answer"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Comment"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:WebContent"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2636"
}
},
{
- "@id": "schema:Joint",
+ "@id": "schema:WriteAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The anatomical location at which two or more bones make contact.",
- "rdfs:label": "Joint",
+ "rdfs:comment": "The act of authoring written creative content.",
+ "rdfs:label": "WriteAction",
"rdfs:subClassOf": {
- "@id": "schema:AnatomicalStructure"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:CreateAction"
}
},
{
- "@id": "schema:fileSize",
- "@type": "rdf:Property",
- "rdfs:comment": "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.",
- "rdfs:label": "fileSize",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "@id": "schema:HowToSection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).",
+ "rdfs:label": "HowToSection",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:ListItem"
+ }
+ ]
},
{
- "@id": "schema:deliveryAddress",
- "@type": "rdf:Property",
- "rdfs:comment": "Destination address.",
- "rdfs:label": "deliveryAddress",
- "schema:domainIncludes": {
- "@id": "schema:ParcelDelivery"
+ "@id": "schema:MusicReleaseFormatType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Format of this release (the type of recording media used, i.e. compact disc, digital media, LP, etc.).",
+ "rdfs:label": "MusicReleaseFormatType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
- "schema:rangeIncludes": {
- "@id": "schema:PostalAddress"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:GardenStore",
+ "@id": "schema:FinancialService",
"@type": "rdfs:Class",
- "rdfs:comment": "A garden store.",
- "rdfs:label": "GardenStore",
+ "rdfs:comment": "Financial services business.",
+ "rdfs:label": "FinancialService",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:PronounceableText",
+ "@id": "schema:HVACBusiness",
"@type": "rdfs:Class",
- "rdfs:comment": "Data type: PronounceableText.",
- "rdfs:label": "PronounceableText",
+ "rdfs:comment": "A business that provides Heating, Ventilation and Air Conditioning services.",
+ "rdfs:label": "HVACBusiness",
"rdfs:subClassOf": {
- "@id": "schema:Text"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ "@id": "schema:HomeAndConstructionBusiness"
}
},
{
- "@id": "schema:loanPaymentFrequency",
- "@type": "rdf:Property",
- "rdfs:comment": "Frequency of payments due, i.e. number of months between payments. This is defined as a frequency, i.e. the reciprocal of a period of time.",
- "rdfs:label": "loanPaymentFrequency",
- "schema:domainIncludes": {
- "@id": "schema:RepaymentSpecification"
+ "@id": "schema:RepaymentSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing repayment.",
+ "rdfs:label": "RepaymentSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
"schema:source": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
]
},
{
- "@id": "schema:PetStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A pet store.",
- "rdfs:label": "PetStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
- }
- },
- {
- "@id": "schema:unsaturatedFatContent",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of grams of unsaturated fat.",
- "rdfs:label": "unsaturatedFatContent",
- "schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
+ "@id": "schema:RelatedTopicsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Other prominent or relevant topics tied to the main topic.",
+ "rdfs:label": "RelatedTopicsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:educationalCredentialAwarded",
+ "@id": "schema:seeks",
"@type": "rdf:Property",
- "rdfs:comment": "A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.",
- "rdfs:label": "educationalCredentialAwarded",
+ "rdfs:comment": "A pointer to products or services sought by the organization or person (demand).",
+ "rdfs:label": "seeks",
"schema:domainIncludes": [
{
- "@id": "schema:Course"
- },
- {
- "@id": "schema:EducationalOccupationalProgram"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:EducationalOccupationalCredential"
- },
- {
- "@id": "schema:URL"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
],
+ "schema:rangeIncludes": {
+ "@id": "schema:Demand"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:hasDigitalDocumentPermission",
+ "@id": "schema:UserPlusOnes",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPlusOnes",
+ "rdfs:subClassOf": {
+ "@id": "schema:UserInteraction"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
+ }
+ },
+ {
+ "@id": "schema:employees",
"@type": "rdf:Property",
- "rdfs:comment": "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".",
- "rdfs:label": "hasDigitalDocumentPermission",
+ "rdfs:comment": "People working for this organization.",
+ "rdfs:label": "employees",
"schema:domainIncludes": {
- "@id": "schema:DigitalDocument"
+ "@id": "schema:Organization"
},
"schema:rangeIncludes": {
- "@id": "schema:DigitalDocumentPermission"
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:employee"
}
},
{
- "@id": "schema:BeautySalon",
- "@type": "rdfs:Class",
- "rdfs:comment": "Beauty salon.",
- "rdfs:label": "BeautySalon",
+ "@id": "schema:Gynecologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.",
+ "rdfs:label": "Gynecologic",
"rdfs:subClassOf": {
- "@id": "schema:HealthAndBeautyBusiness"
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:SeeDoctorHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Information about questions that may be asked, when to see a professional, measures before seeing a doctor or content about the first consultation.",
- "rdfs:label": "SeeDoctorHealthAspect",
+ "@id": "schema:diagnosis",
+ "@type": "rdf:Property",
+ "rdfs:comment": "One or more alternative conditions considered in the differential diagnosis process as output of a diagnosis process.",
+ "rdfs:label": "diagnosis",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DDxElement"
+ },
+ {
+ "@id": "schema:Patient"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
}
},
{
- "@id": "schema:height",
+ "@id": "schema:mobileUrl",
"@type": "rdf:Property",
- "rdfs:comment": "The height of the item.",
- "rdfs:label": "height",
+ "rdfs:comment": "The [[mobileUrl]] property is provided for specific situations in which data consumers need to determine whether one of several provided URLs is a dedicated 'mobile site'.\n\nTo discourage over-use, and reflecting intial usecases, the property is expected only on [[Product]] and [[Offer]], rather than [[Thing]]. The general trend in web technology is towards [responsive design](https://en.wikipedia.org/wiki/Responsive_web_design) in which content can be flexibly adapted to a wide range of browsing environments. Pages and sites referenced with the long-established [[url]] property should ideally also be usable on a wide variety of devices, including mobile phones. In most cases, it would be pointless and counter productive to attempt to update all [[url]] markup to use [[mobileUrl]] for more mobile-oriented pages. The property is intended for the case when items (primarily [[Product]] and [[Offer]]) have extra URLs hosted on an additional \"mobile site\" alongside the main one. It should not be taken as an endorsement of this publication style.\n ",
+ "rdfs:label": "mobileUrl",
"schema:domainIncludes": [
{
"@id": "schema:Product"
},
{
- "@id": "schema:Person"
- },
- {
- "@id": "schema:MediaObject"
- },
- {
- "@id": "schema:VisualArtwork"
+ "@id": "schema:Offer"
}
],
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:Distance"
- }
- ]
- },
- {
- "@id": "schema:legislationTransposes",
- "@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#transposes"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#transposes"
- },
- "rdfs:comment": "Indicates that this legislation (or part of legislation) fulfills the objectives set by another legislation, by passing appropriate implementation measures. Typically, some legislations of European Union's member states or regions transpose European Directives. This indicates a legally binding link between the 2 legislations.",
- "rdfs:label": "legislationTransposes",
- "rdfs:subPropertyOf": {
- "@id": "schema:legislationApplies"
- },
- "schema:domainIncludes": {
- "@id": "schema:Legislation"
- },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:Text"
},
- "schema:source": [
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3134"
+ }
+ },
+ {
+ "@id": "schema:requiredQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The required quantity of the item(s).",
+ "rdfs:label": "requiredQuantity",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToItem"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:Text"
},
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
}
]
},
{
- "@id": "schema:bed",
+ "@id": "schema:about",
"@type": "rdf:Property",
- "rdfs:comment": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.",
- "rdfs:label": "bed",
+ "rdfs:comment": "The subject matter of the content.",
+ "rdfs:label": "about",
"schema:domainIncludes": [
{
- "@id": "schema:HotelRoom"
- },
- {
- "@id": "schema:Suite"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:BedType"
+ "@id": "schema:CommunicateAction"
},
{
- "@id": "schema:BedDetails"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Event"
}
],
+ "schema:inverseOf": {
+ "@id": "schema:subjectOf"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ },
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1670"
}
},
{
- "@id": "schema:NonprofitANBI",
- "@type": "schema:NLNonprofitType",
- "rdfs:comment": "NonprofitANBI: Non-profit type referring to a Public Benefit Organization (NL).",
- "rdfs:label": "NonprofitANBI",
+ "@id": "schema:hasEnergyConsumptionDetails",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Defines the energy efficiency Category (also known as \"class\" or \"rating\") for a product according to an international energy efficiency standard.",
+ "rdfs:label": "hasEnergyConsumptionDetails",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:EnergyConsumptionDetails"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:DrugLegalStatus",
- "@type": "rdfs:Class",
- "rdfs:comment": "The legal availability status of a medical drug.",
- "rdfs:label": "DrugLegalStatus",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalIntangible"
- },
+ "@id": "schema:MerchantReturnNotPermitted",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that product returns are not permitted.",
+ "rdfs:label": "MerchantReturnNotPermitted",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:releaseNotes",
+ "@id": "schema:expressedIn",
"@type": "rdf:Property",
- "rdfs:comment": "Description of what changed in this version.",
- "rdfs:label": "releaseNotes",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "Tissue, organ, biological sample, etc in which activity of this gene has been observed experimentally. For example brain, digestive system.",
+ "rdfs:label": "expressedIn",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:Gene"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:URL"
+ "@id": "schema:BioChemEntity"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
}
]
},
{
- "@id": "schema:prepTime",
+ "@id": "schema:weight",
"@type": "rdf:Property",
- "rdfs:comment": "The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
- "rdfs:label": "prepTime",
+ "rdfs:comment": "The weight of the product or person.",
+ "rdfs:label": "weight",
"schema:domainIncludes": [
{
- "@id": "schema:HowTo"
+ "@id": "schema:Person"
},
{
- "@id": "schema:HowToDirection"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Duration"
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:SearchAction",
+ "@id": "schema:OrderPickupAvailable",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing availability of an order for pickup.",
+ "rdfs:label": "OrderPickupAvailable"
+ },
+ {
+ "@id": "schema:DeliveryEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of searching for an object.\\n\\nRelated actions:\\n\\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.",
- "rdfs:label": "SearchAction",
+ "rdfs:comment": "An event involving the delivery of an item.",
+ "rdfs:label": "DeliveryEvent",
"rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:Nonprofit527",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit527: Non-profit type referring to Political organizations.",
- "rdfs:label": "Nonprofit527",
+ "@id": "schema:LimitedByGuaranteeCharity",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee (UK).",
+ "rdfs:label": "LimitedByGuaranteeCharity",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -19329,749 +19459,859 @@
}
},
{
- "@id": "schema:mediaAuthenticityCategory",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).",
- "rdfs:label": "mediaAuthenticityCategory",
- "schema:domainIncludes": {
- "@id": "schema:MediaReview"
- },
+ "@id": "schema:ComputerLanguage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type.",
+ "rdfs:label": "ComputerLanguage",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementCup",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the cup, for example of a bra",
+ "rdfs:label": "WearableMeasurementCup",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MediaManipulationRatingEnumeration"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:valueName",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.",
- "rdfs:label": "valueName",
- "schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:PeopleAudience",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of characteristics belonging to people, e.g. who compose an item's target audience.",
+ "rdfs:label": "PeopleAudience",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
}
},
{
- "@id": "schema:DefinitiveLegalValue",
- "@type": "schema:LegalValueLevel",
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#LegalValue-definitive"
- },
- "rdfs:comment": "Indicates a document for which the text is conclusively what the law says and is legally binding. (e.g. The digitally signed version of an Official Journal.)\n Something \"Definitive\" is considered to be also [[AuthoritativeLegalValue]].",
- "rdfs:label": "DefinitiveLegalValue",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- }
- ]
- },
- {
- "@id": "schema:SuperficialAnatomy",
+ "@id": "schema:ReportedDoseSchedule",
"@type": "rdfs:Class",
- "rdfs:comment": "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).",
- "rdfs:label": "SuperficialAnatomy",
+ "rdfs:comment": "A patient-reported or observed dosing schedule for a drug or supplement.",
+ "rdfs:label": "ReportedDoseSchedule",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:DoseSchedule"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:suitableForDiet",
+ "@id": "schema:composer",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.",
- "rdfs:label": "suitableForDiet",
+ "rdfs:comment": "The person or organization who wrote a composition, or who is the composer of a work performed at some event.",
+ "rdfs:label": "composer",
"schema:domainIncludes": [
{
- "@id": "schema:Recipe"
+ "@id": "schema:Event"
},
{
- "@id": "schema:MenuItem"
+ "@id": "schema:MusicComposition"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:RestrictedDiet"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:SolveMathAction",
+ "@id": "schema:Motorcycle",
"@type": "rdfs:Class",
- "rdfs:comment": "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.",
- "rdfs:label": "SolveMathAction",
+ "rdfs:comment": "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.",
+ "rdfs:label": "Motorcycle",
"rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:Vehicle"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://auto.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:accountablePerson",
+ "@id": "schema:clinicalPharmacology",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies the Person that is legally accountable for the CreativeWork.",
- "rdfs:label": "accountablePerson",
+ "rdfs:comment": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
+ "rdfs:label": "clinicalPharmacology",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:Bacteria",
- "@type": "schema:InfectiousAgentClass",
- "rdfs:comment": "Pathogenic bacteria that cause bacterial infection.",
- "rdfs:label": "Bacteria",
+ "@id": "schema:Nonprofit501c21",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts.",
+ "rdfs:label": "Nonprofit501c21",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:Hematologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.",
- "rdfs:label": "Hematologic",
+ "@id": "schema:postalCodePrefix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A defined range of postal codes indicated by a common textual prefix. Used for non-numeric systems such as UK.",
+ "rdfs:label": "postalCodePrefix",
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedRegion"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:step",
+ "@id": "schema:FollowAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\\n\\nRelated actions:\\n\\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it).",
+ "rdfs:label": "FollowAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:shippingDetails",
"@type": "rdf:Property",
- "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.",
- "rdfs:label": "step",
+ "rdfs:comment": "Indicates information about the shipping policies and options associated with an [[Offer]].",
+ "rdfs:label": "shippingDetails",
"schema:domainIncludes": {
- "@id": "schema:HowTo"
+ "@id": "schema:Offer"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:HowToStep"
- },
- {
- "@id": "schema:Text"
- },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OfferShippingDetails"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:VideoGame",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.",
+ "rdfs:label": "VideoGame",
+ "rdfs:subClassOf": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:SoftwareApplication"
},
{
- "@id": "schema:HowToSection"
+ "@id": "schema:Game"
}
]
},
{
- "@id": "schema:Taxon",
+ "@id": "schema:OpinionNewsArticle",
"@type": "rdfs:Class",
- "http://purl.org/dc/terms/source": {
- "@id": "http://bioschemas.org"
- },
- "rdfs:comment": "A set of organisms asserted to represent a natural cohesive biological unit.",
- "rdfs:label": "Taxon",
+ "rdfs:comment": "An [[OpinionNewsArticle]] is a [[NewsArticle]] that primarily expresses opinions rather than journalistic reporting of news and events. For example, a [[NewsArticle]] consisting of a column or [[Blog]]/[[BlogPosting]] entry in the Opinions section of a news publication. ",
+ "rdfs:label": "OpinionNewsArticle",
"rdfs:subClassOf": {
- "@id": "schema:Thing"
+ "@id": "schema:NewsArticle"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
- }
- },
- {
- "@id": "schema:salaryCurrency",
- "@type": "rdf:Property",
- "rdfs:comment": "The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) ) used for the main salary information in this job posting or for this employee.",
- "rdfs:label": "salaryCurrency",
- "schema:domainIncludes": [
+ },
+ "schema:source": [
{
- "@id": "schema:EmployeeRole"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
},
{
- "@id": "schema:JobPosting"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ ]
+ },
+ {
+ "@id": "schema:MapCategoryType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An enumeration of several kinds of Map.",
+ "rdfs:label": "MapCategoryType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
}
},
{
- "@id": "schema:SpokenWordAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "SpokenWordAlbum.",
- "rdfs:label": "SpokenWordAlbum",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:NGO",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Organization: Non-governmental Organization.",
+ "rdfs:label": "NGO",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:collection",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. The collection target of the action.",
- "rdfs:label": "collection",
- "rdfs:subPropertyOf": {
- "@id": "schema:object"
+ "@id": "schema:BusStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bus station.",
+ "rdfs:label": "BusStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:Substance",
+ "@type": "rdfs:Class",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/105590001"
+ },
+ "rdfs:comment": "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.",
+ "rdfs:label": "Substance",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
},
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:arrivalStation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The station where the train trip ends.",
+ "rdfs:label": "arrivalStation",
"schema:domainIncludes": {
- "@id": "schema:UpdateAction"
+ "@id": "schema:TrainTrip"
},
"schema:rangeIncludes": {
- "@id": "schema:Thing"
- },
- "schema:supersededBy": {
- "@id": "schema:targetCollection"
+ "@id": "schema:TrainStation"
}
},
{
- "@id": "schema:GettingAccessHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content that discusses practical and policy aspects for getting access to specific kinds of healthcare (e.g. distribution mechanisms for vaccines).",
- "rdfs:label": "GettingAccessHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ "@id": "schema:TrainStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A train station.",
+ "rdfs:label": "TrainStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:itemLocation",
+ "@id": "schema:SportingGoodsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sporting goods store.",
+ "rdfs:label": "SportingGoodsStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:UnRegisterAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of un-registering from a service.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: antonym of UnRegisterAction.\\n* [[LeaveAction]]: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you were previously registered, rather than leaving a team/group of people.",
+ "rdfs:label": "UnRegisterAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:unnamedSourcesPolicy",
"@type": "rdf:Property",
- "rdfs:comment": {
- "@language": "en",
- "@value": "Current location of the item."
- },
- "rdfs:label": {
- "@language": "en",
- "@value": "itemLocation"
- },
+ "rdfs:comment": "For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.",
+ "rdfs:label": "unnamedSourcesPolicy",
"rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
- "schema:domainIncludes": {
- "@id": "schema:ArchiveComponent"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:publishingPrinciples"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:PostalAddress"
- },
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:NewsMediaOrganization"
},
{
- "@id": "schema:Place"
+ "@id": "schema:Organization"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
- }
- },
- {
- "@id": "schema:CreditCard",
- "@type": "rdfs:Class",
- "rdfs:comment": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#AmericanExpress\\n* http://purl.org/goodrelations/v1#DinersClub\\n* http://purl.org/goodrelations/v1#Discover\\n* http://purl.org/goodrelations/v1#JCB\\n* http://purl.org/goodrelations/v1#MasterCard\\n* http://purl.org/goodrelations/v1#VISA\n ",
- "rdfs:label": "CreditCard",
- "rdfs:subClassOf": [
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:LoanOrCredit"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:PaymentCard"
+ "@id": "schema:URL"
}
],
"schema:source": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
]
},
{
- "@id": "schema:responsibilities",
+ "@id": "schema:educationRequirements",
"@type": "rdf:Property",
- "rdfs:comment": "Responsibilities associated with this role or Occupation.",
- "rdfs:label": "responsibilities",
+ "rdfs:comment": "Educational background needed for the position or Occupation.",
+ "rdfs:label": "educationRequirements",
"schema:domainIncludes": [
{
- "@id": "schema:Occupation"
+ "@id": "schema:JobPosting"
},
{
- "@id": "schema:JobPosting"
+ "@id": "schema:Occupation"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- }
- },
- {
- "@id": "schema:BuddhistTemple",
- "@type": "rdfs:Class",
- "rdfs:comment": "A Buddhist temple.",
- "rdfs:label": "BuddhistTemple",
- "rdfs:subClassOf": {
- "@id": "schema:PlaceOfWorship"
- }
- },
- {
- "@id": "schema:endTime",
- "@type": "rdf:Property",
- "rdfs:comment": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
- "rdfs:label": "endTime",
- "schema:domainIncludes": [
- {
- "@id": "schema:Action"
- },
- {
- "@id": "schema:InteractionCounter"
- },
- {
- "@id": "schema:FoodEstablishmentReservation"
- },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Schedule"
+ "@id": "schema:EducationalOccupationalCredential"
},
{
- "@id": "schema:MediaObject"
+ "@id": "schema:Text"
}
],
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:DateTime"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
},
{
- "@id": "schema:Time"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2493"
+ ]
+ },
+ {
+ "@id": "schema:DoubleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.",
+ "rdfs:label": "DoubleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:WearableMeasurementHeight",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the height, for example the heel height of a shoe",
- "rdfs:label": "WearableMeasurementHeight",
+ "@id": "schema:salaryUponCompletion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The expected salary upon completing the training.",
+ "rdfs:label": "salaryUponCompletion",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmountDistribution"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
},
{
- "@id": "schema:DefinedTerm",
+ "@id": "schema:ToyStore",
"@type": "rdfs:Class",
- "rdfs:comment": "A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.",
- "rdfs:label": "DefinedTerm",
+ "rdfs:comment": "A toy store.",
+ "rdfs:label": "ToyStore",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:UnemploymentSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "UnemploymentSupport: this is a benefit for unemployment support.",
+ "rdfs:label": "UnemploymentSupport",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
}
},
{
- "@id": "schema:musicalKey",
- "@type": "rdf:Property",
- "rdfs:comment": "The key, mode, or scale this composition uses.",
- "rdfs:label": "musicalKey",
- "schema:domainIncludes": {
- "@id": "schema:MusicComposition"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MedicalSign",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.",
+ "rdfs:label": "MedicalSign",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalSignOrSymptom"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:EducationalOrganization",
+ "@id": "schema:MovieSeries",
"@type": "rdfs:Class",
- "rdfs:comment": "An educational organization.",
- "rdfs:label": "EducationalOrganization",
- "rdfs:subClassOf": [
- {
- "@id": "schema:CivicStructure"
- },
- {
- "@id": "schema:Organization"
- }
- ]
+ "rdfs:comment": "A series of movies. Included movies can be indicated with the hasPart property.",
+ "rdfs:label": "MovieSeries",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeries"
+ }
},
{
- "@id": "schema:volumeNumber",
+ "@id": "schema:claimInterpreter",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/ontology/bibo/volume"
- },
- "rdfs:comment": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".",
- "rdfs:label": "volumeNumber",
- "rdfs:subPropertyOf": {
- "@id": "schema:position"
- },
+ "rdfs:comment": "For a [[Claim]] interpreted from [[MediaObject]] content\n sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].",
+ "rdfs:label": "claimInterpreter",
"schema:domainIncludes": {
- "@id": "schema:PublicationVolume"
+ "@id": "schema:Claim"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Integer"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:DamagedCondition",
- "@type": "schema:OfferItemCondition",
- "rdfs:comment": "Indicates that the item is damaged.",
- "rdfs:label": "DamagedCondition"
- },
- {
- "@id": "schema:arrivalTime",
+ "@id": "schema:vehicleInteriorColor",
"@type": "rdf:Property",
- "rdfs:comment": "The expected arrival time.",
- "rdfs:label": "arrivalTime",
+ "rdfs:comment": "The color or color combination of the interior of the vehicle.",
+ "rdfs:label": "vehicleInteriorColor",
"schema:domainIncludes": {
- "@id": "schema:Trip"
+ "@id": "schema:Vehicle"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Time"
- },
- {
- "@id": "schema:DateTime"
- }
- ]
- },
- {
- "@id": "schema:PerformingGroup",
- "@type": "rdfs:Class",
- "rdfs:comment": "A performance group, such as a band, an orchestra, or a circus.",
- "rdfs:label": "PerformingGroup",
- "rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:Game",
- "@type": "rdfs:Class",
- "rdfs:comment": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.",
- "rdfs:label": "Game",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:affectedBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Drugs that affect the test's results.",
+ "rdfs:label": "affectedBy",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
}
},
{
- "@id": "schema:dateSent",
+ "@id": "schema:realEstateAgent",
"@type": "rdf:Property",
- "rdfs:comment": "The date/time at which the message was sent.",
- "rdfs:label": "dateSent",
+ "rdfs:comment": "A sub property of participant. The real estate agent involved in the action.",
+ "rdfs:label": "realEstateAgent",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
"schema:domainIncludes": {
- "@id": "schema:Message"
+ "@id": "schema:RentAction"
},
"schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "@id": "schema:RealEstateAgent"
}
},
{
- "@id": "schema:AssessAction",
+ "@id": "schema:Car",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of forming one's opinion, reaction or sentiment.",
- "rdfs:label": "AssessAction",
+ "rdfs:comment": "A car is a wheeled, self-powered motor vehicle used for transportation.",
+ "rdfs:label": "Car",
"rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:Vehicle"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:saturatedFatContent",
+ "@id": "schema:subOrganization",
"@type": "rdf:Property",
- "rdfs:comment": "The number of grams of saturated fat.",
- "rdfs:label": "saturatedFatContent",
+ "rdfs:comment": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.",
+ "rdfs:label": "subOrganization",
"schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
+ "@id": "schema:Organization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:parentOrganization"
},
"schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:schoolClosuresInfo",
+ "@id": "schema:SoldOut",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has sold out.",
+ "rdfs:label": "SoldOut"
+ },
+ {
+ "@id": "schema:issueNumber",
"@type": "rdf:Property",
- "rdfs:comment": "Information about school closures.",
- "rdfs:label": "schoolClosuresInfo",
- "schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/issue"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "rdfs:comment": "Identifies the issue of publication; for example, \"iii\" or \"2\".",
+ "rdfs:label": "issueNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:PublicationIssue"
},
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Integer"
},
{
- "@id": "schema:WebContent"
+ "@id": "schema:Text"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:algorithm",
+ "@id": "schema:encodings",
"@type": "rdf:Property",
- "rdfs:comment": "The algorithm or rules to follow to compute the score.",
- "rdfs:label": "algorithm",
+ "rdfs:comment": "A media object that encodes this CreativeWork.",
+ "rdfs:label": "encodings",
"schema:domainIncludes": {
- "@id": "schema:MedicalRiskScore"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MediaObject"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:encoding"
}
},
{
- "@id": "schema:PaymentStatusType",
- "@type": "rdfs:Class",
- "rdfs:comment": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.",
- "rdfs:label": "PaymentStatusType",
- "rdfs:subClassOf": {
- "@id": "schema:StatusEnumeration"
- }
+ "@id": "schema:recipient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The participant who is at the receiving end of the action.",
+ "rdfs:label": "recipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TipAction"
+ },
+ {
+ "@id": "schema:CommunicateAction"
+ },
+ {
+ "@id": "schema:PayAction"
+ },
+ {
+ "@id": "schema:DonateAction"
+ },
+ {
+ "@id": "schema:ReturnAction"
+ },
+ {
+ "@id": "schema:GiveAction"
+ },
+ {
+ "@id": "schema:Message"
+ },
+ {
+ "@id": "schema:SendAction"
+ },
+ {
+ "@id": "schema:AuthorizeAction"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ]
},
{
- "@id": "schema:DiagnosticProcedure",
- "@type": "rdfs:Class",
- "rdfs:comment": "A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.",
- "rdfs:label": "DiagnosticProcedure",
+ "@id": "schema:Physiotherapy",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The practice of treatment of disease, injury, or deformity by physical methods such as massage, heat treatment, and exercise rather than by drugs or surgery.",
+ "rdfs:label": "Physiotherapy",
"rdfs:subClassOf": {
- "@id": "schema:MedicalProcedure"
+ "@id": "schema:MedicalBusiness"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:ReturnFeesEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerates several kinds of policies for product return fees.",
- "rdfs:label": "ReturnFeesEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:musicCompositionForm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of composition (e.g. overture, sonata, symphony, etc.).",
+ "rdfs:label": "musicCompositionForm",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:Car",
+ "@id": "schema:Pond",
"@type": "rdfs:Class",
- "rdfs:comment": "A car is a wheeled, self-powered motor vehicle used for transportation.",
- "rdfs:label": "Car",
+ "rdfs:comment": "A pond.",
+ "rdfs:label": "Pond",
"rdfs:subClassOf": {
- "@id": "schema:Vehicle"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:BodyOfWater"
}
},
{
- "@id": "schema:copyrightNotice",
+ "@id": "schema:fileSize",
"@type": "rdf:Property",
- "rdfs:comment": "Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.",
- "rdfs:label": "copyrightNotice",
+ "rdfs:comment": "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.",
+ "rdfs:label": "fileSize",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2659"
}
},
{
- "@id": "schema:branchCode",
+ "@id": "schema:foundingLocation",
"@type": "rdf:Property",
- "rdfs:comment": "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\\n\\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.\n ",
- "rdfs:label": "branchCode",
+ "rdfs:comment": "The place where the Organization was founded.",
+ "rdfs:label": "foundingLocation",
"schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Organization"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:Pathology",
+ "@id": "schema:PropertyValueSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Property value specification.",
+ "rdfs:label": "PropertyValueSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ }
+ },
+ {
+ "@id": "schema:BorrowAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\\n\\nRelated actions:\\n\\n* [[LendAction]]: Reciprocal of BorrowAction.",
+ "rdfs:label": "BorrowAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:HinduDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Hindu dietary practices, in particular, beef-free.",
+ "rdfs:label": "HinduDiet"
+ },
+ {
+ "@id": "schema:Hematologic",
"@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.",
- "rdfs:label": "Pathology",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.",
+ "rdfs:label": "Hematologic",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Nonprofit501c23",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c23: Non-profit type referring to Veterans Organizations.",
- "rdfs:label": "Nonprofit501c23",
+ "@id": "schema:departureBoatTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The terminal or port from which the boat departs.",
+ "rdfs:label": "departureBoatTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:BoatTrip"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:BoatTerminal"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
}
},
{
- "@id": "schema:Sculpture",
- "@type": "rdfs:Class",
- "rdfs:comment": "A piece of sculpture.",
- "rdfs:label": "Sculpture",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:requiresSubscription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates if use of the media require a subscription (either paid or free). Allowed values are ```true``` or ```false``` (note that an earlier version had 'yes', 'no').",
+ "rdfs:label": "requiresSubscription",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:MediaObject"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MediaSubscription"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
}
},
{
- "@id": "schema:season",
+ "@id": "schema:tool",
"@type": "rdf:Property",
- "rdfs:comment": "A season in a media series.",
- "rdfs:label": "season",
+ "rdfs:comment": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
+ "rdfs:label": "tool",
"rdfs:subPropertyOf": {
- "@id": "schema:hasPart"
+ "@id": "schema:instrument"
},
"schema:domainIncludes": [
{
- "@id": "schema:RadioSeries"
- },
- {
- "@id": "schema:TVSeries"
+ "@id": "schema:HowToDirection"
},
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:HowTo"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:HowToTool"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Text"
}
- ],
- "schema:supersededBy": {
- "@id": "schema:containsSeason"
- }
+ ]
},
{
- "@id": "schema:percentile25",
+ "@id": "schema:LowSaltDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced sodium intake.",
+ "rdfs:label": "LowSaltDiet"
+ },
+ {
+ "@id": "schema:numberOfAvailableAccommodationUnits",
"@type": "rdf:Property",
- "rdfs:comment": "The 25th percentile value.",
- "rdfs:label": "percentile25",
- "schema:domainIncludes": {
- "@id": "schema:QuantitativeValueDistribution"
+ "rdfs:comment": "Indicates the number of available accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAccommodationUnits]].",
+ "rdfs:label": "numberOfAvailableAccommodationUnits",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ApartmentComplex"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- }
- },
- {
- "@id": "schema:Balance",
- "@type": "schema:PhysicalActivityCategory",
- "rdfs:comment": "Physical activity that is engaged to help maintain posture and balance.",
- "rdfs:label": "Balance",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:VideoGameClip",
+ "@id": "schema:XPathType",
"@type": "rdfs:Class",
- "rdfs:comment": "A short segment/part of a video game.",
- "rdfs:label": "VideoGameClip",
+ "rdfs:comment": "Text representing an XPath (typically but not necessarily version 1.0).",
+ "rdfs:label": "XPathType",
"rdfs:subClassOf": {
- "@id": "schema:Clip"
+ "@id": "schema:Text"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1672"
}
},
{
- "@id": "schema:DeliveryChargeSpecification",
- "@type": "rdfs:Class",
- "rdfs:comment": "The price for the delivery of an offer using a particular delivery method.",
- "rdfs:label": "DeliveryChargeSpecification",
- "rdfs:subClassOf": {
- "@id": "schema:PriceSpecification"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "schema:SingleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.",
+ "rdfs:label": "SingleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:vatID",
+ "@id": "schema:funder",
"@type": "rdf:Property",
- "rdfs:comment": "The Value-added Tax ID of the organization or person.",
- "rdfs:label": "vatID",
+ "rdfs:comment": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
+ "rdfs:label": "funder",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:sponsor"
+ },
"schema:domainIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:Grant"
+ },
+ {
+ "@id": "schema:MonetaryGrant"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:rangeIncludes": [
{
"@id": "schema:Organization"
},
{
"@id": "schema:Person"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:FoodEstablishmentReservation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A reservation to dine at a food-related business.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
- "rdfs:label": "FoodEstablishmentReservation",
- "rdfs:subClassOf": {
- "@id": "schema:Reservation"
- }
+ ]
},
{
"@id": "schema:RadioChannel",
@@ -20083,453 +20323,238 @@
}
},
{
- "@id": "schema:causeOf",
- "@type": "rdf:Property",
- "rdfs:comment": "The condition, complication, symptom, sign, etc. caused.",
- "rdfs:label": "causeOf",
- "schema:domainIncludes": {
- "@id": "schema:MedicalCause"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalEntity"
- }
- },
- {
- "@id": "schema:ConsumeAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of ingesting information/resources/food.",
- "rdfs:label": "ConsumeAction",
- "rdfs:subClassOf": {
- "@id": "schema:Action"
- }
- },
- {
- "@id": "schema:CompleteDataFeed",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [[CompleteDataFeed]] is a [[DataFeed]] whose standard representation includes content for every item currently in the feed.\n\nThis is the equivalent of Atom's element as defined in Feed Paging and Archiving [RFC 5005](https://tools.ietf.org/html/rfc5005), For example (and as defined for Atom), when using data from a feed that represents a collection of items that varies over time (e.g. \"Top Twenty Records\") there is no need to have newer entries mixed in alongside older, obsolete entries. By marking this feed as a CompleteDataFeed, old entries can be safely discarded when the feed is refreshed, since we can assume the feed has provided descriptions for all current items.",
- "rdfs:label": "CompleteDataFeed",
- "rdfs:subClassOf": {
- "@id": "schema:DataFeed"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1397"
- }
- },
- {
- "@id": "schema:DiscussionForumPosting",
+ "@id": "schema:Thing",
"@type": "rdfs:Class",
- "rdfs:comment": "A posting to a discussion forum.",
- "rdfs:label": "DiscussionForumPosting",
- "rdfs:subClassOf": {
- "@id": "schema:SocialMediaPosting"
- }
- },
- {
- "@id": "schema:PrognosisHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Typical progression and happenings of life course of the topic.",
- "rdfs:label": "PrognosisHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
- }
- },
- {
- "@id": "schema:representativeOfPage",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates whether this image is representative of the content of the page.",
- "rdfs:label": "representativeOfPage",
- "schema:domainIncludes": {
- "@id": "schema:ImageObject"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
- }
- },
- {
- "@id": "schema:ratingExplanation",
- "@type": "rdf:Property",
- "rdfs:comment": "A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with \"fact check\" markup using [[ClaimReview]].",
- "rdfs:label": "ratingExplanation",
- "schema:domainIncludes": {
- "@id": "schema:Rating"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2300"
- }
+ "rdfs:comment": "The most generic type of item.",
+ "rdfs:label": "Thing"
},
{
- "@id": "schema:recourseLoan",
+ "@id": "schema:amount",
"@type": "rdf:Property",
- "rdfs:comment": "The only way you get the money back in the event of default is the security. Recourse is where you still have the opportunity to go back to the borrower for the rest of the money.",
- "rdfs:label": "recourseLoan",
- "schema:domainIncludes": {
- "@id": "schema:LoanOrCredit"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
- "schema:source": [
+ "rdfs:comment": "The amount of money.",
+ "rdfs:label": "amount",
+ "schema:domainIncludes": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:MonetaryGrant"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- }
- ]
- },
- {
- "@id": "schema:doseSchedule",
- "@type": "rdf:Property",
- "rdfs:comment": "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.",
- "rdfs:label": "doseSchedule",
- "schema:domainIncludes": [
- {
- "@id": "schema:Drug"
+ "@id": "schema:InvestmentOrDeposit"
},
{
- "@id": "schema:TherapeuticProcedure"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:DoseSchedule"
- }
- },
- {
- "@id": "schema:MedicalProcedureType",
- "@type": "rdfs:Class",
- "rdfs:comment": "An enumeration that describes different types of medical procedures.",
- "rdfs:label": "MedicalProcedureType",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:totalTime",
- "@type": "rdf:Property",
- "rdfs:comment": "The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
- "rdfs:label": "totalTime",
- "schema:domainIncludes": [
+ "@id": "schema:LoanOrCredit"
+ },
{
- "@id": "schema:HowTo"
+ "@id": "schema:MoneyTransfer"
},
{
- "@id": "schema:HowToDirection"
+ "@id": "schema:DatedMoneySpecification"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Duration"
- }
- },
- {
- "@id": "schema:associatedDisease",
- "@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/BioChemEntity"
- },
- "rdfs:comment": "Disease associated to this BioChemEntity. Such disease can be a MedicalCondition or a URL. If you want to add an evidence supporting the association, please use PropertyValue.",
- "rdfs:label": "associatedDisease",
- "schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:MedicalCondition"
+ "@id": "schema:MonetaryAmount"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Number"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
},
{
- "@id": "schema:PropertyValue"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
}
]
},
{
- "@id": "schema:relevantSpecialty",
- "@type": "rdf:Property",
- "rdfs:comment": "If applicable, a medical specialty in which this entity is relevant.",
- "rdfs:label": "relevantSpecialty",
- "schema:domainIncludes": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalSpecialty"
- }
- },
- {
- "@id": "schema:geoContains",
+ "@id": "schema:geoOverlaps",
"@type": "rdf:Property",
- "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
- "rdfs:label": "geoContains",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoOverlaps",
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:Place"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:Place"
}
]
},
{
- "@id": "schema:recipeYield",
- "@type": "rdf:Property",
- "rdfs:comment": "The quantity produced by the recipe (for example, number of people served, number of servings, etc).",
- "rdfs:label": "recipeYield",
- "rdfs:subPropertyOf": {
- "@id": "schema:yield"
- },
- "schema:domainIncludes": {
- "@id": "schema:Recipe"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "@id": "schema:SingleRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "SingleRelease.",
+ "rdfs:label": "SingleRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
},
{
- "@id": "schema:titleEIDR",
- "@type": "rdf:Property",
- "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" has a titleEIDR of \"10.5240/7EC7-228A-510A-053E-CBB8-J\". This title (or work) may have several variants, which EIDR calls \"edits\". See [[editEIDR]].\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
- "rdfs:label": "titleEIDR",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
- "schema:domainIncludes": [
- {
- "@id": "schema:TVEpisode"
- },
- {
- "@id": "schema:Movie"
- }
- ],
+ "@id": "schema:WearableSizeSystemAU",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Australian size system for wearables.",
+ "rdfs:label": "WearableSizeSystemAU",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2469"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:securityClearanceRequirement",
- "@type": "rdf:Property",
- "rdfs:comment": "A description of any security clearance requirements of the job.",
- "rdfs:label": "securityClearanceRequirement",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
- },
+ "@id": "schema:UKTrust",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "UKTrust: Non-profit type referring to a UK trust.",
+ "rdfs:label": "UKTrust",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
- }
- },
- {
- "@id": "schema:NGO",
- "@type": "rdfs:Class",
- "rdfs:comment": "Organization: Non-governmental Organization.",
- "rdfs:label": "NGO",
- "rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:Distance",
+ "@id": "schema:ImageObject",
"@type": "rdfs:Class",
- "rdfs:comment": "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.",
- "rdfs:label": "Distance",
+ "owl:equivalentClass": {
+ "@id": "dcmitype:Image"
+ },
+ "rdfs:comment": "An image file.",
+ "rdfs:label": "ImageObject",
"rdfs:subClassOf": {
- "@id": "schema:Quantity"
+ "@id": "schema:MediaObject"
}
},
{
- "@id": "schema:LivingWithHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Information about coping or life related to the topic.",
- "rdfs:label": "LivingWithHealthAspect",
+ "@id": "schema:iso6523Code",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. ",
+ "rdfs:label": "iso6523Code",
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2915"
}
},
{
- "@id": "schema:UKNonprofitType",
+ "@id": "schema:BookFormatType",
"@type": "rdfs:Class",
- "rdfs:comment": "UKNonprofitType: Non-profit organization type originating from the United Kingdom.",
- "rdfs:label": "UKNonprofitType",
+ "rdfs:comment": "The publication format of the book.",
+ "rdfs:label": "BookFormatType",
"rdfs:subClassOf": {
- "@id": "schema:NonprofitType"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "schema:Enumeration"
}
},
{
- "@id": "schema:PharmacySpecialty",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "The practice or art and science of preparing and dispensing drugs and medicines.",
- "rdfs:label": "PharmacySpecialty",
+ "@id": "schema:PaidLeave",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "PaidLeave: this is a benefit for paid leave.",
+ "rdfs:label": "PaidLeave",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
}
},
{
- "@id": "schema:diagram",
+ "@id": "schema:prescriptionStatus",
"@type": "rdf:Property",
- "rdfs:comment": "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.",
- "rdfs:label": "diagram",
+ "rdfs:comment": "Indicates the status of drug prescription, e.g. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc.",
+ "rdfs:label": "prescriptionStatus",
"schema:domainIncludes": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:ImageObject"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DrugPrescriptionStatus"
+ }
+ ]
},
{
- "@id": "schema:EUEnergyEfficiencyCategoryA3Plus",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class A+++ as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryA3Plus",
+ "@id": "schema:EditedOrCroppedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'edited or cropped content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'edited or cropped content': The video has been edited or rearranged. This category applies to time edits, including editing multiple videos together to alter the story being told or editing out large portions from a video.\n\nFor an [[ImageObject]] to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[ImageObject]] with embedded text to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[AudioObject]] to be 'edited or cropped content': The audio has been edited or rearranged. This category applies to time edits, including editing multiple audio clips together to alter the story being told or editing out large portions from the recording.\n",
+ "rdfs:label": "EditedOrCroppedContent",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:OrderProblem",
- "@type": "schema:OrderStatus",
- "rdfs:comment": "OrderStatus representing that there is a problem with the order.",
- "rdfs:label": "OrderProblem"
+ "@id": "schema:Nonprofit501c12",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c12: Non-profit type referring to Benevolent Life Insurance Associations, Mutual Ditch or Irrigation Companies, Mutual or Cooperative Telephone Companies.",
+ "rdfs:label": "Nonprofit501c12",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
},
{
- "@id": "schema:codeSampleType",
+ "@id": "schema:accommodationCategory",
"@type": "rdf:Property",
- "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
- "rdfs:label": "codeSampleType",
+ "rdfs:comment": "Category of an [[Accommodation]], following real estate conventions, e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).",
+ "rdfs:label": "accommodationCategory",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:category"
+ },
"schema:domainIncludes": {
- "@id": "schema:SoftwareSourceCode"
+ "@id": "schema:Accommodation"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:Airline",
- "@type": "rdfs:Class",
- "rdfs:comment": "An organization that provides flights for passengers.",
- "rdfs:label": "Airline",
- "rdfs:subClassOf": {
- "@id": "schema:Organization"
- }
- },
- {
- "@id": "schema:OfflineEventAttendanceMode",
- "@type": "schema:EventAttendanceModeEnumeration",
- "rdfs:comment": "OfflineEventAttendanceMode - an event that is primarily conducted offline. ",
- "rdfs:label": "OfflineEventAttendanceMode",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:MedicalConditionStage",
+ "@id": "schema:VitalSign",
"@type": "rdfs:Class",
- "rdfs:comment": "A stage of a medical condition, such as 'Stage IIIa'.",
- "rdfs:label": "MedicalConditionStage",
+ "rdfs:comment": "Vital signs are measures of various physiological functions in order to assess the most basic body functions.",
+ "rdfs:label": "VitalSign",
"rdfs:subClassOf": {
- "@id": "schema:MedicalIntangible"
+ "@id": "schema:MedicalSign"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:LimitedByGuaranteeCharity",
- "@type": "schema:UKNonprofitType",
- "rdfs:comment": "LimitedByGuaranteeCharity: Non-profit type referring to a charitable company that is limited by guarantee (UK).",
- "rdfs:label": "LimitedByGuaranteeCharity",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
- }
- },
- {
- "@id": "schema:maximumEnrollment",
+ "@id": "schema:hasCourse",
"@type": "rdf:Property",
- "rdfs:comment": "The maximum number of students who may be enrolled in the program.",
- "rdfs:label": "maximumEnrollment",
+ "rdfs:comment": "A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program.",
+ "rdfs:label": "hasCourse",
"schema:domainIncludes": {
"@id": "schema:EducationalOccupationalProgram"
},
@@ -20537,796 +20562,854 @@
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:Course"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2483"
}
},
{
- "@id": "schema:RisksOrComplicationsHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Information about the risk factors and possible complications that may follow a topic.",
- "rdfs:label": "RisksOrComplicationsHealthAspect",
+ "@id": "schema:WearableSizeSystemMX",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Mexican size system for wearables.",
+ "rdfs:label": "WearableSizeSystemMX",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:tourBookingPage",
+ "@id": "schema:GardenStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A garden store.",
+ "rdfs:label": "GardenStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:bioChemSimilarity",
"@type": "rdf:Property",
- "rdfs:comment": "A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.",
- "rdfs:label": "tourBookingPage",
- "schema:domainIncludes": [
- {
- "@id": "schema:Accommodation"
- },
- {
- "@id": "schema:ApartmentComplex"
- },
- {
- "@id": "schema:Place"
- }
- ],
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A similar BioChemEntity, e.g., obtained by fingerprint similarity algorithms.",
+ "rdfs:label": "bioChemSimilarity",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:BioChemEntity"
+ }
+ },
+ {
+ "@id": "schema:SearchRescueOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Search and Rescue organization of some kind.",
+ "rdfs:label": "SearchRescueOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3052"
}
},
{
- "@id": "schema:CatholicChurch",
+ "@id": "schema:TherapeuticProcedure",
"@type": "rdfs:Class",
- "rdfs:comment": "A Catholic church.",
- "rdfs:label": "CatholicChurch",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/277132007"
+ },
+ "rdfs:comment": "A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.",
+ "rdfs:label": "TherapeuticProcedure",
"rdfs:subClassOf": {
- "@id": "schema:Church"
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:broadcastDisplayName",
+ "@id": "schema:diversityPolicy",
"@type": "rdf:Property",
- "rdfs:comment": "The name displayed in the channel guide. For many US affiliates, it is the network name.",
- "rdfs:label": "broadcastDisplayName",
- "schema:domainIncludes": {
- "@id": "schema:BroadcastService"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:estimatedFlightDuration",
- "@type": "rdf:Property",
- "rdfs:comment": "The estimated time the flight will take.",
- "rdfs:label": "estimatedFlightDuration",
- "schema:domainIncludes": {
- "@id": "schema:Flight"
+ "rdfs:comment": "Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.",
+ "rdfs:label": "diversityPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Duration"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Text"
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
]
},
{
- "@id": "schema:structuralClass",
- "@type": "rdf:Property",
- "rdfs:comment": "The name given to how bone physically connects to each other.",
- "rdfs:label": "structuralClass",
- "schema:domainIncludes": {
- "@id": "schema:Joint"
+ "@id": "schema:BrainStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.",
+ "rdfs:label": "BrainStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:assemblyVersion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Associated product/technology version. E.g., .NET Framework 4.5.",
+ "rdfs:label": "assemblyVersion",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:GeospatialGeometry",
- "@type": "rdfs:Class",
- "rdfs:comment": "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.",
- "rdfs:label": "GeospatialGeometry",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
+ "@id": "schema:TreatmentsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Treatments or related therapies for a Topic.",
+ "rdfs:label": "TreatmentsHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1375"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:typeOfGood",
+ "@id": "schema:drug",
"@type": "rdf:Property",
- "rdfs:comment": "The product that this structured value is referring to.",
- "rdfs:label": "typeOfGood",
+ "rdfs:comment": "Specifying a drug or medicine used in a medication procedure.",
+ "rdfs:label": "drug",
"schema:domainIncludes": [
{
- "@id": "schema:TypeAndQuantityNode"
+ "@id": "schema:TherapeuticProcedure"
},
{
- "@id": "schema:OwnershipInfo"
- }
- ],
- "schema:rangeIncludes": [
+ "@id": "schema:MedicalCondition"
+ },
{
- "@id": "schema:Service"
+ "@id": "schema:DrugClass"
},
{
- "@id": "schema:Product"
+ "@id": "schema:Patient"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:providesService",
- "@type": "rdf:Property",
- "rdfs:comment": "The service provided by this channel.",
- "rdfs:label": "providesService",
- "schema:domainIncludes": {
- "@id": "schema:ServiceChannel"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Service"
+ "@id": "schema:Drug"
}
},
{
- "@id": "schema:molecularWeight",
- "@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/MolecularEntity"
- },
- "rdfs:comment": "This is the molecular weight of the entity being described, not of the parent. Units should be included in the form '<Number> <unit>', for example '12 amu' or as '<QuantitativeValue>.",
- "rdfs:label": "molecularWeight",
- "schema:domainIncludes": {
- "@id": "schema:MolecularEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:QuantitativeValue"
- }
- ]
+ "@id": "schema:Recipe",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail.",
+ "rdfs:label": "Recipe",
+ "rdfs:subClassOf": {
+ "@id": "schema:HowTo"
+ }
},
{
- "@id": "schema:teaches",
- "@type": "rdf:Property",
- "rdfs:comment": "The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.",
- "rdfs:label": "teaches",
- "schema:domainIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:EducationEvent"
- },
- {
- "@id": "schema:LearningResource"
- }
- ],
+ "@id": "schema:WearableSizeGroupMaternity",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Maternity\" for wearables.",
+ "rdfs:label": "WearableSizeGroupMaternity",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:DefinedTerm"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2427"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:Muscle",
+ "@id": "schema:ReplaceAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.",
- "rdfs:label": "Muscle",
+ "rdfs:comment": "The act of editing a recipient by replacing an old object with a new object.",
+ "rdfs:label": "ReplaceAction",
"rdfs:subClassOf": {
- "@id": "schema:AnatomicalStructure"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:UpdateAction"
}
},
{
- "@id": "schema:OpinionNewsArticle",
+ "@id": "schema:Code",
"@type": "rdfs:Class",
- "rdfs:comment": "An [[OpinionNewsArticle]] is a [[NewsArticle]] that primarily expresses opinions rather than journalistic reporting of news and events. For example, a [[NewsArticle]] consisting of a column or [[Blog]]/[[BlogPosting]] entry in the Opinions section of a news publication. ",
- "rdfs:label": "OpinionNewsArticle",
+ "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
+ "rdfs:label": "Code",
"rdfs:subClassOf": {
- "@id": "schema:NewsArticle"
+ "@id": "schema:CreativeWork"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:supersededBy": {
+ "@id": "schema:SoftwareSourceCode"
+ }
+ },
+ {
+ "@id": "schema:video",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An embedded video object.",
+ "rdfs:label": "video",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:VideoObject"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:Clip"
}
]
},
{
- "@id": "schema:orderQuantity",
+ "@id": "schema:median",
"@type": "rdf:Property",
- "rdfs:comment": "The number of the item ordered. If the property is not set, assume the quantity is one.",
- "rdfs:label": "orderQuantity",
+ "rdfs:comment": "The median value.",
+ "rdfs:label": "median",
"schema:domainIncludes": {
- "@id": "schema:OrderItem"
+ "@id": "schema:QuantitativeValueDistribution"
},
"schema:rangeIncludes": {
"@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:StatusEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Lists or enumerations dealing with status types.",
- "rdfs:label": "StatusEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Nonprofit501c16",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c16: Non-profit type referring to Cooperative Organizations to Finance Crop Operations.",
+ "rdfs:label": "Nonprofit501c16",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2604"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:entertainmentBusiness",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The entertainment business where the action occurred.",
- "rdfs:label": "entertainmentBusiness",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
- "schema:domainIncludes": {
- "@id": "schema:PerformAction"
+ "@id": "schema:SizeSystemMetric",
+ "@type": "schema:SizeSystemEnumeration",
+ "rdfs:comment": "Metric size system.",
+ "rdfs:label": "SizeSystemMetric",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:EntertainmentBusiness"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:HowToTool",
+ "@id": "schema:ChildCare",
"@type": "rdfs:Class",
- "rdfs:comment": "A tool used (but not consumed) when performing instructions for how to achieve a result.",
- "rdfs:label": "HowToTool",
+ "rdfs:comment": "A Childcare center.",
+ "rdfs:label": "ChildCare",
"rdfs:subClassOf": {
- "@id": "schema:HowToItem"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:BodyMeasurementTypeEnumeration",
+ "@id": "schema:LocationFeatureSpecification",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerates types (or dimensions) of a person's body measurements, for example for fitting of clothes.",
- "rdfs:label": "BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Specifies a location feature by providing a structured value representing a feature of an accommodation as a property-value pair of varying degrees of formality.",
+ "rdfs:label": "LocationFeatureSpecification",
"rdfs:subClassOf": {
- "@id": "schema:MeasurementTypeEnumeration"
+ "@id": "schema:PropertyValue"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:percentile90",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The 90th percentile value.",
+ "rdfs:label": "percentile90",
+ "schema:domainIncludes": {
+ "@id": "schema:QuantitativeValueDistribution"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:IceCreamShop",
+ "@id": "schema:GovernmentOffice",
"@type": "rdfs:Class",
- "rdfs:comment": "An ice cream shop.",
- "rdfs:label": "IceCreamShop",
+ "rdfs:comment": "A government office—for example, an IRS or DMV office.",
+ "rdfs:label": "GovernmentOffice",
"rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:BusOrCoach",
- "@type": "rdfs:Class",
- "rdfs:comment": "A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel.",
- "rdfs:label": "BusOrCoach",
- "rdfs:subClassOf": {
- "@id": "schema:Vehicle"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
+ "@id": "schema:RemixAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "RemixAlbum.",
+ "rdfs:label": "RemixAlbum",
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:endorsers",
- "@type": "rdf:Property",
- "rdfs:comment": "People or organizations that endorse the plan.",
- "rdfs:label": "endorsers",
- "schema:domainIncludes": {
- "@id": "schema:Diet"
- },
+ "@id": "schema:Date",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "Date"
+ },
+ {
+ "@id": "schema:OTC",
+ "@type": "schema:DrugPrescriptionStatus",
+ "rdfs:comment": "The character of a medical substance, typically a medicine, of being available over the counter or not.",
+ "rdfs:label": "OTC",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ]
+ }
},
{
- "@id": "schema:DepositAccount",
- "@type": "rdfs:Class",
- "rdfs:comment": "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.",
- "rdfs:label": "DepositAccount",
- "rdfs:subClassOf": [
+ "@id": "schema:hasMerchantReturnPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a MerchantReturnPolicy that may be applicable.",
+ "rdfs:label": "hasMerchantReturnPolicy",
+ "schema:domainIncludes": [
{
- "@id": "schema:InvestmentOrDeposit"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:BankAccount"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Organization"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- },
- {
- "@id": "schema:EditedOrCroppedContent",
- "@type": "schema:MediaManipulationRatingEnumeration",
- "rdfs:comment": "Content coded 'edited or cropped content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'edited or cropped content': The video has been edited or rearranged. This category applies to time edits, including editing multiple videos together to alter the story being told or editing out large portions from a video.\n\nFor an [[ImageObject]] to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[ImageObject]] with embedded text to be 'edited or cropped content': Presenting a part of an image from a larger whole to mislead the viewer.\n\nFor an [[AudioObject]] to be 'edited or cropped content': The audio has been edited or rearranged. This category applies to time edits, including editing multiple audio clips together to alter the story being told or editing out large portions from the recording.\n",
- "rdfs:label": "EditedOrCroppedContent",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:ParkingFacility",
+ "@id": "schema:Taxon",
"@type": "rdfs:Class",
- "rdfs:comment": "A parking lot or other parking facility.",
- "rdfs:label": "ParkingFacility",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "A set of organisms asserted to represent a natural cohesive biological unit.",
+ "rdfs:label": "Taxon",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:Thing"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
}
},
{
- "@id": "schema:returnLabelSource",
+ "@id": "schema:cvdCollectionDate",
"@type": "rdf:Property",
- "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned for any reason.",
- "rdfs:label": "returnLabelSource",
+ "rdfs:comment": "collectiondate - Date for which patient counts are reported.",
+ "rdfs:label": "cvdCollectionDate",
"schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
+ "@id": "schema:CDCPMDRecord"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:ReturnLabelSourceEnumeration"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:Recruiting",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Recruiting participants.",
- "rdfs:label": "Recruiting",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:lesserOrEqual",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.",
+ "rdfs:label": "lesserOrEqual",
+ "schema:domainIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:Thing",
- "@type": "rdfs:Class",
- "rdfs:comment": "The most generic type of item.",
- "rdfs:label": "Thing"
- },
- {
- "@id": "schema:HowToTip",
+ "@id": "schema:AccountingService",
"@type": "rdfs:Class",
- "rdfs:comment": "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).",
- "rdfs:label": "HowToTip",
- "rdfs:subClassOf": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:ListItem"
- }
- ]
+ "rdfs:comment": "Accountancy business.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).\n ",
+ "rdfs:label": "AccountingService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
},
{
- "@id": "schema:datePosted",
+ "@id": "schema:videoFormat",
"@type": "rdf:Property",
- "rdfs:comment": "Publication date of an online listing.",
- "rdfs:label": "datePosted",
+ "rdfs:comment": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).",
+ "rdfs:label": "videoFormat",
"schema:domainIncludes": [
{
- "@id": "schema:SpecialAnnouncement"
- },
- {
- "@id": "schema:CDCPMDRecord"
- },
- {
- "@id": "schema:RealEstateListing"
+ "@id": "schema:BroadcastEvent"
},
{
- "@id": "schema:JobPosting"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:DateTime"
+ "@id": "schema:BroadcastService"
},
{
- "@id": "schema:Date"
+ "@id": "schema:ScreeningEvent"
}
],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:Event",
+ "@id": "schema:EventScheduled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default.",
+ "rdfs:label": "EventScheduled"
+ },
+ {
+ "@id": "schema:Vessel",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.org/dc/dcmitype/Event"
- },
- "rdfs:comment": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects.",
- "rdfs:label": "Event",
+ "rdfs:comment": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.",
+ "rdfs:label": "Vessel",
"rdfs:subClassOf": {
- "@id": "schema:Thing"
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:geoCoveredBy",
+ "@id": "schema:recordLabel",
"@type": "rdf:Property",
- "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
- "rdfs:label": "geoCoveredBy",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/mo/label"
+ },
+ "rdfs:comment": "The label that issued the release.",
+ "rdfs:label": "recordLabel",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:associatedPathophysiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.",
+ "rdfs:label": "associatedPathophysiology",
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:SuperficialAnatomy"
},
{
- "@id": "schema:GeospatialGeometry"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:AnatomicalSystem"
},
{
- "@id": "schema:Place"
+ "@id": "schema:AnatomicalStructure"
}
- ]
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:photos",
- "@type": "rdf:Property",
- "rdfs:comment": "Photographs of this place.",
- "rdfs:label": "photos",
- "schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:WearableMeasurementSleeve",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the sleeve length, for example of a shirt",
+ "rdfs:label": "WearableMeasurementSleeve",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:ImageObject"
- },
- {
- "@id": "schema:Photograph"
- }
- ],
- "schema:supersededBy": {
- "@id": "schema:photo"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:VideoGame",
- "@type": "rdfs:Class",
- "rdfs:comment": "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.",
- "rdfs:label": "VideoGame",
- "rdfs:subClassOf": [
- {
- "@id": "schema:SoftwareApplication"
- },
- {
- "@id": "schema:Game"
- }
- ]
+ "@id": "schema:ListPrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the list price (the price a product is actually advertised for) of an offered product.",
+ "rdfs:label": "ListPrice",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ }
},
{
- "@id": "schema:RentAction",
+ "@id": "schema:CommunicateAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.",
- "rdfs:label": "RentAction",
+ "rdfs:comment": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.",
+ "rdfs:label": "CommunicateAction",
"rdfs:subClassOf": {
- "@id": "schema:TradeAction"
+ "@id": "schema:InteractAction"
}
},
{
- "@id": "schema:eventStatus",
- "@type": "rdf:Property",
- "rdfs:comment": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.",
- "rdfs:label": "eventStatus",
- "schema:domainIncludes": {
- "@id": "schema:Event"
- },
- "schema:rangeIncludes": {
- "@id": "schema:EventStatusType"
+ "@id": "schema:WebApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web applications.",
+ "rdfs:label": "WebApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:SoftwareApplication"
}
},
{
- "@id": "schema:inAlbum",
- "@type": "rdf:Property",
- "rdfs:comment": "The album to which this recording belongs.",
- "rdfs:label": "inAlbum",
- "schema:domainIncludes": {
- "@id": "schema:MusicRecording"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MusicAlbum"
+ "@id": "schema:LodgingBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A lodging business, such as a motel, hotel, or inn.",
+ "rdfs:label": "LodgingBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:DJMixAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "DJMixAlbum.",
- "rdfs:label": "DJMixAlbum",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:Suspended",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Suspended.",
+ "rdfs:label": "Suspended",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:passengerSequenceNumber",
- "@type": "rdf:Property",
- "rdfs:comment": "The passenger's sequence number as assigned by the airline.",
- "rdfs:label": "passengerSequenceNumber",
- "schema:domainIncludes": {
- "@id": "schema:FlightReservation"
+ "@id": "schema:Subscription",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the subscription pricing component of the total price for an offered product.",
+ "rdfs:label": "Subscription",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
}
},
{
- "@id": "schema:Nonprofit501n",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501n: Non-profit type referring to Charitable Risk Pools.",
- "rdfs:label": "Nonprofit501n",
+ "@id": "schema:FreeReturn",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that product returns are free of charge for the customer.",
+ "rdfs:label": "FreeReturn",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:qualifications",
+ "@id": "schema:isPartOf",
"@type": "rdf:Property",
- "rdfs:comment": "Specific qualifications required for this role or Occupation.",
- "rdfs:label": "qualifications",
- "schema:domainIncludes": [
- {
- "@id": "schema:Occupation"
- },
- {
- "@id": "schema:JobPosting"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "rdfs:comment": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.",
+ "rdfs:label": "isPartOf",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:hasPart"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
- },
- {
- "@id": "schema:EducationalOccupationalCredential"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ "@id": "schema:URL"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "@id": "schema:CreativeWork"
}
]
},
{
- "@id": "schema:AmusementPark",
+ "@id": "schema:HowToTool",
"@type": "rdfs:Class",
- "rdfs:comment": "An amusement park.",
- "rdfs:label": "AmusementPark",
+ "rdfs:comment": "A tool used (but not consumed) when performing instructions for how to achieve a result.",
+ "rdfs:label": "HowToTool",
"rdfs:subClassOf": {
- "@id": "schema:EntertainmentBusiness"
+ "@id": "schema:HowToItem"
}
},
{
- "@id": "schema:Nonprofit501c19",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces.",
- "rdfs:label": "Nonprofit501c19",
+ "@id": "schema:InvestmentFund",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A company or fund that gathers capital from a number of investors to create a pool of money that is then re-invested into stocks, bonds and other assets.",
+ "rdfs:label": "InvestmentFund",
+ "rdfs:subClassOf": {
+ "@id": "schema:InvestmentOrDeposit"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
},
{
- "@id": "schema:affiliation",
+ "@id": "schema:geoEquals",
"@type": "rdf:Property",
- "rdfs:comment": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.",
- "rdfs:label": "affiliation",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship).",
+ "rdfs:label": "geoEquals",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
+ },
+ {
+ "@id": "schema:sportsEvent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of location. The sports event where this action occurred.",
+ "rdfs:label": "sportsEvent",
"rdfs:subPropertyOf": {
- "@id": "schema:memberOf"
+ "@id": "schema:location"
},
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:ExerciseAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:SportsEvent"
}
},
{
- "@id": "schema:speed",
- "@type": "rdf:Property",
- "rdfs:comment": "The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by [[maxValue]] should be the maximum speed achievable under regular conditions.\\n\\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\\n\\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\\n* Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the [[valueReference]] property.",
- "rdfs:label": "speed",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:FailedActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.",
+ "rdfs:label": "FailedActionStatus"
+ },
+ {
+ "@id": "schema:RealEstateAgent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A real-estate agent.",
+ "rdfs:label": "RealEstateAgent",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:earlyPrepaymentPenalty",
- "@type": "rdf:Property",
- "rdfs:comment": "The amount to be paid as a penalty in the event of early payment of the loan.",
- "rdfs:label": "earlyPrepaymentPenalty",
- "schema:domainIncludes": {
- "@id": "schema:RepaymentSpecification"
+ "@id": "schema:AdvertiserContentArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content.",
+ "rdfs:label": "AdvertiserContentArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:Article"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
"schema:source": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
]
},
{
- "@id": "schema:exampleOfWork",
- "@type": "rdf:Property",
- "rdfs:comment": "A creative work that this work is an example/instance/realization/derivation of.",
- "rdfs:label": "exampleOfWork",
- "schema:domainIncludes": {
+ "@id": "schema:Drawing",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A picture or diagram made with a pencil, pen, or crayon rather than paint.",
+ "rdfs:label": "Drawing",
+ "rdfs:subClassOf": {
"@id": "schema:CreativeWork"
},
- "schema:inverseOf": {
- "@id": "schema:workExample"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
+ },
+ {
+ "@id": "schema:providesService",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The service provided by this channel.",
+ "rdfs:label": "providesService",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Service"
+ }
+ },
+ {
+ "@id": "schema:prescribingInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to prescribing information for the drug.",
+ "rdfs:label": "prescribingInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:CoverArt",
+ "@id": "schema:RegisterAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The artwork on the outer surface of a CreativeWork.",
- "rdfs:label": "CoverArt",
+ "rdfs:comment": "The act of registering to be a user of a service, product or web page.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.\\n* [[FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\\n* [[SubscribeAction]]: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.",
+ "rdfs:label": "RegisterAction",
"rdfs:subClassOf": {
- "@id": "schema:VisualArtwork"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "schema:InteractAction"
}
},
{
- "@id": "schema:line",
+ "@id": "schema:pregnancyWarning",
"@type": "rdf:Property",
- "rdfs:comment": "A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.",
- "rdfs:label": "line",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.",
+ "rdfs:label": "pregnancyWarning",
"schema:domainIncludes": {
- "@id": "schema:GeoShape"
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:OriginalMediaContent",
- "@type": "schema:MediaManipulationRatingEnumeration",
- "rdfs:comment": "Content coded 'as original media content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'original': No evidence the footage has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n\nFor an [[ImageObject]] to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[ImageObject]] with embedded text to be 'original': No evidence the image has been misleadingly altered or manipulated, though it may still contain false or misleading claims.\n\nFor an [[AudioObject]] to be 'original': No evidence the audio has been misleadingly altered or manipulated, though it may contain false or misleading claims.\n",
- "rdfs:label": "OriginalMediaContent",
+ "@id": "schema:CommunityHealth",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A field of public health focusing on improving health characteristics of a defined population in relation with their geographical or environment areas.",
+ "rdfs:label": "CommunityHealth",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:businessFunction",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.",
+ "rdfs:label": "businessFunction",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:BusinessFunction"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:AudiobookFormat",
- "@type": "schema:BookFormatType",
- "rdfs:comment": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties.",
- "rdfs:label": "AudiobookFormat"
+ "@id": "schema:instrument",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The object that helped the agent perform the action. E.g. John wrote a book with *a pen*.",
+ "rdfs:label": "instrument",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
},
{
- "@id": "schema:distribution",
+ "@id": "schema:birthDate",
"@type": "rdf:Property",
- "rdfs:comment": "A downloadable form of this dataset, at a specific location, in a specific format.",
- "rdfs:label": "distribution",
+ "rdfs:comment": "Date of birth.",
+ "rdfs:label": "birthDate",
"schema:domainIncludes": {
- "@id": "schema:Dataset"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:DataDownload"
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:startOffset",
+ "@id": "schema:pattern",
"@type": "rdf:Property",
- "rdfs:comment": "The start time of the clip expressed as the number of seconds from the beginning of the work.",
- "rdfs:label": "startOffset",
+ "rdfs:comment": "A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.",
+ "rdfs:label": "pattern",
"schema:domainIncludes": [
{
- "@id": "schema:Clip"
+ "@id": "schema:Product"
},
{
- "@id": "schema:SeekToAction"
+ "@id": "schema:CreativeWork"
}
],
"schema:isPartOf": {
@@ -21334,668 +21417,800 @@
},
"schema:rangeIncludes": [
{
- "@id": "schema:Number"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:HyperTocEntry"
+ "@id": "schema:Text"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2021"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
}
},
{
- "@id": "schema:sha256",
- "@type": "rdf:Property",
- "rdfs:comment": "The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'",
- "rdfs:label": "sha256",
- "rdfs:subPropertyOf": {
- "@id": "schema:description"
- },
- "schema:domainIncludes": {
- "@id": "schema:MediaObject"
+ "@id": "schema:MortgageLoan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A loan in which property or real estate is used as collateral. (A loan securitized against some real estate.)",
+ "rdfs:label": "MortgageLoan",
+ "rdfs:subClassOf": {
+ "@id": "schema:LoanOrCredit"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
- }
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
},
{
- "@id": "schema:carbohydrateContent",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of grams of carbohydrates.",
- "rdfs:label": "carbohydrateContent",
- "schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
+ "@id": "schema:CorrectionComment",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[comment]] that corrects [[CreativeWork]].",
+ "rdfs:label": "CorrectionComment",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
},
- "schema:rangeIncludes": {
- "@id": "schema:Mass"
- }
- },
- {
- "@id": "schema:PatientExperienceHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about the real life experience of patients or people that have lived a similar experience about the topic. May be forums, topics, Q-and-A and related material.",
- "rdfs:label": "PatientExperienceHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
}
},
{
- "@id": "schema:CivicStructure",
+ "@id": "schema:Periodical",
"@type": "rdfs:Class",
- "rdfs:comment": "A public structure, such as a town hall or concert hall.",
- "rdfs:label": "CivicStructure",
+ "owl:equivalentClass": {
+ "@id": "http://purl.org/ontology/bibo/Periodical"
+ },
+ "rdfs:comment": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended to continue indefinitely, such as a magazine, scholarly journal, or newspaper.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "Periodical",
"rdfs:subClassOf": {
- "@id": "schema:Place"
- }
- },
- {
- "@id": "schema:serviceSmsNumber",
- "@type": "rdf:Property",
- "rdfs:comment": "The number to access the service by text message.",
- "rdfs:label": "serviceSmsNumber",
- "schema:domainIncludes": {
- "@id": "schema:ServiceChannel"
+ "@id": "schema:CreativeWorkSeries"
},
- "schema:rangeIncludes": {
- "@id": "schema:ContactPoint"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:maximumPhysicalAttendeeCapacity",
+ "@id": "schema:verificationFactCheckingPolicy",
"@type": "rdf:Property",
- "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). ",
- "rdfs:label": "maximumPhysicalAttendeeCapacity",
+ "rdfs:comment": "Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].",
+ "rdfs:label": "verificationFactCheckingPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
+ },
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:NewsMediaOrganization"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
- }
- },
- {
- "@id": "schema:emissionsCO2",
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:monthlyMinimumRepaymentAmount",
"@type": "rdf:Property",
- "rdfs:comment": "The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put \"g/km\" into the unitText property of that value, since there is no UN/CEFACT Common Code for \"g/km\".",
- "rdfs:label": "emissionsCO2",
+ "rdfs:comment": "The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month.",
+ "rdfs:label": "monthlyMinimumRepaymentAmount",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:PaymentCard"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:BusStop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bus stop.",
+ "rdfs:label": "BusStop",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:dataset",
+ "@id": "schema:offersPrescriptionByMail",
"@type": "rdf:Property",
- "rdfs:comment": "A dataset contained in this catalog.",
- "rdfs:label": "dataset",
+ "rdfs:comment": "Whether prescriptions can be delivered by mail.",
+ "rdfs:label": "offersPrescriptionByMail",
"schema:domainIncludes": {
- "@id": "schema:DataCatalog"
+ "@id": "schema:HealthPlanFormulary"
},
- "schema:inverseOf": {
- "@id": "schema:includedInDataCatalog"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Dataset"
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:maxPrice",
+ "@id": "schema:OfficeEquipmentStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An office equipment store.",
+ "rdfs:label": "OfficeEquipmentStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:touristType",
"@type": "rdf:Property",
- "rdfs:comment": "The highest price if the price is a range.",
- "rdfs:label": "maxPrice",
+ "rdfs:comment": "Attraction suitable for type(s) of tourist. E.g. children, visitors from a particular country, etc. ",
+ "rdfs:label": "touristType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TouristDestination"
+ },
+ {
+ "@id": "schema:TouristAttraction"
+ },
+ {
+ "@id": "schema:TouristTrip"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Audience"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:editor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the Person who edited the CreativeWork.",
+ "rdfs:label": "editor",
"schema:domainIncludes": {
- "@id": "schema:PriceSpecification"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:Person"
+ }
+ },
+ {
+ "@id": "schema:MisconceptionsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about common misconceptions and myths that are related to a topic.",
+ "rdfs:label": "MisconceptionsHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:preparation",
+ "@id": "schema:governmentBenefitsInfo",
"@type": "rdf:Property",
- "rdfs:comment": "Typical preparation that a patient must undergo before having the procedure performed.",
- "rdfs:label": "preparation",
+ "rdfs:comment": "governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.",
+ "rdfs:label": "governmentBenefitsInfo",
"schema:domainIncludes": {
- "@id": "schema:MedicalProcedure"
+ "@id": "schema:SpecialAnnouncement"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:MedicalEntity"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:GovernmentService"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
},
{
- "@id": "schema:proteinContent",
+ "@id": "schema:calories",
"@type": "rdf:Property",
- "rdfs:comment": "The number of grams of protein.",
- "rdfs:label": "proteinContent",
+ "rdfs:comment": "The number of calories.",
+ "rdfs:label": "calories",
"schema:domainIncludes": {
"@id": "schema:NutritionInformation"
},
"schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "@id": "schema:Energy"
}
},
{
- "@id": "schema:warranty",
- "@type": "rdf:Property",
- "rdfs:comment": "The warranty promise(s) included in the offer.",
- "rdfs:label": "warranty",
- "schema:domainIncludes": [
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:Offer"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:WarrantyPromise"
+ "@id": "schema:WearableMeasurementHeight",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the height, for example the heel height of a shoe",
+ "rdfs:label": "WearableMeasurementHeight",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:performTime",
+ "@id": "schema:unitCode",
"@type": "rdf:Property",
- "rdfs:comment": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
- "rdfs:label": "performTime",
+ "rdfs:comment": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.",
+ "rdfs:label": "unitCode",
"schema:domainIncludes": [
{
- "@id": "schema:HowTo"
+ "@id": "schema:PropertyValue"
},
{
- "@id": "schema:HowToDirection"
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:TypeAndQuantityNode"
+ },
+ {
+ "@id": "schema:UnitPriceSpecification"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Duration"
- }
- },
- {
- "@id": "schema:documentation",
- "@type": "rdf:Property",
- "rdfs:comment": "Further documentation describing the Web API in more detail.",
- "rdfs:label": "documentation",
- "schema:domainIncludes": {
- "@id": "schema:WebAPI"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Text"
},
{
"@id": "schema:URL"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:TVSeason",
+ "@id": "schema:Church",
"@type": "rdfs:Class",
- "rdfs:comment": "Season dedicated to TV broadcast and associated online delivery.",
- "rdfs:label": "TVSeason",
- "rdfs:subClassOf": [
- {
- "@id": "schema:CreativeWorkSeason"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ]
+ "rdfs:comment": "A church.",
+ "rdfs:label": "Church",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
},
{
- "@id": "schema:recordedAt",
+ "@id": "schema:countriesNotSupported",
"@type": "rdf:Property",
- "rdfs:comment": "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.",
- "rdfs:label": "recordedAt",
+ "rdfs:comment": "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "countriesNotSupported",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:inverseOf": {
- "@id": "schema:recordedIn"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:lowPrice",
+ "@id": "schema:PrependAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of inserting at the beginning if an ordered collection.",
+ "rdfs:label": "PrependAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InsertAction"
+ }
+ },
+ {
+ "@id": "schema:Appearance",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Appearance assessment with clinical examination.",
+ "rdfs:label": "Appearance",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:dateModified",
"@type": "rdf:Property",
- "rdfs:comment": "The lowest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
- "rdfs:label": "lowPrice",
- "schema:domainIncludes": {
- "@id": "schema:AggregateOffer"
- },
+ "rdfs:comment": "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.",
+ "rdfs:label": "dateModified",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:DataFeedItem"
+ }
+ ],
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:Number"
+ "@id": "schema:Date"
}
]
},
{
- "@id": "schema:beneficiaryBank",
+ "@id": "schema:translationOfWork",
"@type": "rdf:Property",
- "rdfs:comment": "A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary.",
- "rdfs:label": "beneficiaryBank",
+ "rdfs:comment": "The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”.",
+ "rdfs:label": "translationOfWork",
"schema:domainIncludes": {
- "@id": "schema:MoneyTransfer"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:workTranslation"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://bib.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:BankOrCreditUnion"
- },
- {
- "@id": "schema:Text"
- }
- ],
- "schema:source": [
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:SkiResort",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A ski resort.",
+ "rdfs:label": "SkiResort",
+ "rdfs:subClassOf": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "schema:SportsActivityLocation"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:Resort"
}
]
},
{
- "@id": "schema:geoCrosses",
+ "@id": "schema:legalStatus",
"@type": "rdf:Property",
- "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
- "rdfs:label": "geoCrosses",
+ "rdfs:comment": "The drug or supplement's legal status, including any controlled substance schedules that apply.",
+ "rdfs:label": "legalStatus",
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:DietarySupplement"
},
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:Drug"
+ },
+ {
+ "@id": "schema:MedicalEntity"
}
],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:Text"
},
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:DrugLegalStatus"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
}
]
},
{
- "@id": "schema:remainingAttendeeCapacity",
+ "@id": "schema:printColumn",
"@type": "rdf:Property",
- "rdfs:comment": "The number of attendee places for an event that remain unallocated.",
- "rdfs:label": "remainingAttendeeCapacity",
+ "rdfs:comment": "The number of the column in which the NewsArticle appears in the print edition.",
+ "rdfs:label": "printColumn",
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:NewsArticle"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:jobStartDate",
+ "@id": "schema:occupancy",
"@type": "rdf:Property",
- "rdfs:comment": "The date on which a successful applicant for this job would be expected to start work. Choose a specific date in the future or use the jobImmediateStart property to indicate the position is to be filled as soon as possible.",
- "rdfs:label": "jobStartDate",
+ "rdfs:comment": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person",
+ "rdfs:label": "occupancy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HotelRoom"
+ },
+ {
+ "@id": "schema:Suite"
+ },
+ {
+ "@id": "schema:Apartment"
+ },
+ {
+ "@id": "schema:SingleFamilyResidence"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:billingDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property).",
+ "rdfs:label": "billingDuration",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:UnitPriceSpecification"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Date"
+ "@id": "schema:Number"
},
{
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Duration"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2244"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
}
},
{
- "@id": "schema:feesAndCommissionsSpecification",
+ "@id": "schema:hasRepresentation",
"@type": "rdf:Property",
- "rdfs:comment": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.",
- "rdfs:label": "feesAndCommissionsSpecification",
- "schema:domainIncludes": [
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
+ },
+ "rdfs:comment": "A common representation such as a protein sequence or chemical structure for this entity. For images use schema.org/image.",
+ "rdfs:label": "hasRepresentation",
+ "schema:domainIncludes": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:FinancialProduct"
+ "@id": "schema:Text"
},
- {
- "@id": "schema:FinancialService"
- }
- ],
- "schema:rangeIncludes": [
{
"@id": "schema:URL"
},
{
- "@id": "schema:Text"
+ "@id": "schema:PropertyValue"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- },
- {
- "@id": "schema:PrescriptionOnly",
- "@type": "schema:DrugPrescriptionStatus",
- "rdfs:comment": "Available by prescription only.",
- "rdfs:label": "PrescriptionOnly",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ ]
},
{
- "@id": "schema:conditionsOfAccess",
+ "@id": "schema:creativeWorkStatus",
"@type": "rdf:Property",
- "rdfs:comment": "Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\\n\\nFor example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \". ",
- "rdfs:label": "conditionsOfAccess",
+ "rdfs:comment": "The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.",
+ "rdfs:label": "creativeWorkStatus",
"schema:domainIncludes": {
"@id": "schema:CreativeWork"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2173"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/987"
}
},
{
- "@id": "schema:distinguishingSign",
- "@type": "rdf:Property",
- "rdfs:comment": "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.",
- "rdfs:label": "distinguishingSign",
- "schema:domainIncludes": {
- "@id": "schema:DDxElement"
+ "@id": "schema:PriceTypeEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates different price types, for example list price, invoice price, and sale price.",
+ "rdfs:label": "PriceTypeEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalSignOrSymptom"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
}
},
{
- "@id": "schema:numChildren",
+ "@id": "schema:isBasedOnUrl",
"@type": "rdf:Property",
- "rdfs:comment": "The number of children staying in the unit.",
- "rdfs:label": "numChildren",
+ "rdfs:comment": "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.",
+ "rdfs:label": "isBasedOnUrl",
"schema:domainIncludes": {
- "@id": "schema:LodgingReservation"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Integer"
+ "@id": "schema:URL"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
- ]
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:isBasedOn"
+ }
},
{
- "@id": "schema:BusTrip",
+ "@id": "schema:MedicalTrial",
"@type": "rdfs:Class",
- "rdfs:comment": "A trip on a commercial bus line.",
- "rdfs:label": "BusTrip",
+ "rdfs:comment": "A medical trial is a type of medical study that uses a scientific process to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.",
+ "rdfs:label": "MedicalTrial",
"rdfs:subClassOf": {
- "@id": "schema:Trip"
+ "@id": "schema:MedicalStudy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Time",
- "@type": [
- "schema:DataType",
- "rdfs:Class"
- ],
- "rdfs:comment": "A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)).",
- "rdfs:label": "Time"
+ "@id": "schema:HowTo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Instructions that explain how to achieve a result by performing a sequence of steps.",
+ "rdfs:label": "HowTo",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
},
{
- "@id": "schema:iataCode",
- "@type": "rdf:Property",
- "rdfs:comment": "IATA identifier for an airline or airport.",
- "rdfs:label": "iataCode",
- "schema:domainIncludes": [
- {
- "@id": "schema:Airport"
- },
- {
- "@id": "schema:Airline"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Nonprofit501c7",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs.",
+ "rdfs:label": "Nonprofit501c7",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:opponent",
+ "@id": "schema:eligibilityToWorkRequirement",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The opponent on this action.",
- "rdfs:label": "opponent",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
- },
+ "rdfs:comment": "The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.",
+ "rdfs:label": "eligibilityToWorkRequirement",
"schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
}
},
{
- "@id": "schema:BedDetails",
+ "@id": "schema:DanceGroup",
"@type": "rdfs:Class",
- "rdfs:comment": "An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also [[BedType]] (under development).",
- "rdfs:label": "BedDetails",
+ "rdfs:comment": "A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.",
+ "rdfs:label": "DanceGroup",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "schema:PerformingGroup"
}
},
{
- "@id": "schema:landlord",
+ "@id": "schema:isFamilyFriendly",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The owner of the real estate property.",
- "rdfs:label": "landlord",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
- },
- "schema:domainIncludes": {
- "@id": "schema:RentAction"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "Indicates whether this content is family friendly.",
+ "rdfs:label": "isFamilyFriendly",
+ "schema:domainIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Product"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
- ]
- },
- {
- "@id": "schema:Suite",
- "@type": "rdfs:Class",
- "rdfs:comment": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "Suite",
- "rdfs:subClassOf": {
- "@id": "schema:Accommodation"
- },
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:WearableSizeGroupGirls",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Girls\" for wearables.",
- "rdfs:label": "WearableSizeGroupGirls",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:blogPosts",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a post that is part of a [[Blog]]. Note that historically, what we term a \"Blog\" was once known as a \"weblog\", and that what we term a \"BlogPosting\" is now often colloquially referred to as a \"blog\".",
+ "rdfs:label": "blogPosts",
+ "schema:domainIncludes": {
+ "@id": "schema:Blog"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "schema:rangeIncludes": {
+ "@id": "schema:BlogPosting"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:blogPost"
}
},
{
- "@id": "schema:healthPlanCopayOption",
+ "@id": "schema:hasBioPolymerSequence",
"@type": "rdf:Property",
- "rdfs:comment": "Whether the copay is before or after deductible, etc. TODO: Is this a closed set?",
- "rdfs:label": "healthPlanCopayOption",
- "schema:domainIncludes": {
- "@id": "schema:HealthPlanCostSharingSpecification"
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
+ },
+ "rdfs:comment": "A symbolic representation of a BioChemEntity. For example, a nucleotide sequence of a Gene or an amino acid sequence of a Protein.",
+ "rdfs:label": "hasBioPolymerSequence",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Protein"
+ },
+ {
+ "@id": "schema:Gene"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:recognizingAuthority",
+ "@id": "schema:addressCountry",
"@type": "rdf:Property",
- "rdfs:comment": "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.",
- "rdfs:label": "recognizingAuthority",
- "schema:domainIncludes": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "rdfs:comment": "The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1).",
+ "rdfs:label": "addressCountry",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeoCoordinates"
+ },
+ {
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Country"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:Subscription",
- "@type": "schema:PriceComponentTypeEnumeration",
- "rdfs:comment": "Represents the subscription pricing component of the total price for an offered product.",
- "rdfs:label": "Subscription",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ "@id": "schema:Photograph",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A photograph.",
+ "rdfs:label": "Photograph",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:isResizable",
+ "@id": "schema:HousePainter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A house painting service.",
+ "rdfs:label": "HousePainter",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:tissueSample",
"@type": "rdf:Property",
- "rdfs:comment": "Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality.",
- "rdfs:label": "isResizable",
+ "rdfs:comment": "The type of tissue sample required for the test.",
+ "rdfs:label": "tissueSample",
"schema:domainIncludes": {
- "@id": "schema:3DModel"
+ "@id": "schema:PathologyTest"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2394"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:CategoryCodeSet",
- "@type": "rdfs:Class",
- "rdfs:comment": "A set of Category Code values.",
- "rdfs:label": "CategoryCodeSet",
- "rdfs:subClassOf": {
- "@id": "schema:DefinedTermSet"
+ "@id": "schema:infectiousAgent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The actual infectious agent, such as a specific bacterium.",
+ "rdfs:label": "infectiousAgent",
+ "schema:domainIncludes": {
+ "@id": "schema:InfectiousDisease"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:workExample",
+ "@id": "schema:driveWheelConfiguration",
"@type": "rdf:Property",
- "rdfs:comment": "Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook.",
- "rdfs:label": "workExample",
+ "rdfs:comment": "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.",
+ "rdfs:label": "driveWheelConfiguration",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:inverseOf": {
- "@id": "schema:exampleOfWork"
- },
- "schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Vehicle"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DriveWheelConfigurationValue"
+ }
+ ],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:size",
+ "@id": "schema:leaseLength",
"@type": "rdf:Property",
- "rdfs:comment": "A standardized size of a product or creative work, specified either through a simple textual string (for example 'XL', '32Wx34L'), a QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable. ",
- "rdfs:label": "size",
+ "rdfs:comment": "Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property.",
+ "rdfs:label": "leaseLength",
"schema:domainIncludes": [
{
- "@id": "schema:Product"
+ "@id": "schema:Accommodation"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:RealEstateListing"
}
],
"schema:isPartOf": {
@@ -22003,121 +22218,90 @@
},
"schema:rangeIncludes": [
{
- "@id": "schema:SizeSpecification"
- },
- {
- "@id": "schema:DefinedTerm"
- },
- {
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Duration"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:Lung",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Lung and respiratory system clinical examination.",
- "rdfs:label": "Lung",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "schema:OrderProblem",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that there is a problem with the order.",
+ "rdfs:label": "OrderProblem"
},
{
- "@id": "schema:attendee",
+ "@id": "schema:gtin12",
"@type": "rdf:Property",
- "rdfs:comment": "A person or organization attending the event.",
- "rdfs:label": "attendee",
- "schema:domainIncludes": {
- "@id": "schema:Event"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin12",
+ "rdfs:subPropertyOf": [
{
- "@id": "schema:Organization"
+ "@id": "schema:gtin"
},
{
- "@id": "schema:Person"
+ "@id": "schema:identifier"
}
- ]
- },
- {
- "@id": "schema:accessibilityHazard",
- "@type": "rdf:Property",
- "rdfs:comment": "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).",
- "rdfs:label": "accessibilityHazard",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:musicArrangement",
+ "@id": "schema:operatingSystem",
"@type": "rdf:Property",
- "rdfs:comment": "An arrangement derived from the composition.",
- "rdfs:label": "musicArrangement",
+ "rdfs:comment": "Operating systems supported (Windows 7, OS X 10.6, Android 1.6).",
+ "rdfs:label": "operatingSystem",
"schema:domainIncludes": {
- "@id": "schema:MusicComposition"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": {
- "@id": "schema:MusicComposition"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:leiCode",
+ "@id": "schema:sizeSystem",
"@type": "rdf:Property",
- "rdfs:comment": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.",
- "rdfs:label": "leiCode",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
+ "rdfs:comment": "The size system used to identify a product's size. Typically either a standard (for example, \"GS1\" or \"ISO-EN13402\"), country code (for example \"US\" or \"JP\"), or a measuring system (for example \"Metric\" or \"Imperial\").",
+ "rdfs:label": "sizeSystem",
"schema:domainIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:SizeSpecification"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:Text"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF"
+ "@id": "schema:SizeSystemEnumeration"
}
- ]
- },
- {
- "@id": "schema:returnPolicySeasonalOverride",
- "@type": "rdf:Property",
- "rdfs:comment": "Seasonal override of a return policy.",
- "rdfs:label": "returnPolicySeasonalOverride",
- "schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MerchantReturnPolicySeasonalOverride"
- },
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:Nonprofit501c22",
+ "@id": "schema:Nonprofit501a",
"@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds.",
- "rdfs:label": "Nonprofit501c22",
+ "rdfs:comment": "Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations.",
+ "rdfs:label": "Nonprofit501a",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -22126,51 +22310,110 @@
}
},
{
- "@id": "schema:includedInDataCatalog",
+ "@id": "schema:exifData",
"@type": "rdf:Property",
- "rdfs:comment": "A data catalog which contains this dataset.",
- "rdfs:label": "includedInDataCatalog",
+ "rdfs:comment": "exif data for this object.",
+ "rdfs:label": "exifData",
"schema:domainIncludes": {
- "@id": "schema:Dataset"
- },
- "schema:inverseOf": {
- "@id": "schema:dataset"
+ "@id": "schema:ImageObject"
},
- "schema:rangeIncludes": {
- "@id": "schema:DataCatalog"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:estimatedSalary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.",
+ "rdfs:label": "estimatedSalary",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:MonetaryAmountDistribution"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:copyrightYear",
+ "@id": "schema:DiscussionForumPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A posting to a discussion forum.",
+ "rdfs:label": "DiscussionForumPosting",
+ "rdfs:subClassOf": {
+ "@id": "schema:SocialMediaPosting"
+ }
+ },
+ {
+ "@id": "schema:CohortStudy",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study. A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.",
+ "rdfs:label": "CohortStudy",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:numberOfAccommodationUnits",
"@type": "rdf:Property",
- "rdfs:comment": "The year during which the claimed copyright for the CreativeWork was first asserted.",
- "rdfs:label": "copyrightYear",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "rdfs:comment": "Indicates the total (available plus unavailable) number of accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAvailableAccommodationUnits]].",
+ "rdfs:label": "numberOfAccommodationUnits",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ApartmentComplex"
+ },
+ {
+ "@id": "schema:FloorPlan"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:ProfessionalService",
- "@type": "rdfs:Class",
- "rdfs:comment": "Original definition: \"provider of professional services.\"\\n\\nThe general [[ProfessionalService]] type for local businesses was deprecated due to confusion with [[Service]]. For reference, the types that it included were: [[Dentist]],\n [[AccountingService]], [[Attorney]], [[Notary]], as well as types for several kinds of [[HomeAndConstructionBusiness]]: [[Electrician]], [[GeneralContractor]],\n [[HousePainter]], [[Locksmith]], [[Plumber]], [[RoofingContractor]]. [[LegalService]] was introduced as a more inclusive supertype of [[Attorney]].",
- "rdfs:label": "ProfessionalService",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:Wednesday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Tuesday and Thursday.",
+ "rdfs:label": "Wednesday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q128"
}
},
{
- "@id": "schema:lender",
+ "@id": "schema:landlord",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The person that lends the object being borrowed.",
- "rdfs:label": "lender",
+ "rdfs:comment": "A sub property of participant. The owner of the real estate property.",
+ "rdfs:label": "landlord",
"rdfs:subPropertyOf": {
"@id": "schema:participant"
},
"schema:domainIncludes": {
- "@id": "schema:BorrowAction"
+ "@id": "schema:RentAction"
},
"schema:rangeIncludes": [
{
@@ -22182,2296 +22425,2203 @@
]
},
{
- "@id": "schema:inverseOf",
- "@type": "rdf:Property",
- "rdfs:comment": "Relates a property to a property that is its inverse. Inverse properties relate the same pairs of items to each other, but in reversed direction. For example, the 'alumni' and 'alumniOf' properties are inverseOf each other. Some properties don't have explicit inverses; in these situations RDFa and JSON-LD syntax for reverse properties can be used.",
- "rdfs:label": "inverseOf",
- "schema:domainIncludes": {
- "@id": "schema:Property"
- },
+ "@id": "schema:UnclassifiedAdultConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is suitable only for adults, without indicating why. Due to widespread use of \"adult\" as a euphemism for \"sexual\", many such items are likely suited also for the SexualContentConsideration code.",
+ "rdfs:label": "UnclassifiedAdultConsideration",
"schema:isPartOf": {
- "@id": "https://meta.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Property"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:WebContent",
- "@type": "rdfs:Class",
- "rdfs:comment": "WebContent is a type representing all [[WebPage]], [[WebSite]] and [[WebPageElement]] content. It is sometimes the case that detailed distinctions between Web pages, sites and their parts is not always important or obvious. The [[WebContent]] type makes it easier to describe Web-addressable content without requiring such distinctions to always be stated. (The intent is that the existing types [[WebPage]], [[WebSite]] and [[WebPageElement]] will eventually be declared as subtypes of [[WebContent]]).",
- "rdfs:label": "WebContent",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:featureList",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Features or modules provided by this application (and possibly required by other applications).",
+ "rdfs:label": "featureList",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2358"
- }
- },
- {
- "@id": "schema:VideoGallery",
- "@type": "rdfs:Class",
- "rdfs:comment": "Web page type: Video gallery page.",
- "rdfs:label": "VideoGallery",
- "rdfs:subClassOf": {
- "@id": "schema:MediaGallery"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:MerchantReturnFiniteReturnWindow",
- "@type": "schema:MerchantReturnEnumeration",
- "rdfs:comment": "Specifies that there is a finite window for product returns.",
- "rdfs:label": "MerchantReturnFiniteReturnWindow",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "schema:openingHours",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>.",
+ "rdfs:label": "openingHours",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:LocalBusiness"
+ },
+ {
+ "@id": "schema:CivicStructure"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:termDuration",
+ "@id": "schema:maps",
"@type": "rdf:Property",
- "rdfs:comment": "The amount of time in a term as defined by the institution. A term is a length of time where students take one or more classes. Semesters and quarters are common units for term.",
- "rdfs:label": "termDuration",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "maps",
"schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Place"
},
"schema:rangeIncludes": {
- "@id": "schema:Duration"
+ "@id": "schema:URL"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ "schema:supersededBy": {
+ "@id": "schema:hasMap"
}
},
{
- "@id": "schema:DrawAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.",
- "rdfs:label": "DrawAction",
- "rdfs:subClassOf": {
- "@id": "schema:CreateAction"
- }
+ "@id": "schema:TransitMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A transit map.",
+ "rdfs:label": "TransitMap"
},
{
- "@id": "schema:refundType",
+ "@id": "schema:serviceAudience",
"@type": "rdf:Property",
- "rdfs:comment": "A refund type, from an enumerated list.",
- "rdfs:label": "refundType",
+ "rdfs:comment": "The audience eligible for this service.",
+ "rdfs:label": "serviceAudience",
"schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Service"
},
"schema:rangeIncludes": {
- "@id": "schema:RefundTypeEnumeration"
+ "@id": "schema:Audience"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "schema:supersededBy": {
+ "@id": "schema:audience"
}
},
{
- "@id": "schema:GroceryStore",
+ "@id": "schema:RealEstateListing",
"@type": "rdfs:Class",
- "rdfs:comment": "A grocery store.",
- "rdfs:label": "GroceryStore",
+ "rdfs:comment": "A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell).\n The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]].\n ",
+ "rdfs:label": "RealEstateListing",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:WebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
}
},
{
- "@id": "schema:TVClip",
+ "@id": "schema:SellAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A short TV program or a segment/part of a TV program.",
- "rdfs:label": "TVClip",
+ "rdfs:comment": "The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.",
+ "rdfs:label": "SellAction",
"rdfs:subClassOf": {
- "@id": "schema:Clip"
+ "@id": "schema:TradeAction"
}
},
{
- "@id": "schema:normalRange",
- "@type": "rdf:Property",
- "rdfs:comment": "Range of acceptable values for a typical patient, when applicable.",
- "rdfs:label": "normalRange",
- "schema:domainIncludes": {
- "@id": "schema:MedicalTest"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:MedicalEnumeration"
- }
- ]
- },
- {
- "@id": "schema:TouristAttraction",
+ "@id": "schema:ShareAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A tourist attraction. In principle any Thing can be a [[TouristAttraction]], from a [[Mountain]] and [[LandmarksOrHistoricalBuildings]] to a [[LocalBusiness]]. This Type can be used on its own to describe a general [[TouristAttraction]], or be used as an [[additionalType]] to add tourist attraction properties to any other type. (See examples below)",
- "rdfs:label": "TouristAttraction",
+ "rdfs:comment": "The act of distributing content to people for their amusement or edification.",
+ "rdfs:label": "ShareAction",
"rdfs:subClassOf": {
- "@id": "schema:Place"
- },
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
- }
- ]
+ "@id": "schema:CommunicateAction"
+ }
},
{
- "@id": "schema:MediaSubscription",
+ "@id": "schema:Bakery",
"@type": "rdfs:Class",
- "rdfs:comment": "A subscription which allows a user to access media including audio, video, books, etc.",
- "rdfs:label": "MediaSubscription",
+ "rdfs:comment": "A bakery.",
+ "rdfs:label": "Bakery",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ "@id": "schema:FoodEstablishment"
}
},
{
- "@id": "schema:agent",
+ "@id": "schema:isAccessibleForFree",
"@type": "rdf:Property",
- "rdfs:comment": "The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book.",
- "rdfs:label": "agent",
- "schema:domainIncludes": {
- "@id": "schema:Action"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.",
+ "rdfs:label": "isAccessibleForFree",
+ "schema:domainIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Event"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
- ]
- },
- {
- "@id": "schema:recordedAs",
- "@type": "rdf:Property",
- "rdfs:comment": "An audio recording of the work.",
- "rdfs:label": "recordedAs",
- "schema:domainIncludes": {
- "@id": "schema:MusicComposition"
- },
- "schema:inverseOf": {
- "@id": "schema:recordingOf"
- },
+ ],
"schema:rangeIncludes": {
- "@id": "schema:MusicRecording"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
- },
- {
- "@id": "schema:LiteraryEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: Literary event.",
- "rdfs:label": "LiteraryEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
- }
- },
- {
- "@id": "schema:Photograph",
- "@type": "rdfs:Class",
- "rdfs:comment": "A photograph.",
- "rdfs:label": "Photograph",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:jurisdiction",
+ "@id": "schema:isSimilarTo",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.",
- "rdfs:label": "jurisdiction",
+ "rdfs:comment": "A pointer to another, functionally similar product (or multiple products).",
+ "rdfs:label": "isSimilarTo",
"schema:domainIncludes": [
{
- "@id": "schema:Legislation"
+ "@id": "schema:Service"
},
{
- "@id": "schema:GovernmentService"
+ "@id": "schema:Product"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:Product"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Service"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:OrganizationRole",
+ "@id": "schema:WholesaleStore",
"@type": "rdfs:Class",
- "rdfs:comment": "A subclass of Role used to describe roles within organizations.",
- "rdfs:label": "OrganizationRole",
+ "rdfs:comment": "A wholesale store.",
+ "rdfs:label": "WholesaleStore",
"rdfs:subClassOf": {
- "@id": "schema:Role"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:ReservationConfirmed",
- "@type": "schema:ReservationStatusType",
- "rdfs:comment": "The status of a confirmed reservation.",
- "rdfs:label": "ReservationConfirmed"
- },
- {
- "@id": "schema:Hospital",
+ "@id": "schema:RejectAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A hospital.",
- "rdfs:label": "Hospital",
- "rdfs:subClassOf": [
- {
- "@id": "schema:CivicStructure"
- },
- {
- "@id": "schema:MedicalOrganization"
- },
- {
- "@id": "schema:EmergencyService"
- }
- ]
+ "rdfs:comment": "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n* [[AcceptAction]]: The antonym of RejectAction.",
+ "rdfs:label": "RejectAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
},
{
- "@id": "schema:CDFormat",
- "@type": "schema:MusicReleaseFormatType",
- "rdfs:comment": "CDFormat.",
- "rdfs:label": "CDFormat",
+ "@id": "schema:cvdNumTotBeds",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numtotbeds - ALL HOSPITAL BEDS: Total number of all inpatient and outpatient beds, including all staffed, ICU, licensed, and overflow (surge) beds used for inpatients or outpatients.",
+ "rdfs:label": "cvdNumTotBeds",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:AggregateRating",
+ "@id": "schema:WarrantyScope",
"@type": "rdfs:Class",
- "rdfs:comment": "The average rating based on multiple ratings or reviews.",
- "rdfs:label": "AggregateRating",
+ "rdfs:comment": "A range of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Labor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n ",
+ "rdfs:label": "WarrantyScope",
"rdfs:subClassOf": {
- "@id": "schema:Rating"
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:breadcrumb",
+ "@id": "schema:ticketToken",
"@type": "rdf:Property",
- "rdfs:comment": "A set of links that can help a user understand and navigate a website hierarchy.",
- "rdfs:label": "breadcrumb",
+ "rdfs:comment": "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.",
+ "rdfs:label": "ticketToken",
"schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:Ticket"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:URL"
},
{
- "@id": "schema:BreadcrumbList"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:maximumIntake",
+ "@id": "schema:expectedArrivalFrom",
"@type": "rdf:Property",
- "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
- "rdfs:label": "maximumIntake",
- "schema:domainIncludes": [
- {
- "@id": "schema:DietarySupplement"
- },
- {
- "@id": "schema:Drug"
- },
+ "rdfs:comment": "The earliest date the package may arrive.",
+ "rdfs:label": "expectedArrivalFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:DrugStrength"
+ "@id": "schema:Date"
},
{
- "@id": "schema:Substance"
+ "@id": "schema:DateTime"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:diet",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of instrument. The diet used in this action.",
+ "rdfs:label": "diet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ExerciseAction"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MaximumDoseSchedule"
+ "@id": "schema:Diet"
}
},
{
- "@id": "schema:WearAction",
+ "@id": "schema:SpeakableSpecification",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of dressing oneself in clothing.",
- "rdfs:label": "WearAction",
+ "rdfs:comment": "A SpeakableSpecification indicates (typically via [[xpath]] or [[cssSelector]]) sections of a document that are highlighted as particularly [[speakable]]. Instances of this type are expected to be used primarily as values of the [[speakable]] property.",
+ "rdfs:label": "SpeakableSpecification",
"rdfs:subClassOf": {
- "@id": "schema:UseAction"
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
}
},
{
- "@id": "schema:exifData",
+ "@id": "schema:DepartmentStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A department store.",
+ "rdfs:label": "DepartmentStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:numberOfLoanPayments",
"@type": "rdf:Property",
- "rdfs:comment": "exif data for this object.",
- "rdfs:label": "exifData",
+ "rdfs:comment": "The number of payments contractually required at origination to repay the loan. For monthly paying loans this is the number of months from the contractual first payment date to the maturity date.",
+ "rdfs:label": "numberOfLoanPayments",
"schema:domainIncludes": {
- "@id": "schema:ImageObject"
+ "@id": "schema:RepaymentSpecification"
},
- "schema:rangeIncludes": [
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": [
{
- "@id": "schema:PropertyValue"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
},
{
- "@id": "schema:Text"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
]
},
{
- "@id": "schema:isAvailableGenerically",
+ "@id": "schema:deathDate",
"@type": "rdf:Property",
- "rdfs:comment": "True if the drug is available in a generic form (regardless of name).",
- "rdfs:label": "isAvailableGenerically",
+ "rdfs:comment": "Date of death.",
+ "rdfs:label": "deathDate",
"schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:Rheumatologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.",
- "rdfs:label": "Rheumatologic",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:GasStation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A gas station.",
+ "rdfs:label": "GasStation",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
}
},
{
- "@id": "schema:WPSideBar",
+ "@id": "schema:PlanAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A sidebar section of the page.",
- "rdfs:label": "WPSideBar",
+ "rdfs:comment": "The act of planning the execution of an event/task/action/reservation/plan to a future date.",
+ "rdfs:label": "PlanAction",
"rdfs:subClassOf": {
- "@id": "schema:WebPageElement"
+ "@id": "schema:OrganizeAction"
}
},
{
- "@id": "schema:OccupationalTherapy",
- "@type": "rdfs:Class",
- "rdfs:comment": "A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems.",
- "rdfs:label": "OccupationalTherapy",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalTherapy"
+ "@id": "schema:broadcastTimezone",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts.",
+ "rdfs:label": "broadcastTimezone",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastService"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:MusicAlbumProductionType",
- "@type": "rdfs:Class",
- "rdfs:comment": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.",
- "rdfs:label": "MusicAlbumProductionType",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:relatedLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A link related to this web page, for example to other related web pages.",
+ "rdfs:label": "relatedLink",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:playMode",
+ "@id": "schema:author",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.",
- "rdfs:label": "playMode",
+ "rdfs:comment": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.",
+ "rdfs:label": "author",
"schema:domainIncludes": [
{
- "@id": "schema:VideoGame"
+ "@id": "schema:Rating"
},
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:CreativeWork"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:GamePlayMode"
- }
- },
- {
- "@id": "schema:suggestedMeasurement",
- "@type": "rdf:Property",
- "rdfs:comment": "A suggested range of body measurements for the intended audience or person, for example inseam between 32 and 34 inches or height between 170 and 190 cm. Typically found on a size chart for wearable products.",
- "rdfs:label": "suggestedMeasurement",
- "schema:domainIncludes": [
+ "schema:rangeIncludes": [
{
- "@id": "schema:PeopleAudience"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:SizeSpecification"
+ "@id": "schema:Person"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:ratingExplanation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with \"fact check\" markup using [[ClaimReview]].",
+ "rdfs:label": "ratingExplanation",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:BefriendAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.",
- "rdfs:label": "BefriendAction",
- "rdfs:subClassOf": {
- "@id": "schema:InteractAction"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2300"
}
},
{
- "@id": "schema:answerCount",
+ "@id": "schema:additionalName",
"@type": "rdf:Property",
- "rdfs:comment": "The number of answers this question has received.",
- "rdfs:label": "answerCount",
- "schema:domainIncludes": {
- "@id": "schema:Question"
+ "rdfs:comment": "An additional name for a Person, can be used for a middle name.",
+ "rdfs:label": "additionalName",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:alternateName"
},
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- }
- },
- {
- "@id": "schema:ItemListOrderDescending",
- "@type": "schema:ItemListOrderType",
- "rdfs:comment": "An ItemList ordered with higher values listed first.",
- "rdfs:label": "ItemListOrderDescending"
- },
- {
- "@id": "schema:encodings",
- "@type": "rdf:Property",
- "rdfs:comment": "A media object that encodes this CreativeWork.",
- "rdfs:label": "encodings",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:MediaObject"
- },
- "schema:supersededBy": {
- "@id": "schema:encoding"
- }
- },
- {
- "@id": "schema:PostOffice",
- "@type": "rdfs:Class",
- "rdfs:comment": "A post office.",
- "rdfs:label": "PostOffice",
- "rdfs:subClassOf": {
- "@id": "schema:GovernmentOffice"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:orderStatus",
+ "@id": "schema:starRating",
"@type": "rdf:Property",
- "rdfs:comment": "The current status of the order.",
- "rdfs:label": "orderStatus",
- "schema:domainIncludes": {
- "@id": "schema:Order"
- },
+ "rdfs:comment": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).",
+ "rdfs:label": "starRating",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FoodEstablishment"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:OrderStatus"
+ "@id": "schema:Rating"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:Winery",
+ "@id": "schema:MotorcycleDealer",
"@type": "rdfs:Class",
- "rdfs:comment": "A winery.",
- "rdfs:label": "Winery",
+ "rdfs:comment": "A motorcycle dealer.",
+ "rdfs:label": "MotorcycleDealer",
"rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:AutomotiveBusiness"
}
},
{
- "@id": "schema:FilmAction",
+ "@id": "schema:MedicalOrganization",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of capturing sound and moving images on film, video, or digitally.",
- "rdfs:label": "FilmAction",
+ "rdfs:comment": "A medical organization (physical or not), such as hospital, institution or clinic.",
+ "rdfs:label": "MedicalOrganization",
"rdfs:subClassOf": {
- "@id": "schema:CreateAction"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:target",
+ "@id": "schema:secondaryPrevention",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a target EntryPoint for an Action.",
- "rdfs:label": "target",
+ "rdfs:comment": "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.",
+ "rdfs:label": "secondaryPrevention",
"schema:domainIncludes": {
- "@id": "schema:Action"
+ "@id": "schema:MedicalCondition"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:EntryPoint"
+ "@id": "schema:MedicalTherapy"
}
},
{
- "@id": "schema:cvdNumICUBedsOcc",
+ "@id": "schema:regionsAllowed",
"@type": "rdf:Property",
- "rdfs:comment": "numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.",
- "rdfs:label": "cvdNumICUBedsOcc",
+ "rdfs:comment": "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166).",
+ "rdfs:label": "regionsAllowed",
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:MediaObject"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:RsvpResponseType",
+ "@id": "schema:OfferCatalog",
"@type": "rdfs:Class",
- "rdfs:comment": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.",
- "rdfs:label": "RsvpResponseType",
+ "rdfs:comment": "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.",
+ "rdfs:label": "OfferCatalog",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:ItemList"
}
},
{
- "@id": "schema:bodyType",
+ "@id": "schema:educationalCredentialAwarded",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).",
- "rdfs:label": "bodyType",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.",
+ "rdfs:label": "educationalCredentialAwarded",
+ "schema:domainIncludes": [
{
- "@id": "schema:QualitativeValue"
+ "@id": "schema:EducationalOccupationalProgram"
},
+ {
+ "@id": "schema:Course"
+ }
+ ],
+ "schema:rangeIncludes": [
{
"@id": "schema:URL"
},
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
{
"@id": "schema:Text"
}
],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
},
{
- "@id": "schema:OrderPickupAvailable",
- "@type": "schema:OrderStatus",
- "rdfs:comment": "OrderStatus representing availability of an order for pickup.",
- "rdfs:label": "OrderPickupAvailable"
+ "@id": "schema:infectiousAgentClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The class of infectious agent (bacteria, prion, etc.) that causes the disease.",
+ "rdfs:label": "infectiousAgentClass",
+ "schema:domainIncludes": {
+ "@id": "schema:InfectiousDisease"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:InfectiousAgentClass"
+ }
},
{
- "@id": "schema:MobilePhoneStore",
+ "@id": "schema:GeneralContractor",
"@type": "rdfs:Class",
- "rdfs:comment": "A store that sells mobile phones and related accessories.",
- "rdfs:label": "MobilePhoneStore",
+ "rdfs:comment": "A general contractor.",
+ "rdfs:label": "GeneralContractor",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:HomeAndConstructionBusiness"
}
},
{
- "@id": "schema:Continent",
- "@type": "rdfs:Class",
- "rdfs:comment": "One of the continents (for example, Europe or Africa).",
- "rdfs:label": "Continent",
- "rdfs:subClassOf": {
- "@id": "schema:Landform"
- }
+ "@id": "schema:Online",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: Online. Server is available.",
+ "rdfs:label": "Online"
},
{
- "@id": "schema:MedicalBusiness",
- "@type": "rdfs:Class",
- "rdfs:comment": "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include differents business run by health professionals.",
- "rdfs:label": "MedicalBusiness",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:printEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The edition of the print product in which the NewsArticle appears.",
+ "rdfs:label": "printEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:VitalSign",
+ "@id": "schema:Observation",
"@type": "rdfs:Class",
- "rdfs:comment": "Vital signs are measures of various physiological functions in order to assess the most basic body functions.",
- "rdfs:label": "VitalSign",
+ "rdfs:comment": "Instances of the class [[Observation]] are used to specify observations about an entity (which may or may not be an instance of a [[StatisticalPopulation]]), at a particular time. The principal properties of an [[Observation]] are [[observedNode]], [[measuredProperty]], [[measuredValue]] (or [[median]], etc.) and [[observationDate]] ([[measuredProperty]] properties can, but need not always, be W3C RDF Data Cube \"measure properties\", as in the [lifeExpectancy example](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).\nSee also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ",
+ "rdfs:label": "Observation",
"rdfs:subClassOf": {
- "@id": "schema:MedicalSign"
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
}
},
{
- "@id": "schema:billingIncrement",
+ "@id": "schema:contentUrl",
"@type": "rdf:Property",
- "rdfs:comment": "This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.",
- "rdfs:label": "billingIncrement",
+ "rdfs:comment": "Actual bytes of the media object, for example the image file or video file.",
+ "rdfs:label": "contentUrl",
"schema:domainIncludes": {
- "@id": "schema:UnitPriceSpecification"
+ "@id": "schema:MediaObject"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:measuredProperty",
+ "@id": "schema:step",
"@type": "rdf:Property",
- "rdfs:comment": "The measuredProperty of an [[Observation]], either a schema.org property, a property from other RDF-compatible systems e.g. W3C RDF Data Cube, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties).",
- "rdfs:label": "measuredProperty",
+ "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.",
+ "rdfs:label": "step",
"schema:domainIncludes": {
- "@id": "schema:Observation"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:HowTo"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:HowToSection"
+ },
+ {
+ "@id": "schema:HowToStep"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:validIn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geographic area where a permit or similar thing is valid.",
+ "rdfs:label": "validIn",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Permit"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Property"
+ "@id": "schema:AdministrativeArea"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
},
{
- "@id": "schema:courseCode",
+ "@id": "schema:artMedium",
"@type": "rdf:Property",
- "rdfs:comment": "The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).",
- "rdfs:label": "courseCode",
+ "rdfs:comment": "The material used. (E.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)",
+ "rdfs:label": "artMedium",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:material"
+ },
"schema:domainIncludes": {
- "@id": "schema:Course"
+ "@id": "schema:VisualArtwork"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:appliesToDeliveryMethod",
+ "@id": "schema:numberOfAxles",
"@type": "rdf:Property",
- "rdfs:comment": "The delivery method(s) to which the delivery charge or payment charge specification applies.",
- "rdfs:label": "appliesToDeliveryMethod",
- "schema:domainIncludes": [
+ "rdfs:comment": "The number of axles.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfAxles",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:PaymentChargeSpecification"
+ "@id": "schema:Number"
},
{
- "@id": "schema:DeliveryChargeSpecification"
+ "@id": "schema:QuantitativeValue"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:DeliveryMethod"
- },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:cvdNumVent",
- "@type": "rdf:Property",
- "rdfs:comment": "numvent - MECHANICAL VENTILATORS: Total number of ventilators available.",
- "rdfs:label": "cvdNumVent",
- "schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
+ "@id": "schema:CategoryCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Category Code.",
+ "rdfs:label": "CategoryCode",
+ "rdfs:subClassOf": {
+ "@id": "schema:DefinedTerm"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:UserTweets",
+ "@id": "schema:DrinkAction",
"@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserTweets",
+ "rdfs:comment": "The act of swallowing liquids.",
+ "rdfs:label": "DrinkAction",
"rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
- },
- "schema:supersededBy": {
- "@id": "schema:InteractionCounter"
+ "@id": "schema:ConsumeAction"
}
},
{
- "@id": "schema:numberOfAccommodationUnits",
+ "@id": "schema:loanPaymentFrequency",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the total (available plus unavailable) number of accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAvailableAccommodationUnits]].",
- "rdfs:label": "numberOfAccommodationUnits",
- "schema:domainIncludes": [
- {
- "@id": "schema:ApartmentComplex"
- },
- {
- "@id": "schema:FloorPlan"
- }
- ],
+ "rdfs:comment": "Frequency of payments due, i.e. number of months between payments. This is defined as a frequency, i.e. the reciprocal of a period of time.",
+ "rdfs:label": "loanPaymentFrequency",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Number"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
},
{
- "@id": "schema:downloadUrl",
+ "@id": "schema:unsaturatedFatContent",
"@type": "rdf:Property",
- "rdfs:comment": "If the file can be downloaded, URL to download the binary.",
- "rdfs:label": "downloadUrl",
+ "rdfs:comment": "The number of grams of unsaturated fat.",
+ "rdfs:label": "unsaturatedFatContent",
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:NutritionInformation"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:Mass"
}
},
{
- "@id": "schema:Observation",
+ "@id": "schema:PlayAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Instances of the class [[Observation]] are used to specify observations about an entity (which may or may not be an instance of a [[StatisticalPopulation]]), at a particular time. The principal properties of an [[Observation]] are [[observedNode]], [[measuredProperty]], [[measuredValue]] (or [[median]], etc.) and [[observationDate]] ([[measuredProperty]] properties can, but need not always, be W3C RDF Data Cube \"measure properties\", as in the [lifeExpectancy example](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).\nSee also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ",
- "rdfs:label": "Observation",
+ "rdfs:comment": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, competition or exercise.\\n\\nRelated actions:\\n\\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.",
+ "rdfs:label": "PlayAction",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:typicalCreditsPerTerm",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of credits or units a full-time student would be expected to take in 1 term however 'term' is defined by the institution.",
+ "rdfs:label": "typicalCreditsPerTerm",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:StructuredValue"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
}
},
{
- "@id": "schema:musicReleaseFormat",
+ "@id": "schema:applicableCountry",
"@type": "rdf:Property",
- "rdfs:comment": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).",
- "rdfs:label": "musicReleaseFormat",
+ "rdfs:comment": "A country where a particular merchant return policy applies to, for example the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "applicableCountry",
"schema:domainIncludes": {
- "@id": "schema:MusicRelease"
+ "@id": "schema:MerchantReturnPolicy"
},
- "schema:rangeIncludes": {
- "@id": "schema:MusicReleaseFormatType"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Country"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
- },
- {
- "@id": "schema:SubwayStation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A subway station.",
- "rdfs:label": "SubwayStation",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3001"
}
},
{
- "@id": "schema:childMaxAge",
+ "@id": "schema:scheduledTime",
"@type": "rdf:Property",
- "rdfs:comment": "Maximal age of the child.",
- "rdfs:label": "childMaxAge",
+ "rdfs:comment": "The time the object is scheduled to.",
+ "rdfs:label": "scheduledTime",
"schema:domainIncludes": {
- "@id": "schema:ParentAudience"
+ "@id": "schema:PlanAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:DateTime"
}
},
{
- "@id": "schema:children",
+ "@id": "schema:Nonprofit501c28",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c28: Non-profit type referring to National Railroad Retirement Investment Trusts.",
+ "rdfs:label": "Nonprofit501c28",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:object",
"@type": "rdf:Property",
- "rdfs:comment": "A child of the person.",
- "rdfs:label": "children",
+ "rdfs:comment": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). E.g. John read *a book*.",
+ "rdfs:label": "object",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Action"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:RadioBroadcastService",
+ "@id": "schema:Report",
"@type": "rdfs:Class",
- "rdfs:comment": "A delivery service through which radio content is provided via broadcast over the air or online.",
- "rdfs:label": "RadioBroadcastService",
+ "rdfs:comment": "A Report generated by governmental or non-governmental organization.",
+ "rdfs:label": "Report",
"rdfs:subClassOf": {
- "@id": "schema:BroadcastService"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
+ "@id": "schema:Article"
}
},
{
- "@id": "schema:spouse",
+ "@id": "schema:contentReferenceTime",
"@type": "rdf:Property",
- "rdfs:comment": "The person's spouse.",
- "rdfs:label": "spouse",
+ "rdfs:comment": "The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event.",
+ "rdfs:label": "contentReferenceTime",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:DateTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1050"
}
},
{
- "@id": "schema:creator",
+ "@id": "schema:sizeGroup",
"@type": "rdf:Property",
- "rdfs:comment": "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.",
- "rdfs:label": "creator",
- "schema:domainIncludes": [
- {
- "@id": "schema:UserComments"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
+ "rdfs:comment": "The size group (also known as \"size type\") for a product's size. Size groups are common in the fashion industry to define size segments and suggested audiences for wearable products. Multiple values can be combined, for example \"men's big and tall\", \"petite maternity\" or \"regular\"",
+ "rdfs:label": "sizeGroup",
+ "schema:domainIncludes": {
+ "@id": "schema:SizeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:SizeGroupEnumeration"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Text"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
},
{
- "@id": "schema:checkinTime",
+ "@id": "schema:biologicalRole",
"@type": "rdf:Property",
- "rdfs:comment": "The earliest someone may check into a lodging establishment.",
- "rdfs:label": "checkinTime",
- "schema:domainIncludes": [
- {
- "@id": "schema:LodgingBusiness"
- },
- {
- "@id": "schema:LodgingReservation"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:DateTime"
- },
- {
- "@id": "schema:Time"
- }
- ]
- },
- {
- "@id": "schema:Legislation",
- "@type": "rdfs:Class",
- "http://www.w3.org/2004/02/skos/core#closeMatch": [
- {
- "@id": "http://data.europa.eu/eli/ontology#LegalResource"
- },
- {
- "@id": "http://data.europa.eu/eli/ontology#LegalExpression"
- }
- ],
- "rdfs:comment": "A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article).",
- "rdfs:label": "Legislation",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org"
},
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- }
- ]
- },
- {
- "@id": "schema:publishedBy",
- "@type": "rdf:Property",
- "rdfs:comment": "An agent associated with the publication event.",
- "rdfs:label": "publishedBy",
+ "rdfs:comment": "A role played by the BioChemEntity within a biological context.",
+ "rdfs:label": "biologicalRole",
"schema:domainIncludes": {
- "@id": "schema:PublicationEvent"
+ "@id": "schema:BioChemEntity"
},
"schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:DefinedTerm"
+ }
},
{
- "@id": "schema:freeShippingThreshold",
- "@type": "rdf:Property",
- "rdfs:comment": "A monetary value above which (or equal to) the shipping rate becomes free. Intended to be used via an [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]].",
- "rdfs:label": "freeShippingThreshold",
- "schema:domainIncludes": {
- "@id": "schema:ShippingRateSettings"
- },
+ "@id": "schema:OriginalShippingFees",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that the customer must pay the original shipping costs when returning a product.",
+ "rdfs:label": "OriginalShippingFees",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:MonetaryAmount"
- },
- {
- "@id": "schema:DeliveryChargeSpecification"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:expectsAcceptanceOf",
+ "@id": "schema:DaySpa",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A day spa.",
+ "rdfs:label": "DaySpa",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
+ }
+ },
+ {
+ "@id": "schema:event",
"@type": "rdf:Property",
- "rdfs:comment": "An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.",
- "rdfs:label": "expectsAcceptanceOf",
+ "rdfs:comment": "Upcoming or past event associated with this place, organization, or action.",
+ "rdfs:label": "event",
"schema:domainIncludes": [
{
- "@id": "schema:ActionAccessSpecification"
+ "@id": "schema:PlayAction"
},
{
- "@id": "schema:ConsumeAction"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:MediaSubscription"
+ "@id": "schema:InviteAction"
+ },
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:LeaveAction"
+ },
+ {
+ "@id": "schema:InformAction"
+ },
+ {
+ "@id": "schema:JoinAction"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Offer"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
- }
- },
- {
- "@id": "schema:Episode",
- "@type": "rdfs:Class",
- "rdfs:comment": "A media episode (e.g. TV, radio, video game) which can be part of a series or season.",
- "rdfs:label": "Episode",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:GroupBoardingPolicy",
- "@type": "schema:BoardingPolicyType",
- "rdfs:comment": "The airline boards by groups based on check-in time, priority, etc.",
- "rdfs:label": "GroupBoardingPolicy"
- },
- {
- "@id": "schema:DrugClass",
- "@type": "rdfs:Class",
- "rdfs:comment": "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.",
- "rdfs:label": "DrugClass",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:Motorcycle",
- "@type": "rdfs:Class",
- "rdfs:comment": "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.",
- "rdfs:label": "Motorcycle",
- "rdfs:subClassOf": {
- "@id": "schema:Vehicle"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "schema:servesCuisine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The cuisine of the restaurant.",
+ "rdfs:label": "servesCuisine",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
- },
- {
- "@id": "schema:PhysicalExam",
- "@type": "rdfs:Class",
- "rdfs:comment": "A type of physical examination of a patient performed by a physician. ",
- "rdfs:label": "PhysicalExam",
- "rdfs:subClassOf": [
- {
- "@id": "schema:MedicalEnumeration"
- },
- {
- "@id": "schema:MedicalProcedure"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:deliveryLeadTime",
+ "@id": "schema:duns",
"@type": "rdf:Property",
- "rdfs:comment": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup.",
- "rdfs:label": "deliveryLeadTime",
+ "rdfs:comment": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
+ "rdfs:label": "duns",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
"schema:domainIncludes": [
{
- "@id": "schema:Offer"
+ "@id": "schema:Person"
},
{
- "@id": "schema:Demand"
+ "@id": "schema:Organization"
}
],
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Text"
},
"schema:source": {
"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:prescriptionStatus",
+ "@id": "schema:performerIn",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the status of drug prescription eg. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc.",
- "rdfs:label": "prescriptionStatus",
+ "rdfs:comment": "Event that this person is a performer or participant in.",
+ "rdfs:label": "performerIn",
"schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Person"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:DrugPrescriptionStatus"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
+ }
},
{
- "@id": "schema:servicePhone",
+ "@id": "schema:inChIKey",
"@type": "rdf:Property",
- "rdfs:comment": "The phone number to use to access the service.",
- "rdfs:label": "servicePhone",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "InChIKey is a hashed version of the full InChI (using the SHA-256 algorithm).",
+ "rdfs:label": "inChIKey",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasRepresentation"
+ },
"schema:domainIncludes": {
- "@id": "schema:ServiceChannel"
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:ContactPoint"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:interestRate",
+ "@id": "schema:carrier",
"@type": "rdf:Property",
- "rdfs:comment": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate.",
- "rdfs:label": "interestRate",
- "schema:domainIncludes": {
- "@id": "schema:FinancialProduct"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.",
+ "rdfs:label": "carrier",
+ "schema:domainIncludes": [
{
- "@id": "schema:Number"
+ "@id": "schema:ParcelDelivery"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Flight"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:provider"
}
},
{
- "@id": "schema:unitText",
+ "@id": "schema:photo",
"@type": "rdf:Property",
- "rdfs:comment": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.",
- "rdfs:label": "unitText",
- "schema:domainIncludes": [
- {
- "@id": "schema:PropertyValue"
- },
- {
- "@id": "schema:QuantitativeValue"
- },
+ "rdfs:comment": "A photograph of this place.",
+ "rdfs:label": "photo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:image"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:TypeAndQuantityNode"
+ "@id": "schema:Photograph"
},
{
- "@id": "schema:UnitPriceSpecification"
+ "@id": "schema:ImageObject"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ ]
},
{
- "@id": "schema:endDate",
+ "@id": "schema:correction",
"@type": "rdf:Property",
- "rdfs:comment": "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).",
- "rdfs:label": "endDate",
- "schema:domainIncludes": [
- {
- "@id": "schema:EducationalOccupationalProgram"
- },
- {
- "@id": "schema:MerchantReturnPolicySeasonalOverride"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:Role"
- },
- {
- "@id": "schema:DatedMoneySpecification"
- },
+ "rdfs:comment": "Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.",
+ "rdfs:label": "correction",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Schedule"
+ "@id": "schema:Text"
},
{
- "@id": "schema:CreativeWorkSeries"
+ "@id": "schema:CorrectionComment"
}
],
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:DateTime"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "schema:Date"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2486"
+ ]
+ },
+ {
+ "@id": "schema:iupacName",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "Systematic method of naming chemical compounds as recommended by the International Union of Pure and Applied Chemistry (IUPAC).",
+ "rdfs:label": "iupacName",
+ "schema:domainIncludes": {
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:Pulmonary",
+ "@id": "schema:Geriatric",
"@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.",
- "rdfs:label": "Pulmonary",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.",
+ "rdfs:label": "Geriatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:trialDesign",
+ "@id": "schema:returnMethod",
"@type": "rdf:Property",
- "rdfs:comment": "Specifics about the trial design (enumerated).",
- "rdfs:label": "trialDesign",
+ "rdfs:comment": "The type of return method offered, specified from an enumeration.",
+ "rdfs:label": "returnMethod",
"schema:domainIncludes": {
- "@id": "schema:MedicalTrial"
+ "@id": "schema:MerchantReturnPolicy"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalTrialDesign"
+ "@id": "schema:ReturnMethodEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:sensoryUnit",
+ "@id": "schema:supplyTo",
"@type": "rdf:Property",
- "rdfs:comment": "The neurological pathway extension that inputs and sends information to the brain or spinal cord.",
- "rdfs:label": "sensoryUnit",
+ "rdfs:comment": "The area to which the artery supplies blood.",
+ "rdfs:label": "supplyTo",
"schema:domainIncludes": {
- "@id": "schema:Nerve"
+ "@id": "schema:Artery"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:AnatomicalStructure"
- },
- {
- "@id": "schema:SuperficialAnatomy"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ }
},
{
- "@id": "schema:fromLocation",
+ "@id": "schema:alumni",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The original location of the object or the agent before the action.",
- "rdfs:label": "fromLocation",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
+ "rdfs:comment": "Alumni of an organization.",
+ "rdfs:label": "alumni",
"schema:domainIncludes": [
{
- "@id": "schema:TransferAction"
- },
- {
- "@id": "schema:ExerciseAction"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:MoveAction"
+ "@id": "schema:EducationalOrganization"
}
],
+ "schema:inverseOf": {
+ "@id": "schema:alumniOf"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:accessMode",
- "@type": "rdf:Property",
- "rdfs:comment": "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Expected values include: auditory, tactile, textual, visual, colorDependent, chartOnVisual, chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.\n ",
- "rdfs:label": "accessMode",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:AppendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of inserting at the end if an ordered collection.",
+ "rdfs:label": "AppendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InsertAction"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupWomens",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Womens\" for wearables.",
+ "rdfs:label": "WearableSizeGroupWomens",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Occupation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A profession, may involve prolonged training and/or a formal qualification.",
+ "rdfs:label": "Occupation",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:trailerWeight",
+ "@id": "schema:VisualArtwork",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A work of art that is primarily visual in character.",
+ "rdfs:label": "VisualArtwork",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass"
+ }
+ },
+ {
+ "@id": "schema:sdDatePublished",
"@type": "rdf:Property",
- "rdfs:comment": "The permitted weight of a trailer attached to the vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "trailerWeight",
+ "rdfs:comment": "Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]",
+ "rdfs:label": "sdDatePublished",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Date"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
}
},
{
- "@id": "schema:competencyRequired",
+ "@id": "schema:suggestedGender",
"@type": "rdf:Property",
- "rdfs:comment": "Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.",
- "rdfs:label": "competencyRequired",
+ "rdfs:comment": "The suggested gender of the intended person or audience, for example \"male\", \"female\", or \"unisex\".",
+ "rdfs:label": "suggestedGender",
"schema:domainIncludes": [
{
- "@id": "schema:EducationalOccupationalCredential"
+ "@id": "schema:SizeSpecification"
},
{
- "@id": "schema:LearningResource"
+ "@id": "schema:PeopleAudience"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:GenderType"
},
{
"@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ethicsPolicy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.",
+ "rdfs:label": "ethicsPolicy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:NewsMediaOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:CreativeWork"
},
{
"@id": "schema:URL"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
},
{
- "@id": "schema:albumRelease",
+ "@id": "schema:adverseOutcome",
"@type": "rdf:Property",
- "rdfs:comment": "A release of this album.",
- "rdfs:label": "albumRelease",
- "schema:domainIncludes": {
- "@id": "schema:MusicAlbum"
- },
- "schema:inverseOf": {
- "@id": "schema:releaseOf"
+ "rdfs:comment": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or otherwise life-threatening or requiring immediate medical attention), tag it as a seriousAdverseOutcome instead.",
+ "rdfs:label": "adverseOutcome",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:TherapeuticProcedure"
+ },
+ {
+ "@id": "schema:MedicalDevice"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MusicRelease"
+ "@id": "schema:MedicalEntity"
}
},
{
- "@id": "schema:primaryImageOfPage",
+ "@id": "schema:molecularFormula",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the main image on the page.",
- "rdfs:label": "primaryImageOfPage",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "The empirical formula is the simplest whole number ratio of all the atoms in a molecule.",
+ "rdfs:label": "molecularFormula",
"schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:MolecularEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:ImageObject"
- }
- },
- {
- "@id": "schema:RestrictedDiet",
- "@type": "rdfs:Class",
- "rdfs:comment": "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons. ",
- "rdfs:label": "RestrictedDiet",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:releaseDate",
+ "@id": "schema:populationType",
"@type": "rdf:Property",
- "rdfs:comment": "The release date of a product or product model. This can be used to distinguish the exact variant of a product.",
- "rdfs:label": "releaseDate",
+ "rdfs:comment": "Indicates the populationType common to all members of a [[StatisticalPopulation]].",
+ "rdfs:label": "populationType",
"schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Class"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
}
},
{
- "@id": "schema:MedicalStudy",
+ "@id": "schema:RadiationTherapy",
"@type": "rdfs:Class",
- "rdfs:comment": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.",
- "rdfs:label": "MedicalStudy",
+ "rdfs:comment": "A process of care using radiation aimed at improving a health condition.",
+ "rdfs:label": "RadiationTherapy",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:MedicalTherapy"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:MovieClip",
- "@type": "rdfs:Class",
- "rdfs:comment": "A short segment/part of a movie.",
- "rdfs:label": "MovieClip",
- "rdfs:subClassOf": {
- "@id": "schema:Clip"
- }
- },
- {
- "@id": "schema:LymphaticVessel",
- "@type": "rdfs:Class",
- "rdfs:comment": "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.",
- "rdfs:label": "LymphaticVessel",
- "rdfs:subClassOf": {
- "@id": "schema:Vessel"
+ "@id": "schema:leiCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.",
+ "rdfs:label": "leiCode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:FundingAgency",
- "@type": "rdfs:Class",
- "rdfs:comment": "A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages\n the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s).\n A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc.\n \nExamples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation...\n ",
- "rdfs:label": "FundingAgency",
- "rdfs:subClassOf": {
- "@id": "schema:Project"
+ "schema:domainIncludes": {
+ "@id": "schema:Organization"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
"schema:source": [
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#GLEIF"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
]
},
{
- "@id": "schema:clipNumber",
- "@type": "rdf:Property",
- "rdfs:comment": "Position of the clip within an ordered group of clips.",
- "rdfs:label": "clipNumber",
- "rdfs:subPropertyOf": {
- "@id": "schema:position"
- },
- "schema:domainIncludes": {
- "@id": "schema:Clip"
+ "@id": "schema:BodyMeasurementHeight",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Body height (measured between crown of head and soles of feet). Used, for example, to fit jackets.",
+ "rdfs:label": "BodyMeasurementHeight",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Integer"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
},
{
- "@id": "schema:MortgageLoan",
+ "@id": "schema:OfferShippingDetails",
"@type": "rdfs:Class",
- "rdfs:comment": "A loan in which property or real estate is used as collateral. (A loan securitized against some real estate).",
- "rdfs:label": "MortgageLoan",
+ "rdfs:comment": "OfferShippingDetails represents information about shipping destinations.\n\nMultiple of these entities can be used to represent different shipping rates for different destinations:\n\nOne entity for Alaska/Hawaii. A different one for continental US. A different one for all France.\n\nMultiple of these entities can be used to represent different shipping costs and delivery times.\n\nTwo entities that are identical but differ in rate and time:\n\nE.g. Cheaper and slower: $5 in 5-7 days\nor Fast and expensive: $15 in 1-2 days.",
+ "rdfs:label": "OfferShippingDetails",
"rdfs:subClassOf": {
- "@id": "schema:LoanOrCredit"
+ "@id": "schema:StructuredValue"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
},
{
- "@id": "schema:cvdNumC19HospPats",
- "@type": "rdf:Property",
- "rdfs:comment": "numc19hosppats - HOSPITALIZED: Patients currently hospitalized in an inpatient care location who have suspected or confirmed COVID-19.",
- "rdfs:label": "cvdNumC19HospPats",
- "schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
+ "@id": "schema:Nonprofit501c5",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c5: Non-profit type referring to Labor, Agricultural and Horticultural Organizations.",
+ "rdfs:label": "Nonprofit501c5",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:SpeakableSpecification",
- "@type": "rdfs:Class",
- "rdfs:comment": "A SpeakableSpecification indicates (typically via [[xpath]] or [[cssSelector]]) sections of a document that are highlighted as particularly [[speakable]]. Instances of this type are expected to be used primarily as values of the [[speakable]] property.",
- "rdfs:label": "SpeakableSpecification",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Nonprofit501c25",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents.",
+ "rdfs:label": "Nonprofit501c25",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:RestockingFees",
- "@type": "schema:ReturnFeesEnumeration",
- "rdfs:comment": "Specifies that the customer must pay a restocking fee when returning a product",
- "rdfs:label": "RestockingFees",
+ "@id": "schema:MedicalResearcher",
+ "@type": "schema:MedicalAudienceType",
+ "rdfs:comment": "Medical researchers.",
+ "rdfs:label": "MedicalResearcher",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:ServiceChannel",
- "@type": "rdfs:Class",
- "rdfs:comment": "A means for accessing a service, e.g. a government office location, web site, or phone number.",
- "rdfs:label": "ServiceChannel",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:error",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For failed actions, more information on the cause of the failure.",
+ "rdfs:label": "error",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:aircraft",
+ "@id": "schema:transmissionMethod",
"@type": "rdf:Property",
- "rdfs:comment": "The kind of aircraft (e.g., \"Boeing 747\").",
- "rdfs:label": "aircraft",
+ "rdfs:comment": "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.",
+ "rdfs:label": "transmissionMethod",
"schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:InfectiousDisease"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Vehicle"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:founders",
+ "@id": "schema:postalCodeRange",
"@type": "rdf:Property",
- "rdfs:comment": "A person who founded this organization.",
- "rdfs:label": "founders",
+ "rdfs:comment": "A defined range of postal codes.",
+ "rdfs:label": "postalCodeRange",
"schema:domainIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:DefinedRegion"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:PostalCodeRangeSpecification"
},
- "schema:supersededBy": {
- "@id": "schema:founder"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:ImageGallery",
+ "@id": "schema:RadioSeries",
"@type": "rdfs:Class",
- "rdfs:comment": "Web page type: Image gallery page.",
- "rdfs:label": "ImageGallery",
+ "rdfs:comment": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.",
+ "rdfs:label": "RadioSeries",
"rdfs:subClassOf": {
- "@id": "schema:MediaGallery"
+ "@id": "schema:CreativeWorkSeries"
}
},
{
- "@id": "schema:TypeAndQuantityNode",
+ "@id": "schema:MedicalSymptom",
"@type": "rdfs:Class",
- "rdfs:comment": "A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.",
- "rdfs:label": "TypeAndQuantityNode",
+ "rdfs:comment": "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.",
+ "rdfs:label": "MedicalSymptom",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "@id": "schema:MedicalSignOrSymptom"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:inChI",
+ "@id": "schema:sugarContent",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/MolecularEntity"
- },
- "rdfs:comment": "Non-proprietary identifier for molecular entity that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations.",
- "rdfs:label": "inChI",
- "rdfs:subPropertyOf": {
- "@id": "schema:hasRepresentation"
- },
+ "rdfs:comment": "The number of grams of sugar.",
+ "rdfs:label": "sugarContent",
"schema:domainIncludes": {
- "@id": "schema:MolecularEntity"
+ "@id": "schema:NutritionInformation"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c1",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c1: Non-profit type referring to Corporations Organized Under Act of Congress, including Federal Credit Unions and National Farm Loan Associations.",
+ "rdfs:label": "Nonprofit501c1",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:geoWithin",
+ "@id": "schema:breadcrumb",
"@type": "rdf:Property",
- "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
- "rdfs:label": "geoWithin",
- "schema:domainIncludes": [
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:GeospatialGeometry"
- }
- ],
+ "rdfs:comment": "A set of links that can help a user understand and navigate a website hierarchy.",
+ "rdfs:label": "breadcrumb",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:BreadcrumbList"
},
{
- "@id": "schema:Place"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:requirements",
- "@type": "rdf:Property",
- "rdfs:comment": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).",
- "rdfs:label": "requirements",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:SteeringPositionValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A value indicating a steering position.",
+ "rdfs:label": "SteeringPositionValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:QualitativeValue"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- }
- ],
- "schema:supersededBy": {
- "@id": "schema:softwareRequirements"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:AdultEntertainment",
+ "@id": "schema:APIReference",
"@type": "rdfs:Class",
- "rdfs:comment": "An adult entertainment establishment.",
- "rdfs:label": "AdultEntertainment",
+ "rdfs:comment": "Reference documentation for application programming interfaces (APIs).",
+ "rdfs:label": "APIReference",
"rdfs:subClassOf": {
- "@id": "schema:EntertainmentBusiness"
+ "@id": "schema:TechArticle"
}
},
{
- "@id": "schema:targetUrl",
- "@type": "rdf:Property",
- "rdfs:comment": "The URL of a node in an established educational framework.",
- "rdfs:label": "targetUrl",
- "schema:domainIncludes": {
- "@id": "schema:AlignmentObject"
- },
- "schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:Fungus",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic fungus.",
+ "rdfs:label": "Fungus",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:additionalName",
- "@type": "rdf:Property",
- "rdfs:comment": "An additional name for a Person, can be used for a middle name.",
- "rdfs:label": "additionalName",
- "schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:MedicalRiskScore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.",
+ "rdfs:label": "MedicalRiskScore",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalRiskEstimator"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:follows",
+ "@id": "schema:priceComponent",
"@type": "rdf:Property",
- "rdfs:comment": "The most generic uni-directional social relation.",
- "rdfs:label": "follows",
+ "rdfs:comment": "This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node.",
+ "rdfs:label": "priceComponent",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:CompoundPriceSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:MotorcycleRepair",
+ "@id": "schema:CreativeWorkSeries",
"@type": "rdfs:Class",
- "rdfs:comment": "A motorcycle repair shop.",
- "rdfs:label": "MotorcycleRepair",
- "rdfs:subClassOf": {
- "@id": "schema:AutomotiveBusiness"
- }
+ "rdfs:comment": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as TV, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n\t ",
+ "rdfs:label": "CreativeWorkSeries",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Series"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
},
{
- "@id": "schema:WearableMeasurementSleeve",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the sleeve length, for example of a shirt",
- "rdfs:label": "WearableMeasurementSleeve",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Hotel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hotel is an establishment that provides lodging paid on a short-term basis (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Hotel",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:appliesToPaymentMethod",
+ "@id": "schema:quarantineGuidelines",
"@type": "rdf:Property",
- "rdfs:comment": "The payment method(s) to which the payment charge specification applies.",
- "rdfs:label": "appliesToPaymentMethod",
+ "rdfs:comment": "Guidelines about quarantine rules, e.g. in the context of a pandemic.",
+ "rdfs:label": "quarantineGuidelines",
"schema:domainIncludes": {
- "@id": "schema:PaymentChargeSpecification"
+ "@id": "schema:SpecialAnnouncement"
},
- "schema:rangeIncludes": {
- "@id": "schema:PaymentMethod"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:WebContent"
+ }
+ ],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
}
},
{
- "@id": "schema:RsvpResponseYes",
- "@type": "schema:RsvpResponseType",
- "rdfs:comment": "The invitee will attend.",
- "rdfs:label": "RsvpResponseYes"
- },
- {
- "@id": "schema:tissueSample",
+ "@id": "schema:travelBans",
"@type": "rdf:Property",
- "rdfs:comment": "The type of tissue sample required for the test.",
- "rdfs:label": "tissueSample",
+ "rdfs:comment": "Information about travel bans, e.g. in the context of a pandemic.",
+ "rdfs:label": "travelBans",
"schema:domainIncludes": {
- "@id": "schema:PathologyTest"
+ "@id": "schema:SpecialAnnouncement"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:geoIntersects",
- "@type": "rdf:Property",
- "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
- "rdfs:label": "geoIntersects",
- "schema:domainIncludes": [
+ "schema:rangeIncludes": [
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Place"
+ "@id": "schema:WebContent"
}
],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ },
+ {
+ "@id": "schema:AskAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of posing a question / favor to someone.\\n\\nRelated actions:\\n\\n* [[ReplyAction]]: Appears generally as a response to AskAction.",
+ "rdfs:label": "AskAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:target",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a target EntryPoint, or url, for an Action.",
+ "rdfs:label": "target",
+ "schema:domainIncludes": {
+ "@id": "schema:Action"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Place"
+ "@id": "schema:EntryPoint"
}
]
},
{
- "@id": "schema:supportingData",
- "@type": "rdf:Property",
- "rdfs:comment": "Supporting data for a SoftwareApplication.",
- "rdfs:label": "supportingData",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
- },
- "schema:rangeIncludes": {
- "@id": "schema:DataFeed"
+ "@id": "schema:MediaGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Media gallery page. A mixed-media page that can contain media such as images, videos, and other multimedia.",
+ "rdfs:label": "MediaGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:CollectionPage"
}
},
{
- "@id": "schema:CommentAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of generating a comment about a subject.",
- "rdfs:label": "CommentAction",
- "rdfs:subClassOf": {
- "@id": "schema:CommunicateAction"
+ "@id": "schema:validThrough",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.",
+ "rdfs:label": "validThrough",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:City",
+ "@id": "schema:SizeGroupEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A city or town.",
- "rdfs:label": "City",
+ "rdfs:comment": "Enumerates common size groups for various product categories.",
+ "rdfs:label": "SizeGroupEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:InternetCafe",
- "@type": "rdfs:Class",
- "rdfs:comment": "An internet cafe.",
- "rdfs:label": "InternetCafe",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:BodyMeasurementHand",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum hand girth (measured over the knuckles of the open right hand excluding thumb, fingers together). Used, for example, to fit gloves.",
+ "rdfs:label": "BodyMeasurementHand",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:abstract",
- "@type": "rdf:Property",
- "rdfs:comment": "An abstract is a short description that summarizes a [[CreativeWork]].",
- "rdfs:label": "abstract",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:SchoolDistrict",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A School District is an administrative area for the administration of schools.",
+ "rdfs:label": "SchoolDistrict",
+ "rdfs:subClassOf": {
+ "@id": "schema:AdministrativeArea"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/276"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2500"
}
},
{
- "@id": "schema:tool",
+ "@id": "schema:comment",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
- "rdfs:label": "tool",
- "rdfs:subPropertyOf": {
- "@id": "schema:instrument"
- },
+ "rdfs:comment": "Comments, typically from users.",
+ "rdfs:label": "comment",
"schema:domainIncludes": [
{
- "@id": "schema:HowTo"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:HowToDirection"
+ "@id": "schema:RsvpAction"
}
],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:HowToTool"
- }
- ]
- },
- {
- "@id": "schema:PreventionHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.",
- "rdfs:label": "PreventionHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
- }
- },
- {
- "@id": "schema:Renal",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.",
- "rdfs:label": "Renal",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Comment"
}
},
{
- "@id": "schema:numberOfPages",
+ "@id": "schema:trialDesign",
"@type": "rdf:Property",
- "rdfs:comment": "The number of pages in the book.",
- "rdfs:label": "numberOfPages",
+ "rdfs:comment": "Specifics about the trial design (enumerated).",
+ "rdfs:label": "trialDesign",
"schema:domainIncludes": {
- "@id": "schema:Book"
+ "@id": "schema:MedicalTrial"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:MedicalTrialDesign"
}
},
{
- "@id": "schema:TreatmentsHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Treatments or related therapies for a Topic.",
- "rdfs:label": "TreatmentsHealthAspect",
+ "@id": "schema:LinkRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Role that represents a Web link, e.g. as expressed via the 'url' property. Its linkRelationship property can indicate URL-based and plain textual link types, e.g. those in IANA link registry or others such as 'amphtml'. This structure provides a placeholder where details from HTML's link element can be represented outside of HTML, e.g. in JSON-LD feeds.",
+ "rdfs:label": "LinkRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1045"
}
},
{
- "@id": "schema:Festival",
+ "@id": "schema:TVEpisode",
"@type": "rdfs:Class",
- "rdfs:comment": "Event type: Festival.",
- "rdfs:label": "Festival",
+ "rdfs:comment": "A TV episode which can be part of a series or season.",
+ "rdfs:label": "TVEpisode",
"rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:Episode"
}
},
{
- "@id": "schema:logo",
+ "@id": "schema:productID",
"@type": "rdf:Property",
- "rdfs:comment": "An associated logo.",
- "rdfs:label": "logo",
+ "rdfs:comment": "The product identifier, such as ISBN. For example: ``` meta itemprop=\"productID\" content=\"isbn:123-456-789\" ```.",
+ "rdfs:label": "productID",
"rdfs:subPropertyOf": {
- "@id": "schema:image"
+ "@id": "schema:identifier"
},
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:productionCompany",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The production company or studio responsible for the item, e.g. series, video game, episode etc.",
+ "rdfs:label": "productionCompany",
"schema:domainIncludes": [
{
- "@id": "schema:Place"
+ "@id": "schema:MediaObject"
},
{
- "@id": "schema:Product"
+ "@id": "schema:Episode"
},
{
- "@id": "schema:Service"
+ "@id": "schema:VideoGameSeries"
},
{
- "@id": "schema:Brand"
+ "@id": "schema:TVSeries"
},
{
- "@id": "schema:Organization"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
+ "@id": "schema:CreativeWorkSeason"
},
{
- "@id": "schema:ImageObject"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:mpn",
- "@type": "rdf:Property",
- "rdfs:comment": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
- "rdfs:label": "mpn",
- "schema:domainIncludes": [
- {
- "@id": "schema:Demand"
+ "@id": "schema:Movie"
},
{
- "@id": "schema:Product"
+ "@id": "schema:MovieSeries"
},
{
- "@id": "schema:Offer"
+ "@id": "schema:RadioSeries"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Organization"
+ }
+ },
+ {
+ "@id": "schema:FMRadioChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A radio channel that uses FM.",
+ "rdfs:label": "FMRadioChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:RadioChannel"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
}
},
{
- "@id": "schema:validUntil",
+ "@id": "schema:codingSystem",
"@type": "rdf:Property",
- "rdfs:comment": "The date when the item is no longer valid.",
- "rdfs:label": "validUntil",
+ "rdfs:comment": "The coding system, e.g. 'ICD-10'.",
+ "rdfs:label": "codingSystem",
"schema:domainIncludes": {
- "@id": "schema:Permit"
+ "@id": "schema:MedicalCode"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
- }
- },
- {
- "@id": "schema:GeoCoordinates",
- "@type": "rdfs:Class",
- "rdfs:comment": "The geographic coordinates of a place or event.",
- "rdfs:label": "GeoCoordinates",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:VegetarianDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet exclusive of animal meat.",
- "rdfs:label": "VegetarianDiet"
- },
- {
- "@id": "schema:RepaymentSpecification",
- "@type": "rdfs:Class",
- "rdfs:comment": "A structured value representing repayment.",
- "rdfs:label": "RepaymentSpecification",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
+ "@id": "schema:countryOfOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The country of origin of something, including products as well as creative works such as movie and TV content.\n\nIn the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.\n\nIn the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.",
+ "rdfs:label": "countryOfOrigin",
+ "schema:domainIncludes": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:TVSeries"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "schema:TVSeason"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:TVEpisode"
+ },
+ {
+ "@id": "schema:Product"
}
- ]
- },
- {
- "@id": "schema:deathDate",
- "@type": "rdf:Property",
- "rdfs:comment": "Date of death.",
- "rdfs:label": "deathDate",
- "schema:domainIncludes": {
- "@id": "schema:Person"
- },
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Country"
}
},
{
- "@id": "schema:Motel",
- "@type": "rdfs:Class",
- "rdfs:comment": "A motel.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "Motel",
- "rdfs:subClassOf": {
- "@id": "schema:LodgingBusiness"
- }
+ "@id": "schema:WritePermission",
+ "@type": "schema:DigitalDocumentPermissionType",
+ "rdfs:comment": "Permission to write or edit the document.",
+ "rdfs:label": "WritePermission"
},
{
- "@id": "schema:legislationResponsible",
+ "@id": "schema:subEvent",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#responsibility_of"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#responsibility_of"
- },
- "rdfs:comment": "An individual or organization that has some kind of responsibility for the legislation. Typically the ministry who is/was in charge of elaborating the legislation, or the adressee for potential questions about the legislation once it is published.",
- "rdfs:label": "legislationResponsible",
+ "rdfs:comment": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.",
+ "rdfs:label": "subEvent",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:Event"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:superEvent"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- }
- ]
- },
- {
- "@id": "schema:CaseSeries",
- "@type": "schema:MedicalObservationalStudyDesign",
- "rdfs:comment": "A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.",
- "rdfs:label": "CaseSeries",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:ReportageNewsArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing\n news articles which are the result of journalistic news reporting conventions.\n\nIn practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements.\n\nThe [[ReportageNewsArticle]] type is based on a stricter ideal for \"news\" as a work of journalism, with articles based on factual information either observed or verified by the author, or reported and verified from knowledgeable sources. This often includes perspectives from multiple viewpoints on a particular issue (distinguishing news reports from public relations or propaganda). News reports in the [[ReportageNewsArticle]] sense de-emphasize the opinion of the author, with commentary and value judgements typically expressed elsewhere.\n\nA [[ReportageNewsArticle]] which goes deeper into analysis can also be marked with an additional type of [[AnalysisNewsArticle]].\n",
- "rdfs:label": "ReportageNewsArticle",
- "rdfs:subClassOf": {
- "@id": "schema:NewsArticle"
+ "@id": "schema:activityDuration",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Length of time to engage in the activity.",
+ "rdfs:label": "activityDuration",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:Duration"
}
]
},
{
- "@id": "schema:occupancy",
+ "@id": "schema:vatID",
"@type": "rdf:Property",
- "rdfs:comment": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person",
- "rdfs:label": "occupancy",
+ "rdfs:comment": "The Value-added Tax ID of the organization or person.",
+ "rdfs:label": "vatID",
"schema:domainIncludes": [
{
- "@id": "schema:HotelRoom"
- },
- {
- "@id": "schema:SingleFamilyResidence"
- },
- {
- "@id": "schema:Suite"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Apartment"
+ "@id": "schema:Person"
}
],
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:members",
+ "@id": "schema:engineType",
"@type": "rdf:Property",
- "rdfs:comment": "A member of this organization.",
- "rdfs:label": "members",
- "schema:domainIncludes": [
+ "rdfs:comment": "The type of engine or engines powering the vehicle.",
+ "rdfs:label": "engineType",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:ProgramMembership"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Organization"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:QualitativeValue"
}
],
- "schema:supersededBy": {
- "@id": "schema:member"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:resultComment",
+ "@id": "schema:cvdFacilityCounty",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of result. The Comment created or sent as a result of this action.",
- "rdfs:label": "resultComment",
- "rdfs:subPropertyOf": {
- "@id": "schema:result"
+ "rdfs:comment": "Name of the County of the NHSN facility that this data record applies to. Use [[cvdFacilityId]] to identify the facility. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.",
+ "rdfs:label": "cvdFacilityCounty",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:CommentAction"
- },
- {
- "@id": "schema:ReplyAction"
- }
- ],
"schema:rangeIncludes": {
- "@id": "schema:Comment"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:Optometric",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "The science or practice of testing visual acuity and prescribing corrective lenses.",
- "rdfs:label": "Optometric",
+ "@id": "schema:Menu",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured representation of food or drink items available from a FoodEstablishment.",
+ "rdfs:label": "Menu",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:vehicleSeatingCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons.",
+ "rdfs:label": "vehicleSeatingCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:EventReservation",
+ "@id": "schema:Clip",
"@type": "rdfs:Class",
- "rdfs:comment": "A reservation for an event like a concert, sporting event, or lecture.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
- "rdfs:label": "EventReservation",
+ "rdfs:comment": "A short TV or radio program or a segment/part of a program.",
+ "rdfs:label": "Clip",
"rdfs:subClassOf": {
- "@id": "schema:Reservation"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:QuoteAction",
+ "@id": "schema:DownloadAction",
"@type": "rdfs:Class",
- "rdfs:comment": "An agent quotes/estimates/appraises an object/product/service with a price at a location/store.",
- "rdfs:label": "QuoteAction",
+ "rdfs:comment": "The act of downloading an object.",
+ "rdfs:label": "DownloadAction",
"rdfs:subClassOf": {
- "@id": "schema:TradeAction"
+ "@id": "schema:TransferAction"
}
},
{
- "@id": "schema:PublicationVolume",
+ "@id": "schema:UserTweets",
"@type": "rdfs:Class",
- "rdfs:comment": "A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
- "rdfs:label": "PublicationVolume",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserTweets",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:UserInteraction"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
}
},
{
- "@id": "schema:healthPlanNetworkId",
+ "@id": "schema:hasDefinedTerm",
"@type": "rdf:Property",
- "rdfs:comment": "Name or unique ID of network. (Networks are often reused across different insurance plans).",
- "rdfs:label": "healthPlanNetworkId",
+ "rdfs:comment": "A Defined Term contained in this term set.",
+ "rdfs:label": "hasDefinedTerm",
"schema:domainIncludes": [
{
- "@id": "schema:HealthPlanNetwork"
+ "@id": "schema:Taxon"
},
{
- "@id": "schema:MedicalOrganization"
+ "@id": "schema:DefinedTermSet"
}
],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:DefinedTerm"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:totalPrice",
+ "@id": "schema:PaymentStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.",
+ "rdfs:label": "PaymentStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
+ }
+ },
+ {
+ "@id": "schema:valueName",
"@type": "rdf:Property",
- "rdfs:comment": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
- "rdfs:label": "totalPrice",
- "schema:domainIncludes": [
- {
- "@id": "schema:Reservation"
- },
- {
- "@id": "schema:Ticket"
- }
- ],
+ "rdfs:comment": "Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.",
+ "rdfs:label": "valueName",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:credentialCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term.",
+ "rdfs:label": "credentialCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Number"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:PriceSpecification"
+ "@id": "schema:Text"
}
- ]
- },
- {
- "@id": "schema:thumbnailUrl",
- "@type": "rdf:Property",
- "rdfs:comment": "A thumbnail image relevant to the Thing.",
- "rdfs:label": "thumbnailUrl",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": {
- "@id": "schema:URL"
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
}
},
{
- "@id": "schema:RVPark",
- "@type": "rdfs:Class",
- "rdfs:comment": "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.",
- "rdfs:label": "RVPark",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:Anesthesia",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to study of anesthetics and their application.",
+ "rdfs:label": "Anesthesia",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:expertConsiderations",
+ "@id": "schema:overdosage",
"@type": "rdf:Property",
- "rdfs:comment": "Medical expert advice related to the plan.",
- "rdfs:label": "expertConsiderations",
+ "rdfs:comment": "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.",
+ "rdfs:label": "overdosage",
"schema:domainIncludes": {
- "@id": "schema:Diet"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
@@ -24481,767 +24631,667 @@
}
},
{
- "@id": "schema:Downpayment",
- "@type": "schema:PriceComponentTypeEnumeration",
- "rdfs:comment": "Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments.",
- "rdfs:label": "Downpayment",
+ "@id": "schema:WearableSizeSystemCN",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "Chinese size system for wearables.",
+ "rdfs:label": "WearableSizeSystemCN",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:StoreCreditRefund",
- "@type": "schema:RefundTypeEnumeration",
- "rdfs:comment": "Specifies that the customer receives a store credit as refund when returning a product",
- "rdfs:label": "StoreCreditRefund",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:serviceSmsNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number to access the service by text message.",
+ "rdfs:label": "serviceSmsNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:ServiceChannel"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
}
},
{
- "@id": "schema:ResultsAvailable",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Results are available.",
- "rdfs:label": "ResultsAvailable",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:VinylFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "VinylFormat.",
+ "rdfs:label": "VinylFormat",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:countryOfLastProcessing",
+ "@id": "schema:procedure",
"@type": "rdf:Property",
- "rdfs:comment": "The place where the item (typically [[Product]]) was last processed and tested before importation.",
- "rdfs:label": "countryOfLastProcessing",
+ "rdfs:comment": "A description of the procedure involved in setting up, using, and/or installing the device.",
+ "rdfs:label": "procedure",
"schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:MedicalDevice"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/991"
}
},
{
- "@id": "schema:observationDate",
- "@type": "rdf:Property",
- "rdfs:comment": "The observationDate of an [[Observation]].",
- "rdfs:label": "observationDate",
- "schema:domainIncludes": {
- "@id": "schema:Observation"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
- },
+ "@id": "schema:FourWheelDriveConfiguration",
+ "@type": "schema:DriveWheelConfigurationValue",
+ "rdfs:comment": "Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.",
+ "rdfs:label": "FourWheelDriveConfiguration",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:missionCoveragePrioritiesPolicy",
+ "@id": "schema:webFeed",
"@type": "rdf:Property",
- "rdfs:comment": "For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.",
- "rdfs:label": "missionCoveragePrioritiesPolicy",
- "rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
- },
- "schema:domainIncludes": {
- "@id": "schema:NewsMediaOrganization"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom.",
+ "rdfs:label": "webFeed",
+ "schema:domainIncludes": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:SpecialAnnouncement"
},
{
- "@id": "schema:URL"
+ "@id": "schema:PodcastSeries"
}
],
- "schema:source": [
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
- }
- ]
- },
- {
- "@id": "schema:totalPaymentDue",
- "@type": "rdf:Property",
- "rdfs:comment": "The total amount due.",
- "rdfs:label": "totalPaymentDue",
- "schema:domainIncludes": {
- "@id": "schema:Invoice"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:DataFeed"
},
{
- "@id": "schema:PriceSpecification"
+ "@id": "schema:URL"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ }
},
{
- "@id": "schema:description",
+ "@id": "schema:partOfInvoice",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/dc/terms/description"
- },
- "rdfs:comment": "A description of the item.",
- "rdfs:label": "description",
+ "rdfs:comment": "The order is being paid as part of the referenced Invoice.",
+ "rdfs:label": "partOfInvoice",
"schema:domainIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Order"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:AgreeAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.",
- "rdfs:label": "AgreeAction",
- "rdfs:subClassOf": {
- "@id": "schema:ReactAction"
- }
- },
- {
- "@id": "schema:JewelryStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A jewelry store.",
- "rdfs:label": "JewelryStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:Invoice"
}
},
{
- "@id": "schema:priceType",
+ "@id": "schema:availableService",
"@type": "rdf:Property",
- "rdfs:comment": "Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration.",
- "rdfs:label": "priceType",
+ "rdfs:comment": "A medical service available from this provider.",
+ "rdfs:label": "availableService",
"schema:domainIncludes": [
{
- "@id": "schema:CompoundPriceSpecification"
+ "@id": "schema:Physician"
},
{
- "@id": "schema:UnitPriceSpecification"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
+ "@id": "schema:Hospital"
},
{
- "@id": "schema:PriceTypeEnumeration"
+ "@id": "schema:MedicalClinic"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:Ligament",
- "@type": "rdfs:Class",
- "rdfs:comment": "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.",
- "rdfs:label": "Ligament",
- "rdfs:subClassOf": {
- "@id": "schema:AnatomicalStructure"
- },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:numberOfForwardGears",
- "@type": "rdf:Property",
- "rdfs:comment": "The total number of forward gears available for the transmission system of the vehicle.\\n\\nTypical unit code(s): C62",
- "rdfs:label": "numberOfForwardGears",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Number"
+ "@id": "schema:MedicalTherapy"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:MedicalTest"
+ },
+ {
+ "@id": "schema:MedicalProcedure"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
+ ]
},
{
- "@id": "schema:AnimalShelter",
+ "@id": "schema:PerformingArtsTheater",
"@type": "rdfs:Class",
- "rdfs:comment": "Animal shelter.",
- "rdfs:label": "AnimalShelter",
+ "rdfs:comment": "A theater or other performing art center.",
+ "rdfs:label": "PerformingArtsTheater",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:overdosage",
+ "@id": "schema:availableTest",
"@type": "rdf:Property",
- "rdfs:comment": "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.",
- "rdfs:label": "overdosage",
+ "rdfs:comment": "A diagnostic test or procedure offered by this lab.",
+ "rdfs:label": "availableTest",
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:DiagnosticLab"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MedicalTest"
}
},
{
- "@id": "schema:SpecialAnnouncement",
+ "@id": "schema:MedicalDevicePurpose",
"@type": "rdfs:Class",
- "rdfs:comment": "A SpecialAnnouncement combines a simple date-stamped textual information update\n with contextualized Web links and other structured data. It represents an information update made by a\n locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police,\n local government.\n\nFor work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#).\n\nThe motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org\nexpect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our\nusual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#).\n\n\nWhile this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover\nthe kinds of everyday practical information being posted to existing websites during an emergency situation.\n\nSeveral kinds of information can be provided:\n\nWe encourage the provision of \"name\", \"text\", \"datePosted\", \"expires\" (if appropriate), \"category\" and\n\"url\" as a simple baseline. It is important to provide a value for \"category\" where possible, most ideally as a well known\nURL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be \"https://en.wikipedia.org/w/index.php?title=2019-20\\_coronavirus\\_pandemic\" or \"https://www.wikidata.org/wiki/Q81068910\".\n\nFor many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple \"[[text]]\" summary of the page. It is\nunlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously.\n\nWe expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]].\n\nMany [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructure]]s. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]].\n\nThe [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only\nfor representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of /about for locations too.\n\nThe basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting\n[[SpecialAnnouncement]] updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feed\nwith the [[webFeed]] property. This can be a simple URL, or an inline [[DataFeed]] object, with [[encodingFormat]] providing\nmedia type information e.g. \"application/rss+xml\" or \"application/atom+xml\".\n",
- "rdfs:label": "SpecialAnnouncement",
+ "rdfs:comment": "Categories of medical devices, organized by the purpose or intended use of the device.",
+ "rdfs:label": "MedicalDevicePurpose",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:MedicalEnumeration"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:cvdNumICUBeds",
- "@type": "rdf:Property",
- "rdfs:comment": "numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.",
- "rdfs:label": "cvdNumICUBeds",
- "schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
+ "@id": "schema:Zoo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A zoo.",
+ "rdfs:label": "Zoo",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
+ }
+ },
+ {
+ "@id": "schema:BasicIncome",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "BasicIncome: this is a benefit for basic income.",
+ "rdfs:label": "BasicIncome",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
}
},
{
- "@id": "schema:foundingDate",
+ "@id": "schema:Flexibility",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged in to improve joint and muscle flexibility.",
+ "rdfs:label": "Flexibility",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:JoinAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent joins an event/group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.",
+ "rdfs:label": "JoinAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:InteractAction"
+ }
+ },
+ {
+ "@id": "schema:IceCreamShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An ice cream shop.",
+ "rdfs:label": "IceCreamShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:applicationSuite",
"@type": "rdf:Property",
- "rdfs:comment": "The date that this organization was founded.",
- "rdfs:label": "foundingDate",
+ "rdfs:comment": "The name of the application suite to which the application belongs (e.g. Excel belongs to Office).",
+ "rdfs:label": "applicationSuite",
"schema:domainIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:TransitMap",
- "@type": "schema:MapCategoryType",
- "rdfs:comment": "A transit map.",
- "rdfs:label": "TransitMap"
- },
- {
- "@id": "schema:ReturnAction",
+ "@id": "schema:HinduTemple",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).",
- "rdfs:label": "ReturnAction",
+ "rdfs:comment": "A Hindu temple.",
+ "rdfs:label": "HinduTemple",
"rdfs:subClassOf": {
- "@id": "schema:TransferAction"
+ "@id": "schema:PlaceOfWorship"
}
},
{
- "@id": "schema:returnPolicyCategory",
+ "@id": "schema:hasAdultConsideration",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies an applicable return policy (from an enumeration).",
- "rdfs:label": "returnPolicyCategory",
+ "rdfs:comment": "Used to tag an item to be intended or suitable for consumption or use by adults only.",
+ "rdfs:label": "hasAdultConsideration",
"schema:domainIncludes": [
{
- "@id": "schema:MerchantReturnPolicy"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ "@id": "schema:Product"
}
],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MerchantReturnEnumeration"
+ "@id": "schema:AdultOrientedEnumeration"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:sampleType",
+ "@id": "schema:encodesCreativeWork",
"@type": "rdf:Property",
- "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
- "rdfs:label": "sampleType",
+ "rdfs:comment": "The CreativeWork encoded by this media object.",
+ "rdfs:label": "encodesCreativeWork",
"schema:domainIncludes": {
- "@id": "schema:SoftwareSourceCode"
+ "@id": "schema:MediaObject"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:inverseOf": {
+ "@id": "schema:encoding"
},
- "schema:supersededBy": {
- "@id": "schema:codeSampleType"
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:Hardcover",
- "@type": "schema:BookFormatType",
- "rdfs:comment": "Book format: Hardcover.",
- "rdfs:label": "Hardcover"
- },
- {
- "@id": "schema:postOfficeBoxNumber",
+ "@id": "schema:timeRequired",
"@type": "rdf:Property",
- "rdfs:comment": "The post office box number for PO box addresses.",
- "rdfs:label": "postOfficeBoxNumber",
+ "rdfs:comment": "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.",
+ "rdfs:label": "timeRequired",
"schema:domainIncludes": {
- "@id": "schema:PostalAddress"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Duration"
}
},
{
- "@id": "schema:Atlas",
- "@type": "rdfs:Class",
- "rdfs:comment": "A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.",
- "rdfs:label": "Atlas",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:signOrSymptom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.",
+ "rdfs:label": "signOrSymptom",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
},
"schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "http://www.productontology.org/id/Atlas"
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalSignOrSymptom"
}
},
{
- "@id": "schema:petsAllowed",
+ "@id": "schema:significantLinks",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.",
- "rdfs:label": "petsAllowed",
- "schema:domainIncludes": [
- {
- "@id": "schema:LodgingBusiness"
- },
- {
- "@id": "schema:FloorPlan"
- },
- {
- "@id": "schema:Accommodation"
- },
- {
- "@id": "schema:ApartmentComplex"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Boolean"
- }
- ],
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "rdfs:comment": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
+ "rdfs:label": "significantLinks",
+ "schema:domainIncludes": {
+ "@id": "schema:WebPage"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:significantLink"
}
},
{
- "@id": "schema:acquireLicensePage",
+ "@id": "schema:diseasePreventionInfo",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.",
- "rdfs:label": "acquireLicensePage",
- "rdfs:subPropertyOf": {
- "@id": "schema:usageInfo"
- },
+ "rdfs:comment": "Information about disease prevention.",
+ "rdfs:label": "diseasePreventionInfo",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:SpecialAnnouncement"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:WebContent"
},
{
"@id": "schema:URL"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2454"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
}
},
{
- "@id": "schema:contentRating",
+ "@id": "schema:broadcastFrequencyValue",
"@type": "rdf:Property",
- "rdfs:comment": "Official rating of a piece of content—for example,'MPAA PG-13'.",
- "rdfs:label": "contentRating",
+ "rdfs:comment": "The frequency in MHz for a particular broadcast.",
+ "rdfs:label": "broadcastFrequencyValue",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:BroadcastFrequencySpecification"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Rating"
+ "@id": "schema:Number"
},
{
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
}
- ]
- },
- {
- "@id": "schema:MerchantReturnEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerates several kinds of product return policies.",
- "rdfs:label": "MerchantReturnEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
}
},
{
- "@id": "schema:Drawing",
- "@type": "rdfs:Class",
- "rdfs:comment": "A picture or diagram made with a pencil, pen, or crayon rather than paint.",
- "rdfs:label": "Drawing",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
+ "@id": "schema:NarcoticConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item is a narcotic as defined by the [1961 UN convention](https://www.incb.org/incb/en/narcotic-drugs/Yellowlist/yellow-list.html), for example marijuana or heroin.",
+ "rdfs:label": "NarcoticConsideration",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
- }
- },
- {
- "@id": "schema:permissionType",
- "@type": "rdf:Property",
- "rdfs:comment": "The type of permission granted the person, organization, or audience.",
- "rdfs:label": "permissionType",
- "schema:domainIncludes": {
- "@id": "schema:DigitalDocumentPermission"
- },
- "schema:rangeIncludes": {
- "@id": "schema:DigitalDocumentPermissionType"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:FDAcategoryA",
- "@type": "schema:DrugPregnancyCategory",
- "rdfs:comment": "A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).",
- "rdfs:label": "FDAcategoryA",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:CancelAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of asserting that a future event/action is no longer going to happen.\\n\\nRelated actions:\\n\\n* [[ConfirmAction]]: The antonym of CancelAction.",
+ "rdfs:label": "CancelAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlanAction"
}
},
{
- "@id": "schema:numberOfItems",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.",
- "rdfs:label": "numberOfItems",
- "schema:domainIncludes": {
- "@id": "schema:ItemList"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:RadioSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Season dedicated to radio broadcast and associated online delivery.",
+ "rdfs:label": "RadioSeason",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWorkSeason"
}
},
{
- "@id": "schema:artMedium",
- "@type": "rdf:Property",
- "rdfs:comment": "The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)",
- "rdfs:label": "artMedium",
- "rdfs:subPropertyOf": {
- "@id": "schema:material"
- },
- "schema:domainIncludes": {
- "@id": "schema:VisualArtwork"
- },
- "schema:rangeIncludes": [
+ "@id": "schema:Dentist",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A dentist.",
+ "rdfs:label": "Dentist",
+ "rdfs:subClassOf": [
{
- "@id": "schema:Text"
+ "@id": "schema:LocalBusiness"
},
{
- "@id": "schema:URL"
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:MedicalBusiness"
}
]
},
{
- "@id": "schema:minPrice",
- "@type": "rdf:Property",
- "rdfs:comment": "The lowest price if the price is a range.",
- "rdfs:label": "minPrice",
- "schema:domainIncludes": {
- "@id": "schema:PriceSpecification"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:WebPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.",
+ "rdfs:label": "WebPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c11",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c11: Non-profit type referring to Teachers' Retirement Fund Associations.",
+ "rdfs:label": "Nonprofit501c11",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:legislationLegalValue",
+ "@id": "schema:costOrigin",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#legal_value"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#legal_value"
- },
- "rdfs:comment": "The legal value of this legislation file. The same legislation can be written in multiple files with different legal values. Typically a digitally signed PDF have a \"stronger\" legal value than the HTML file of the same act.",
- "rdfs:label": "legislationLegalValue",
+ "rdfs:comment": "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.",
+ "rdfs:label": "costOrigin",
"schema:domainIncludes": {
- "@id": "schema:LegislationObject"
+ "@id": "schema:DrugCost"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:LegalValueLevel"
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:DrugClass",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.",
+ "rdfs:label": "DrugClass",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
},
- "schema:source": [
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
},
{
- "@id": "schema:awards",
+ "@id": "schema:Musculoskeletal",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.",
+ "rdfs:label": "Musculoskeletal",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:episodes",
"@type": "rdf:Property",
- "rdfs:comment": "Awards won by or for this item.",
- "rdfs:label": "awards",
+ "rdfs:comment": "An episode of a TV/radio series or season.",
+ "rdfs:label": "episodes",
"schema:domainIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:CreativeWorkSeason"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:RadioSeries"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:VideoGameSeries"
},
{
- "@id": "schema:Product"
+ "@id": "schema:TVSeries"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Episode"
},
"schema:supersededBy": {
- "@id": "schema:award"
+ "@id": "schema:episode"
}
},
{
- "@id": "schema:workload",
+ "@id": "schema:numberOfPreviousOwners",
"@type": "rdf:Property",
- "rdfs:comment": "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.",
- "rdfs:label": "workload",
+ "rdfs:comment": "The number of owners of the vehicle, including the current one.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfPreviousOwners",
"schema:domainIncludes": {
- "@id": "schema:ExercisePlan"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Vehicle"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Energy"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Number"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
},
{
- "@id": "schema:encodesBioChemEntity",
+ "@id": "schema:Game",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.",
+ "rdfs:label": "Game",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:CityHall",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A city hall.",
+ "rdfs:label": "CityHall",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:requiredMaxAge",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/Gene"
- },
- "rdfs:comment": "Another BioChemEntity encoded by this one. ",
- "rdfs:label": "encodesBioChemEntity",
+ "rdfs:comment": "Audiences defined by a person's maximum age.",
+ "rdfs:label": "requiredMaxAge",
"schema:domainIncludes": {
- "@id": "schema:Gene"
+ "@id": "schema:PeopleAudience"
},
- "schema:inverseOf": {
- "@id": "schema:isEncodedByBioChemEntity"
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ }
+ },
+ {
+ "@id": "schema:PharmacySpecialty",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "The practice or art and science of preparing and dispensing drugs and medicines.",
+ "rdfs:label": "PharmacySpecialty",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:subStageSuffix",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The substage, e.g. 'a' for Stage IIIa.",
+ "rdfs:label": "subStageSuffix",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalConditionStage"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:EventPostponed",
- "@type": "schema:EventStatusType",
- "rdfs:comment": "The event has been postponed and no new date has been set. The event's previousStartDate should be set.",
- "rdfs:label": "EventPostponed"
+ "@id": "schema:significance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.",
+ "rdfs:label": "significance",
+ "schema:domainIncludes": {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:authenticator",
+ "@id": "schema:numConstraints",
"@type": "rdf:Property",
- "rdfs:comment": "The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media.",
- "rdfs:label": "authenticator",
+ "rdfs:comment": "Indicates the number of constraints (not counting [[populationType]]) defined for a particular [[StatisticalPopulation]]. This helps applications understand if they have access to a sufficiently complete description of a [[StatisticalPopulation]].",
+ "rdfs:label": "numConstraints",
"schema:domainIncludes": {
- "@id": "schema:MediaSubscription"
+ "@id": "schema:StatisticalPopulation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:Integer"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
}
},
{
- "@id": "schema:ChemicalSubstance",
- "@type": "rdfs:Class",
- "http://purl.org/dc/terms/source": [
+ "@id": "schema:partOfSeason",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The season to which this episode belongs.",
+ "rdfs:label": "partOfSeason",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
+ "schema:domainIncludes": [
{
- "@id": "http://bioschemas.org"
+ "@id": "schema:Episode"
},
{
- "@id": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999"
+ "@id": "schema:Clip"
}
],
- "rdfs:comment": "A chemical substance is 'a portion of matter of constant composition, composed of molecular entities of the same type or of different types' (source: [ChEBI:59999](https://www.ebi.ac.uk/chebi/searchId.do?chebiId=59999)).",
- "rdfs:label": "ChemicalSubstance",
- "rdfs:subClassOf": {
- "@id": "schema:BioChemEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeason"
}
},
{
- "@id": "schema:numAdults",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of adults staying in the unit.",
- "rdfs:label": "numAdults",
- "schema:domainIncludes": {
- "@id": "schema:LodgingReservation"
- },
- "schema:rangeIncludes": [
+ "@id": "schema:HowToDirection",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A direction indicating a single action to do in the instructions for how to achieve a result.",
+ "rdfs:label": "HowToDirection",
+ "rdfs:subClassOf": [
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Integer"
+ "@id": "schema:ListItem"
}
]
},
{
- "@id": "schema:orderItemNumber",
- "@type": "rdf:Property",
- "rdfs:comment": "The identifier of the order item.",
- "rdfs:label": "orderItemNumber",
- "schema:domainIncludes": {
- "@id": "schema:OrderItem"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:Restaurant",
+ "@id": "schema:MoveAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A restaurant.",
- "rdfs:label": "Restaurant",
+ "rdfs:comment": "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.",
+ "rdfs:label": "MoveAction",
"rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:ProductGroup",
+ "@id": "schema:BuyAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A ProductGroup represents a group of [[Product]]s that vary only in certain well-described ways, such as by [[size]], [[color]], [[material]] etc.\n\nWhile a ProductGroup itself is not directly offered for sale, the various varying products that it represents can be. The ProductGroup serves as a prototype or template, standing in for all of the products who have an [[isVariantOf]] relationship to it. As such, properties (including additional types) can be applied to the ProductGroup to represent characteristics shared by each of the (possibly very many) variants. Properties that reference a ProductGroup are not included in this mechanism; neither are the following specific properties [[variesBy]], [[hasVariant]], [[url]]. ",
- "rdfs:label": "ProductGroup",
+ "rdfs:comment": "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.",
+ "rdfs:label": "BuyAction",
"rdfs:subClassOf": {
- "@id": "schema:Product"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2597"
- }
- },
- {
- "@id": "schema:postalCodeEnd",
- "@type": "rdf:Property",
- "rdfs:comment": "Last postal code in the range (included). Needs to be after [[postalCodeBegin]].",
- "rdfs:label": "postalCodeEnd",
- "schema:domainIncludes": {
- "@id": "schema:PostalCodeRangeSpecification"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "schema:TradeAction"
}
},
{
- "@id": "schema:ShippingDeliveryTime",
- "@type": "rdfs:Class",
- "rdfs:comment": "ShippingDeliveryTime provides various pieces of information about delivery times for shipping.",
- "rdfs:label": "ShippingDeliveryTime",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
+ "@id": "schema:Nonprofit501e",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations.",
+ "rdfs:label": "Nonprofit501e",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:makesOffer",
+ "@id": "schema:knowsLanguage",
"@type": "rdf:Property",
- "rdfs:comment": "A pointer to products or services offered by the organization or person.",
- "rdfs:label": "makesOffer",
+ "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).",
+ "rdfs:label": "knowsLanguage",
"schema:domainIncludes": [
{
"@id": "schema:Organization"
@@ -25250,1768 +25300,1720 @@
"@id": "schema:Person"
}
],
- "schema:inverseOf": {
- "@id": "schema:offeredBy"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Offer"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:numberOfAirbags",
- "@type": "rdf:Property",
- "rdfs:comment": "The number or type of airbags in the vehicle.",
- "rdfs:label": "numberOfAirbags",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
"@id": "schema:Text"
},
{
- "@id": "schema:Number"
+ "@id": "schema:Language"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
- },
- {
- "@id": "schema:isFamilyFriendly",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates whether this content is family friendly.",
- "rdfs:label": "isFamilyFriendly",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
- }
- },
- {
- "@id": "schema:adverseOutcome",
- "@type": "rdf:Property",
- "rdfs:comment": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention), tag it as a seriouseAdverseOutcome instead.",
- "rdfs:label": "adverseOutcome",
- "schema:domainIncludes": [
+ "schema:source": [
{
- "@id": "schema:TherapeuticProcedure"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
},
{
- "@id": "schema:MedicalDevice"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:HearingImpairedSupported",
+ "@type": "schema:ContactPointOption",
+ "rdfs:comment": "Uses devices to support users with hearing impairments.",
+ "rdfs:label": "HearingImpairedSupported"
+ },
+ {
+ "@id": "schema:Nonprofit501c3",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c3: Non-profit type referring to Religious, Educational, Charitable, Scientific, Literary, Testing for Public Safety, Fostering National or International Amateur Sports Competition, or Prevention of Cruelty to Children or Animals Organizations.",
+ "rdfs:label": "Nonprofit501c3",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalEntity"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:WearableSizeGroupShort",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Short\" for wearables.",
- "rdfs:label": "WearableSizeGroupShort",
+ "@id": "schema:Manuscript",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A book, document, or piece of music written by hand rather than typed or printed.",
+ "rdfs:label": "Manuscript",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
}
},
{
- "@id": "schema:Table",
+ "@id": "schema:CompilationAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "CompilationAlbum.",
+ "rdfs:label": "CompilationAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:BookSeries",
"@type": "rdfs:Class",
- "rdfs:comment": "A table on a Web page.",
- "rdfs:label": "Table",
+ "rdfs:comment": "A series of books. Included books can be indicated with the hasPart property.",
+ "rdfs:label": "BookSeries",
"rdfs:subClassOf": {
- "@id": "schema:WebPageElement"
+ "@id": "schema:CreativeWorkSeries"
}
},
{
- "@id": "schema:partOfSeries",
+ "@id": "schema:typicalAgeRange",
"@type": "rdf:Property",
- "rdfs:comment": "The series to which this episode or season belongs.",
- "rdfs:label": "partOfSeries",
- "rdfs:subPropertyOf": {
- "@id": "schema:isPartOf"
- },
+ "rdfs:comment": "The typical expected age range, e.g. '7-9', '11-'.",
+ "rdfs:label": "typicalAgeRange",
"schema:domainIncludes": [
{
- "@id": "schema:Clip"
- },
- {
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Episode"
+ "@id": "schema:Event"
}
],
"schema:rangeIncludes": {
- "@id": "schema:CreativeWorkSeries"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:artist",
+ "@id": "schema:recommendationStrength",
"@type": "rdf:Property",
- "rdfs:comment": "The primary artist for a work\n \tin a medium other than pencils or digital line art--for example, if the\n \tprimary artwork is done in watercolors or digital paints.",
- "rdfs:label": "artist",
+ "rdfs:comment": "Strength of the guideline's recommendation (e.g. 'class I').",
+ "rdfs:label": "recommendationStrength",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuidelineRecommendation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:postalCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The postal code. For example, 94043.",
+ "rdfs:label": "postalCode",
"schema:domainIncludes": [
{
- "@id": "schema:VisualArtwork"
+ "@id": "schema:PostalAddress"
},
{
- "@id": "schema:ComicIssue"
+ "@id": "schema:GeoCoordinates"
},
{
- "@id": "schema:ComicStory"
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:GeoShape"
}
],
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- },
"schema:rangeIncludes": {
- "@id": "schema:Person"
- }
- },
- {
- "@id": "schema:editor",
- "@type": "rdf:Property",
- "rdfs:comment": "Specifies the Person who edited the CreativeWork.",
- "rdfs:label": "editor",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Text"
},
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:encodesCreativeWork",
+ "@id": "schema:cvdNumC19Died",
"@type": "rdf:Property",
- "rdfs:comment": "The CreativeWork encoded by this media object.",
- "rdfs:label": "encodesCreativeWork",
+ "rdfs:comment": "numc19died - DEATHS: Patients with suspected or confirmed COVID-19 who died in the hospital, ED, or any overflow location.",
+ "rdfs:label": "cvdNumC19Died",
"schema:domainIncludes": {
- "@id": "schema:MediaObject"
+ "@id": "schema:CDCPMDRecord"
},
- "schema:inverseOf": {
- "@id": "schema:encoding"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:ActiveNotRecruiting",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Active, but not recruiting new participants.",
- "rdfs:label": "ActiveNotRecruiting",
+ "@id": "schema:ReturnAtKiosk",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be made at a kiosk.",
+ "rdfs:label": "ReturnAtKiosk",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:partOfInvoice",
+ "@id": "schema:totalPrice",
"@type": "rdf:Property",
- "rdfs:comment": "The order is being paid as part of the referenced Invoice.",
- "rdfs:label": "partOfInvoice",
- "schema:domainIncludes": {
- "@id": "schema:Order"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Invoice"
- }
+ "rdfs:comment": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "totalPrice",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:Ticket"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:DrugPrescriptionStatus",
+ "@id": "schema:TouristDestination",
"@type": "rdfs:Class",
- "rdfs:comment": "Indicates whether this drug is available by prescription or over-the-counter.",
- "rdfs:label": "DrugPrescriptionStatus",
+ "rdfs:comment": "A tourist destination. In principle any [[Place]] can be a [[TouristDestination]] from a [[City]], Region or [[Country]] to an [[AmusementPark]] or [[Hotel]]. This Type can be used on its own to describe a general [[TouristDestination]], or be used as an [[additionalType]] to add tourist relevant properties to any other [[Place]]. A [[TouristDestination]] is defined as a [[Place]] that contains, or is colocated with, one or more [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.\n (See examples below.)",
+ "rdfs:label": "TouristDestination",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:Place"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:datePublished",
- "@type": "rdf:Property",
- "rdfs:comment": "Date of first broadcast/publication.",
- "rdfs:label": "datePublished",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:DateTime"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
},
{
- "@id": "schema:Date"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
}
]
},
{
- "@id": "schema:ownedThrough",
+ "@id": "schema:liveBlogUpdate",
"@type": "rdf:Property",
- "rdfs:comment": "The date and time of giving up ownership on the product.",
- "rdfs:label": "ownedThrough",
+ "rdfs:comment": "An update to the LiveBlog.",
+ "rdfs:label": "liveBlogUpdate",
"schema:domainIncludes": {
- "@id": "schema:OwnershipInfo"
+ "@id": "schema:LiveBlogPosting"
},
"schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "@id": "schema:BlogPosting"
+ }
+ },
+ {
+ "@id": "schema:businessDays",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Days of the week when the merchant typically operates, indicated via opening hours markup.",
+ "rdfs:label": "businessDays",
+ "schema:domainIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:CarUsageType",
+ "@id": "schema:RsvpResponseType",
"@type": "rdfs:Class",
- "rdfs:comment": "A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.",
- "rdfs:label": "CarUsageType",
+ "rdfs:comment": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.",
+ "rdfs:label": "RsvpResponseType",
"rdfs:subClassOf": {
"@id": "schema:Enumeration"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:MRI",
- "@type": "schema:MedicalImagingTechnique",
- "rdfs:comment": "Magnetic resonance imaging.",
- "rdfs:label": "MRI",
+ "@id": "schema:RadioBroadcastService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A delivery service through which radio content is provided via broadcast over the air or online.",
+ "rdfs:label": "RadioBroadcastService",
+ "rdfs:subClassOf": {
+ "@id": "schema:BroadcastService"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
}
},
{
- "@id": "schema:MSRP",
- "@type": "schema:PriceTypeEnumeration",
- "rdfs:comment": "Represents the manufacturer suggested retail price (\"MSRP\") of an offered product.",
- "rdfs:label": "MSRP",
+ "@id": "schema:NonprofitType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be.",
+ "rdfs:label": "NonprofitType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:SoundtrackAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "SoundtrackAlbum.",
- "rdfs:label": "SoundtrackAlbum",
+ "@id": "schema:MusicStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music store.",
+ "rdfs:label": "MusicStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:catalogNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The catalog number for the release.",
+ "rdfs:label": "catalogNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:taxonomicRange",
+ "@id": "schema:alignmentType",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org"
+ "rdfs:comment": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.",
+ "rdfs:label": "alignmentType",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
},
- "rdfs:comment": "The taxonomic grouping of the organism that expresses, encodes, or in someway related to the BioChemEntity.",
- "rdfs:label": "taxonomicRange",
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:containedInPlace",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The basic containment relation between a place and one that contains it.",
+ "rdfs:label": "containedInPlace",
"schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:Place"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:containsPlace"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:DefinedTerm"
- },
- {
- "@id": "schema:Taxon"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
+ }
},
{
- "@id": "schema:paymentDueDate",
+ "@id": "schema:genre",
"@type": "rdf:Property",
- "rdfs:comment": "The date that payment is due.",
- "rdfs:label": "paymentDueDate",
+ "rdfs:comment": "Genre of the creative work, broadcast channel or group.",
+ "rdfs:label": "genre",
"schema:domainIncludes": [
{
- "@id": "schema:Invoice"
+ "@id": "schema:BroadcastChannel"
},
{
- "@id": "schema:Order"
+ "@id": "schema:MusicGroup"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:DateTime"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Date"
+ "@id": "schema:URL"
}
]
},
{
- "@id": "schema:sportsActivityLocation",
+ "@id": "schema:itemListOrder",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The sports activity location where this action occurred.",
- "rdfs:label": "sportsActivityLocation",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
+ "rdfs:comment": "Type of ordering (e.g. Ascending, Descending, Unordered).",
+ "rdfs:label": "itemListOrder",
"schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
+ "@id": "schema:ItemList"
},
- "schema:rangeIncludes": {
- "@id": "schema:SportsActivityLocation"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:ItemListOrderType"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:includesHealthPlanNetwork",
+ "@id": "schema:returnShippingFeesAmount",
"@type": "rdf:Property",
- "rdfs:comment": "Networks covered by this plan.",
- "rdfs:label": "includesHealthPlanNetwork",
+ "rdfs:comment": "Amount of shipping costs for product returns (for any reason). Applicable when property [[returnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "returnShippingFeesAmount",
"schema:domainIncludes": {
- "@id": "schema:HealthInsurancePlan"
+ "@id": "schema:MerchantReturnPolicy"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:HealthPlanNetwork"
+ "@id": "schema:MonetaryAmount"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:BorrowAction",
+ "@id": "schema:InstallAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\\n\\nRelated actions:\\n\\n* [[LendAction]]: Reciprocal of BorrowAction.",
- "rdfs:label": "BorrowAction",
+ "rdfs:comment": "The act of installing an application.",
+ "rdfs:label": "InstallAction",
"rdfs:subClassOf": {
- "@id": "schema:TransferAction"
+ "@id": "schema:ConsumeAction"
}
},
{
- "@id": "schema:includedInHealthInsurancePlan",
- "@type": "rdf:Property",
- "rdfs:comment": "The insurance plans that cover this drug.",
- "rdfs:label": "includedInHealthInsurancePlan",
- "schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:Nursing",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A health profession of a person formally educated and trained in the care of the sick or infirm person.",
+ "rdfs:label": "Nursing",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:HealthInsurancePlan"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:gtin12",
+ "@id": "schema:targetCollection",
"@type": "rdf:Property",
- "rdfs:comment": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
- "rdfs:label": "gtin12",
- "rdfs:subPropertyOf": [
- {
- "@id": "schema:identifier"
- },
- {
- "@id": "schema:gtin"
- }
- ],
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:Demand"
- }
- ],
+ "rdfs:comment": "A sub property of object. The collection target of the action.",
+ "rdfs:label": "targetCollection",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:UpdateAction"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:modelDate",
+ "@id": "schema:Message",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single message from a sender to one or more organizations or people.",
+ "rdfs:label": "Message",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:educationalRole",
"@type": "rdf:Property",
- "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
- "rdfs:label": "modelDate",
+ "rdfs:comment": "An educationalRole of an EducationalAudience.",
+ "rdfs:label": "educationalRole",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "schema:EducationalAudience"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:cvdNumC19OFMechVentPats",
+ "@id": "schema:isInvolvedInBiologicalProcess",
"@type": "rdf:Property",
- "rdfs:comment": "numc19ofmechventpats - ED/OVERFLOW and VENTILATED: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed and on a mechanical ventilator.",
- "rdfs:label": "cvdNumC19OFMechVentPats",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
+ },
+ "rdfs:comment": "Biological process this BioChemEntity is involved in; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "isInvolvedInBiologicalProcess",
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
+ "@id": "schema:BioChemEntity"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
- }
- },
- {
- "@id": "schema:ReviewNewsArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [[NewsArticle]] and [[CriticReview]] providing a professional critic's assessment of a service, product, performance, or artistic or literary work.",
- "rdfs:label": "ReviewNewsArticle",
- "rdfs:subClassOf": [
+ "schema:rangeIncludes": [
{
- "@id": "schema:NewsArticle"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:CriticReview"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:PropertyValue"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:URL"
}
]
},
{
- "@id": "schema:HotelRoom",
- "@type": "rdfs:Class",
- "rdfs:comment": "A hotel room is a single room in a hotel.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "HotelRoom",
- "rdfs:subClassOf": {
- "@id": "schema:Room"
+ "@id": "schema:maximumEnrollment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The maximum number of students who may be enrolled in the program.",
+ "rdfs:label": "maximumEnrollment",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
},
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
- }
- },
- {
- "@id": "schema:WearableMeasurementWaist",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the waist section, for example of pants",
- "rdfs:label": "WearableMeasurementWaist",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
}
},
{
- "@id": "schema:hasDeliveryMethod",
+ "@id": "schema:BarOrPub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bar or pub.",
+ "rdfs:label": "BarOrPub",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ }
+ },
+ {
+ "@id": "schema:trainName",
"@type": "rdf:Property",
- "rdfs:comment": "Method used for delivery or shipping.",
- "rdfs:label": "hasDeliveryMethod",
- "schema:domainIncludes": [
- {
- "@id": "schema:ParcelDelivery"
- },
- {
- "@id": "schema:DeliveryEvent"
- }
- ],
+ "rdfs:comment": "The name of the train (e.g. The Orient Express).",
+ "rdfs:label": "trainName",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
+ },
"schema:rangeIncludes": {
- "@id": "schema:DeliveryMethod"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:departureBoatTerminal",
+ "@id": "schema:utterances",
"@type": "rdf:Property",
- "rdfs:comment": "The terminal or port from which the boat departs.",
- "rdfs:label": "departureBoatTerminal",
+ "rdfs:comment": "Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].",
+ "rdfs:label": "utterances",
"schema:domainIncludes": {
- "@id": "schema:BoatTrip"
+ "@id": "schema:HyperTocEntry"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:BoatTerminal"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
}
},
{
- "@id": "schema:iswcCode",
- "@type": "rdf:Property",
- "rdfs:comment": "The International Standard Musical Work Code for the composition.",
- "rdfs:label": "iswcCode",
- "schema:domainIncludes": {
- "@id": "schema:MusicComposition"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
- },
- {
- "@id": "schema:ArchiveOrganization",
+ "@id": "schema:IndividualProduct",
"@type": "rdfs:Class",
- "rdfs:comment": {
- "@language": "en",
- "@value": "An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public."
- },
- "rdfs:label": {
- "@language": "en",
- "@value": "ArchiveOrganization"
- },
+ "rdfs:comment": "A single, identifiable product instance (e.g. a laptop with a particular serial number).",
+ "rdfs:label": "IndividualProduct",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Product"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:liveBlogUpdate",
+ "@id": "schema:suggestedAnswer",
"@type": "rdf:Property",
- "rdfs:comment": "An update to the LiveBlog.",
- "rdfs:label": "liveBlogUpdate",
+ "rdfs:comment": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.",
+ "rdfs:label": "suggestedAnswer",
"schema:domainIncludes": {
- "@id": "schema:LiveBlogPosting"
+ "@id": "schema:Question"
},
- "schema:rangeIncludes": {
- "@id": "schema:BlogPosting"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Answer"
+ },
+ {
+ "@id": "schema:ItemList"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SportsTeam",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Organization: Sports team.",
+ "rdfs:label": "SportsTeam",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsOrganization"
}
},
{
- "@id": "schema:associatedArticle",
+ "@id": "schema:purchaseDate",
"@type": "rdf:Property",
- "rdfs:comment": "A NewsArticle associated with the Media Object.",
- "rdfs:label": "associatedArticle",
- "schema:domainIncludes": {
- "@id": "schema:MediaObject"
- },
+ "rdfs:comment": "The date the item, e.g. vehicle, was purchased by the current owner.",
+ "rdfs:label": "purchaseDate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Vehicle"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:NewsArticle"
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:Claim",
+ "@id": "schema:NewsArticle",
"@type": "rdfs:Class",
- "rdfs:comment": "A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.\n\n Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholarlyArticle]] or [[Question]] might be [[about]] some [[Claim]].\n\n At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.\n ",
- "rdfs:label": "Claim",
+ "rdfs:comment": "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.\n\nA more detailed overview of [schema.org News markup](/docs/news.html) is also available.\n",
+ "rdfs:label": "NewsArticle",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Article"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP-draws"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ }
+ ]
+ },
+ {
+ "@id": "schema:HairSalon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hair salon.",
+ "rdfs:label": "HairSalon",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
}
},
{
- "@id": "schema:previousItem",
+ "@id": "schema:UseAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of applying an object to its intended purpose.",
+ "rdfs:label": "UseAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:reservedTicket",
"@type": "rdf:Property",
- "rdfs:comment": "A link to the ListItem that preceeds the current one.",
- "rdfs:label": "previousItem",
+ "rdfs:comment": "A ticket associated with the reservation.",
+ "rdfs:label": "reservedTicket",
"schema:domainIncludes": {
- "@id": "schema:ListItem"
+ "@id": "schema:Reservation"
},
"schema:rangeIncludes": {
- "@id": "schema:ListItem"
+ "@id": "schema:Ticket"
}
},
{
- "@id": "schema:typeOfBed",
+ "@id": "schema:httpMethod",
"@type": "rdf:Property",
- "rdfs:comment": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.",
- "rdfs:label": "typeOfBed",
+ "rdfs:comment": "An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.",
+ "rdfs:label": "httpMethod",
"schema:domainIncludes": {
- "@id": "schema:BedDetails"
+ "@id": "schema:EntryPoint"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:BedType"
- },
- {
- "@id": "schema:Text"
- }
- ],
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:ProgramMembership",
- "@type": "rdfs:Class",
- "rdfs:comment": "Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.",
- "rdfs:label": "ProgramMembership",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:SoundtrackAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "SoundtrackAlbum.",
+ "rdfs:label": "SoundtrackAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:educationalLevel",
- "@type": "rdf:Property",
- "rdfs:comment": "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.",
- "rdfs:label": "educationalLevel",
- "schema:domainIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
+ "@id": "schema:HowToStep",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.",
+ "rdfs:label": "HowToStep",
+ "rdfs:subClassOf": [
{
- "@id": "schema:LearningResource"
+ "@id": "schema:ItemList"
},
{
- "@id": "schema:EducationEvent"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:EducationalOccupationalCredential"
+ "@id": "schema:ListItem"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:HardwareStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hardware store.",
+ "rdfs:label": "HardwareStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:Virus",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Pathogenic virus that causes viral infection.",
+ "rdfs:label": "Virus",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:DefinedTerm"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:availableAtOrFrom",
- "@type": "rdf:Property",
- "rdfs:comment": "The place(s) from which the offer can be obtained (e.g. store locations).",
- "rdfs:label": "availableAtOrFrom",
- "rdfs:subPropertyOf": {
- "@id": "schema:areaServed"
- },
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Demand"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:EndorsementRating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \"critic's pick\" blog, a\n\"Like\" or \"+1\" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by\nsome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].\n\nAn [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,\nendorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.\n",
+ "rdfs:label": "EndorsementRating",
+ "rdfs:subClassOf": {
+ "@id": "schema:Rating"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1293"
}
},
{
- "@id": "schema:cssSelector",
- "@type": "rdf:Property",
- "rdfs:comment": "A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".",
- "rdfs:label": "cssSelector",
- "schema:domainIncludes": [
- {
- "@id": "schema:SpeakableSpecification"
- },
- {
- "@id": "schema:WebPageElement"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:CssSelectorType"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
+ "@id": "schema:Brewery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Brewery.",
+ "rdfs:label": "Brewery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
}
},
{
- "@id": "schema:PhysicalActivity",
+ "@id": "schema:Country",
"@type": "rdfs:Class",
- "rdfs:comment": "Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.",
- "rdfs:label": "PhysicalActivity",
+ "rdfs:comment": "A country.",
+ "rdfs:label": "Country",
"rdfs:subClassOf": {
- "@id": "schema:LifestyleModification"
+ "@id": "schema:AdministrativeArea"
+ }
+ },
+ {
+ "@id": "schema:BoatTerminal",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A terminal for boats, ships, and other water vessels.",
+ "rdfs:label": "BoatTerminal",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
}
},
{
- "@id": "schema:assesses",
- "@type": "rdf:Property",
- "rdfs:comment": "The item being described is intended to assess the competency or learning outcome defined by the referenced term.",
- "rdfs:label": "assesses",
- "schema:domainIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:EducationEvent"
- },
- {
- "@id": "schema:LearningResource"
- }
- ],
+ "@id": "schema:Play",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A play is a form of literature, usually consisting of dialogue between characters, intended for theatrical performance rather than just reading. Note: A performance of a Play would be a [[TheaterEvent]] or [[BroadcastEvent]] - the *Play* being the [[workPerformed]].",
+ "rdfs:label": "Play",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:DefinedTerm"
- },
- {
- "@id": "schema:Text"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2427"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1816"
}
},
{
- "@id": "schema:webFeed",
+ "@id": "schema:producer",
"@type": "rdf:Property",
- "rdfs:comment": "The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom.",
- "rdfs:label": "webFeed",
- "schema:domainIncludes": [
- {
- "@id": "schema:PodcastSeries"
- },
- {
- "@id": "schema:SpecialAnnouncement"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "rdfs:comment": "The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.).",
+ "rdfs:label": "producer",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": [
{
- "@id": "schema:DataFeed"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Person"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ ]
+ },
+ {
+ "@id": "schema:ParkingFacility",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A parking lot or other parking facility.",
+ "rdfs:label": "ParkingFacility",
+ "rdfs:subClassOf": {
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:ContactPoint",
+ "@id": "schema:MedicalDevice",
"@type": "rdfs:Class",
- "rdfs:comment": "A contact point—for example, a Customer Complaints department.",
- "rdfs:label": "ContactPoint",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/63653004"
+ },
+ "rdfs:comment": "Any object used in a medical capacity, such as to diagnose or treat a patient.",
+ "rdfs:label": "MedicalDevice",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Barcode",
+ "@id": "schema:Winery",
"@type": "rdfs:Class",
- "rdfs:comment": "An image of a visual machine-readable code such as a barcode or QR code.",
- "rdfs:label": "Barcode",
+ "rdfs:comment": "A winery.",
+ "rdfs:label": "Winery",
"rdfs:subClassOf": {
- "@id": "schema:ImageObject"
+ "@id": "schema:FoodEstablishment"
}
},
{
- "@id": "schema:contraindication",
+ "@id": "schema:targetPopulation",
"@type": "rdf:Property",
- "rdfs:comment": "A contraindication for this therapy.",
- "rdfs:label": "contraindication",
+ "rdfs:comment": "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.",
+ "rdfs:label": "targetPopulation",
"schema:domainIncludes": [
{
- "@id": "schema:MedicalTherapy"
+ "@id": "schema:DoseSchedule"
},
{
- "@id": "schema:MedicalDevice"
+ "@id": "schema:DietarySupplement"
}
],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:MedicalContraindication"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:BroadcastService",
+ "@id": "schema:CheckOutAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A delivery service through which content is provided via broadcast over the air or online.",
- "rdfs:label": "BroadcastService",
+ "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check-in) or place (e.g. hotel).\\n\\nRelated actions:\\n\\n* [[CheckInAction]]: The antonym of CheckOutAction.\\n* [[DepartAction]]: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\\n* [[CancelAction]]: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.",
+ "rdfs:label": "CheckOutAction",
"rdfs:subClassOf": {
- "@id": "schema:Service"
+ "@id": "schema:CommunicateAction"
}
},
{
- "@id": "schema:characterAttribute",
+ "@id": "schema:programType",
"@type": "rdf:Property",
- "rdfs:comment": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).",
- "rdfs:label": "characterAttribute",
- "schema:domainIncludes": [
+ "rdfs:comment": "The type of educational or occupational program. For example, classroom, internship, alternance, etc.",
+ "rdfs:label": "programType",
+ "schema:domainIncludes": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Game"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:Text"
}
],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ }
+ },
+ {
+ "@id": "schema:coverageStartTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.",
+ "rdfs:label": "coverageStartTime",
+ "schema:domainIncludes": {
+ "@id": "schema:LiveBlogPosting"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:DateTime"
}
},
{
- "@id": "schema:Nonprofit501a",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501a: Non-profit type referring to Farmers’ Cooperative Associations.",
- "rdfs:label": "Nonprofit501a",
+ "@id": "schema:ArchiveOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "An organization with archival holdings. An organization which keeps and preserves archival material and typically makes it accessible to the public."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "ArchiveOrganization"
+ },
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
}
},
{
- "@id": "schema:legislationJurisdiction",
+ "@id": "schema:bodyType",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#jurisdiction"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#jurisdiction"
- },
- "rdfs:comment": "The jurisdiction from which the legislation originates.",
- "rdfs:label": "legislationJurisdiction",
- "rdfs:subPropertyOf": [
- {
- "@id": "schema:jurisdiction"
- },
- {
- "@id": "schema:spatialCoverage"
- }
- ],
+ "rdfs:comment": "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).",
+ "rdfs:label": "bodyType",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:Vehicle"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://auto.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:URL"
},
{
- "@id": "schema:AdministrativeArea"
- }
- ],
- "schema:source": [
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:QualitativeValue"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:Text"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
},
{
- "@id": "schema:carrierRequirements",
+ "@id": "schema:PaymentPastDue",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment is due and considered late.",
+ "rdfs:label": "PaymentPastDue"
+ },
+ {
+ "@id": "schema:musicGroupMember",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).",
- "rdfs:label": "carrierRequirements",
+ "rdfs:comment": "A member of a music group—for example, John, Paul, George, or Ringo.",
+ "rdfs:label": "musicGroupMember",
"schema:domainIncludes": {
- "@id": "schema:MobileApplication"
+ "@id": "schema:MusicGroup"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:WearableSizeSystemJP",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "Japanese size system for wearables.",
- "rdfs:label": "WearableSizeSystemJP",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Person"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "schema:supersededBy": {
+ "@id": "schema:member"
}
},
{
- "@id": "schema:DatedMoneySpecification",
- "@type": "rdfs:Class",
- "rdfs:comment": "A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]] use of that type is recommended",
- "rdfs:label": "DatedMoneySpecification",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:supersededBy": {
- "@id": "schema:MonetaryAmount"
- }
- },
- {
- "@id": "schema:reportNumber",
+ "@id": "schema:workPresented",
"@type": "rdf:Property",
- "rdfs:comment": "The number or other unique designator assigned to a Report by the publishing organization.",
- "rdfs:label": "reportNumber",
+ "rdfs:comment": "The movie presented during this event.",
+ "rdfs:label": "workPresented",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workFeatured"
+ },
"schema:domainIncludes": {
- "@id": "schema:Report"
+ "@id": "schema:ScreeningEvent"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:cheatCode",
- "@type": "rdf:Property",
- "rdfs:comment": "Cheat codes to the game.",
- "rdfs:label": "cheatCode",
- "schema:domainIncludes": [
- {
- "@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:VideoGame"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:OnDemandEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand.",
- "rdfs:label": "OnDemandEvent",
- "rdfs:subClassOf": {
- "@id": "schema:PublicationEvent"
- }
- },
- {
- "@id": "schema:ArtGallery",
- "@type": "rdfs:Class",
- "rdfs:comment": "An art gallery.",
- "rdfs:label": "ArtGallery",
- "rdfs:subClassOf": {
- "@id": "schema:EntertainmentBusiness"
- }
- },
- {
- "@id": "schema:OrderItem",
- "@type": "rdfs:Class",
- "rdfs:comment": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.",
- "rdfs:label": "OrderItem",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- }
- },
- {
- "@id": "schema:HowToSupply",
- "@type": "rdfs:Class",
- "rdfs:comment": "A supply consumed when performing the instructions for how to achieve a result.",
- "rdfs:label": "HowToSupply",
- "rdfs:subClassOf": {
- "@id": "schema:HowToItem"
+ "@id": "schema:Movie"
}
},
{
- "@id": "schema:ShoppingCenter",
+ "@id": "schema:LoanOrCredit",
"@type": "rdfs:Class",
- "rdfs:comment": "A shopping center or mall.",
- "rdfs:label": "ShoppingCenter",
+ "rdfs:comment": "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges.",
+ "rdfs:label": "LoanOrCredit",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
- }
- },
- {
- "@id": "schema:Sunday",
- "@type": "schema:DayOfWeek",
- "rdfs:comment": "The day of the week between Saturday and Monday.",
- "rdfs:label": "Sunday",
- "schema:sameAs": {
- "@id": "http://www.wikidata.org/entity/Q132"
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:repeatFrequency",
+ "@id": "schema:associatedDisease",
"@type": "rdf:Property",
- "rdfs:comment": "Defines the frequency at which [[Event]]s will occur according to a schedule [[Schedule]]. The intervals between\n events should be defined as a [[Duration]] of time.",
- "rdfs:label": "repeatFrequency",
- "rdfs:subPropertyOf": {
- "@id": "schema:frequency"
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/BioChemEntity"
},
+ "rdfs:comment": "Disease associated to this BioChemEntity. Such disease can be a MedicalCondition or a URL. If you want to add an evidence supporting the association, please use PropertyValue.",
+ "rdfs:label": "associatedDisease",
"schema:domainIncludes": {
- "@id": "schema:Schedule"
+ "@id": "schema:BioChemEntity"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:MedicalCondition"
},
{
- "@id": "schema:Duration"
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:PropertyValue"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
- }
+ ]
},
{
- "@id": "schema:PsychologicalTreatment",
+ "@id": "schema:StatusEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs.",
- "rdfs:label": "PsychologicalTreatment",
+ "rdfs:comment": "Lists or enumerations dealing with status types.",
+ "rdfs:label": "StatusEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:TherapeuticProcedure"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:game",
- "@type": "rdf:Property",
- "rdfs:comment": "Video game which is played on this server.",
- "rdfs:label": "game",
- "schema:domainIncludes": {
- "@id": "schema:GameServer"
- },
- "schema:inverseOf": {
- "@id": "schema:gameServer"
+ "@id": "schema:Enumeration"
},
- "schema:rangeIncludes": {
- "@id": "schema:VideoGame"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2604"
}
},
{
- "@id": "schema:DoubleBlindedTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.",
- "rdfs:label": "DoubleBlindedTrial",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:GroceryStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A grocery store.",
+ "rdfs:label": "GroceryStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:subStructure",
+ "@id": "schema:applicationSubCategory",
"@type": "rdf:Property",
- "rdfs:comment": "Component (sub-)structure(s) that comprise this anatomical structure.",
- "rdfs:label": "subStructure",
+ "rdfs:comment": "Subcategory of the application, e.g. 'Arcade Game'.",
+ "rdfs:label": "applicationSubCategory",
"schema:domainIncludes": {
- "@id": "schema:AnatomicalStructure"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:SoftwareApplication"
},
- "schema:rangeIncludes": {
- "@id": "schema:AnatomicalStructure"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:billingDuration",
+ "@id": "schema:includesObject",
"@type": "rdf:Property",
- "rdfs:comment": "Specifies for how long this price (or price component) will be billed. Can be used, for example, to model the contractual duration of a subscription or payment plan. Type can be either a Duration or a Number (in which case the unit of measurement, for example month, is specified by the unitCode property).",
- "rdfs:label": "billingDuration",
- "schema:domainIncludes": {
- "@id": "schema:UnitPriceSpecification"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "This links to a node or nodes indicating the exact quantity of the products included in an [[Offer]] or [[ProductCollection]].",
+ "rdfs:label": "includesObject",
+ "schema:domainIncludes": [
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:Duration"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:Number"
+ "@id": "schema:ProductCollection"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
- }
- },
- {
- "@id": "schema:athlete",
- "@type": "rdf:Property",
- "rdfs:comment": "A person that acts as performing member of a sports team; a player as opposed to a coach.",
- "rdfs:label": "athlete",
- "schema:domainIncludes": {
- "@id": "schema:SportsTeam"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
- }
- },
- {
- "@id": "schema:OrderStatus",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerated status values for Order.",
- "rdfs:label": "OrderStatus",
- "rdfs:subClassOf": {
- "@id": "schema:StatusEnumeration"
- }
- },
- {
- "@id": "schema:albums",
- "@type": "rdf:Property",
- "rdfs:comment": "A collection of music albums.",
- "rdfs:label": "albums",
- "schema:domainIncludes": {
- "@id": "schema:MusicGroup"
- },
"schema:rangeIncludes": {
- "@id": "schema:MusicAlbum"
- },
- "schema:supersededBy": {
- "@id": "schema:album"
- }
- },
- {
- "@id": "schema:scheduledPaymentDate",
- "@type": "rdf:Property",
- "rdfs:comment": "The date the invoice is scheduled to be paid.",
- "rdfs:label": "scheduledPaymentDate",
- "schema:domainIncludes": {
- "@id": "schema:Invoice"
+ "@id": "schema:TypeAndQuantityNode"
},
- "schema:rangeIncludes": {
- "@id": "schema:Date"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:mainEntity",
+ "@id": "schema:schemaVersion",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the primary entity described in some page or other CreativeWork.",
- "rdfs:label": "mainEntity",
- "rdfs:subPropertyOf": {
- "@id": "schema:about"
- },
+ "rdfs:comment": "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to\n indicate the use of a specific schema.org release, e.g. ```10.0``` as a simple string, or more explicitly via URL, ```https://schema.org/docs/releases.html#v10.0```. There may be situations in which other schemas might usefully be referenced this way, e.g. ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/``` but this has not been carefully explored in the community.",
+ "rdfs:label": "schemaVersion",
"schema:domainIncludes": {
"@id": "schema:CreativeWork"
},
- "schema:inverseOf": {
- "@id": "schema:mainEntityOfPage"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Thing"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:printEdition",
- "@type": "rdf:Property",
- "rdfs:comment": "The edition of the print product in which the NewsArticle appears.",
- "rdfs:label": "printEdition",
- "schema:domainIncludes": {
- "@id": "schema:NewsArticle"
+ "@id": "schema:EffectivenessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the effectiveness-related aspects of a health topic.",
+ "rdfs:label": "EffectivenessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
}
},
{
- "@id": "schema:creditedTo",
+ "@id": "schema:audience",
"@type": "rdf:Property",
- "rdfs:comment": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga.",
- "rdfs:label": "creditedTo",
- "schema:domainIncludes": {
- "@id": "schema:MusicRelease"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "An intended audience, i.e. a group for whom something was created.",
+ "rdfs:label": "audience",
+ "schema:domainIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Product"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:PlayAction"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
- },
- {
- "@id": "schema:studySubject",
- "@type": "rdf:Property",
- "rdfs:comment": "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.",
- "rdfs:label": "studySubject",
- "schema:domainIncludes": {
- "@id": "schema:MedicalStudy"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
"schema:rangeIncludes": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:Audience"
}
},
{
- "@id": "schema:broadcastTimezone",
+ "@id": "schema:parentItem",
"@type": "rdf:Property",
- "rdfs:comment": "The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts",
- "rdfs:label": "broadcastTimezone",
+ "rdfs:comment": "The parent of a question, answer or item in general.",
+ "rdfs:label": "parentItem",
"schema:domainIncludes": {
- "@id": "schema:BroadcastService"
+ "@id": "schema:Comment"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Comment"
}
},
{
- "@id": "schema:width",
+ "@id": "schema:gamePlatform",
"@type": "rdf:Property",
- "rdfs:comment": "The width of the item.",
- "rdfs:label": "width",
+ "rdfs:comment": "The electronic systems used to play video games.",
+ "rdfs:label": "gamePlatform",
"schema:domainIncludes": [
{
- "@id": "schema:VisualArtwork"
- },
- {
- "@id": "schema:Product"
+ "@id": "schema:VideoGame"
},
{
- "@id": "schema:MediaObject"
+ "@id": "schema:VideoGameSeries"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Distance"
+ "@id": "schema:Thing"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:GiveAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\\n\\nRelated actions:\\n\\n* [[TakeAction]]: Reciprocal of GiveAction.\\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).",
- "rdfs:label": "GiveAction",
- "rdfs:subClassOf": {
- "@id": "schema:TransferAction"
- }
- },
- {
- "@id": "schema:ResearchOrganization",
+ "@id": "schema:OccupationalTherapy",
"@type": "rdfs:Class",
- "rdfs:comment": "A Research Organization (e.g. scientific institute, research company).",
- "rdfs:label": "ResearchOrganization",
+ "rdfs:comment": "A treatment of people with physical, emotional, or social problems, using purposeful activity to help them overcome or learn to deal with their problems.",
+ "rdfs:label": "OccupationalTherapy",
"rdfs:subClassOf": {
- "@id": "schema:Organization"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:MedicalTherapy"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2877"
- }
- },
- {
- "@id": "schema:CT",
- "@type": "schema:MedicalImagingTechnique",
- "rdfs:comment": "X-ray computed tomography imaging.",
- "rdfs:label": "CT",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:EndorsementRating",
- "@type": "rdfs:Class",
- "rdfs:comment": "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \"critic's pick\" blog, a\n\"Like\" or \"+1\" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by\nsome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].\n\nAn [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,\nendorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.\n",
- "rdfs:label": "EndorsementRating",
- "rdfs:subClassOf": {
- "@id": "schema:Rating"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1293"
- }
- },
- {
- "@id": "schema:RiverBodyOfWater",
- "@type": "rdfs:Class",
- "rdfs:comment": "A river (for example, the broad majestic Shannon).",
- "rdfs:label": "RiverBodyOfWater",
- "rdfs:subClassOf": {
- "@id": "schema:BodyOfWater"
- }
- },
- {
- "@id": "schema:TouristInformationCenter",
- "@type": "rdfs:Class",
- "rdfs:comment": "A tourist information center.",
- "rdfs:label": "TouristInformationCenter",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
- }
+ "@id": "schema:VenueMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A venue map (e.g. for malls, auditoriums, museums, etc.).",
+ "rdfs:label": "VenueMap"
},
{
- "@id": "schema:circle",
+ "@id": "schema:courseCode",
"@type": "rdf:Property",
- "rdfs:comment": "A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.",
- "rdfs:label": "circle",
+ "rdfs:comment": "The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).",
+ "rdfs:label": "courseCode",
"schema:domainIncludes": {
- "@id": "schema:GeoShape"
+ "@id": "schema:Course"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:correction",
+ "@id": "schema:EventMovedOnline",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online.",
+ "rdfs:label": "EventMovedOnline"
+ },
+ {
+ "@id": "schema:functionalClass",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.",
- "rdfs:label": "correction",
+ "rdfs:comment": "The degree of mobility the joint allows.",
+ "rdfs:label": "functionalClass",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Joint"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:CorrectionComment"
+ "@id": "schema:MedicalEntity"
},
{
"@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ],
- "schema:source": [
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1950"
}
]
},
{
- "@id": "schema:additionalVariable",
- "@type": "rdf:Property",
- "rdfs:comment": "Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.",
- "rdfs:label": "additionalVariable",
- "schema:domainIncludes": {
- "@id": "schema:ExercisePlan"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Barcode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An image of a visual machine-readable code such as a barcode or QR code.",
+ "rdfs:label": "Barcode",
+ "rdfs:subClassOf": {
+ "@id": "schema:ImageObject"
}
},
{
- "@id": "schema:BookFormatType",
+ "@id": "schema:VeterinaryCare",
"@type": "rdfs:Class",
- "rdfs:comment": "The publication format of the book.",
- "rdfs:label": "BookFormatType",
+ "rdfs:comment": "A vet's office.",
+ "rdfs:label": "VeterinaryCare",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:MedicalOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:timeRequired",
+ "@id": "schema:encoding",
"@type": "rdf:Property",
- "rdfs:comment": "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.",
- "rdfs:label": "timeRequired",
+ "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.",
+ "rdfs:label": "encoding",
"schema:domainIncludes": {
"@id": "schema:CreativeWork"
},
+ "schema:inverseOf": {
+ "@id": "schema:encodesCreativeWork"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Duration"
+ "@id": "schema:MediaObject"
}
},
{
- "@id": "schema:hasBroadcastChannel",
+ "@id": "schema:ingredients",
"@type": "rdf:Property",
- "rdfs:comment": "A broadcast channel of a broadcast service.",
- "rdfs:label": "hasBroadcastChannel",
- "schema:domainIncludes": {
- "@id": "schema:BroadcastService"
+ "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
+ "rdfs:label": "ingredients",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:supply"
},
- "schema:inverseOf": {
- "@id": "schema:providesBroadcastService"
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
},
"schema:rangeIncludes": {
- "@id": "schema:BroadcastChannel"
+ "@id": "schema:Text"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ "schema:supersededBy": {
+ "@id": "schema:recipeIngredient"
}
},
{
- "@id": "schema:musicGroupMember",
- "@type": "rdf:Property",
- "rdfs:comment": "A member of a music group—for example, John, Paul, George, or Ringo.",
- "rdfs:label": "musicGroupMember",
- "schema:domainIncludes": {
- "@id": "schema:MusicGroup"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
- },
- "schema:supersededBy": {
- "@id": "schema:member"
+ "@id": "schema:BeautySalon",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Beauty salon.",
+ "rdfs:label": "BeautySalon",
+ "rdfs:subClassOf": {
+ "@id": "schema:HealthAndBeautyBusiness"
}
},
{
- "@id": "schema:HousePainter",
+ "@id": "schema:Vehicle",
"@type": "rdfs:Class",
- "rdfs:comment": "A house painting service.",
- "rdfs:label": "HousePainter",
+ "rdfs:comment": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.",
+ "rdfs:label": "Vehicle",
"rdfs:subClassOf": {
- "@id": "schema:HomeAndConstructionBusiness"
+ "@id": "schema:Product"
}
},
{
- "@id": "schema:dateVehicleFirstRegistered",
- "@type": "rdf:Property",
- "rdfs:comment": "The date of the first registration of the vehicle with the respective public authorities.",
- "rdfs:label": "dateVehicleFirstRegistered",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Date"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:WebSite",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.",
+ "rdfs:label": "WebSite",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:BodyMeasurementArm",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Arm length (measured between arms/shoulder line intersection and the prominent wrist bone). Used, for example, to fit shirts.",
- "rdfs:label": "BodyMeasurementArm",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "schema:Place",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Entities that have a somewhat fixed, physical extension.",
+ "rdfs:label": "Place",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:gracePeriod",
+ "@id": "schema:correctionsPolicy",
"@type": "rdf:Property",
- "rdfs:comment": "The period of time after any due date that the borrower has to fulfil its obligations before a default (failure to pay) is deemed to have occurred.",
- "rdfs:label": "gracePeriod",
- "schema:domainIncludes": {
- "@id": "schema:LoanOrCredit"
+ "rdfs:comment": "For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.",
+ "rdfs:label": "correctionsPolicy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:publishingPrinciples"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:NewsMediaOrganization"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Duration"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
"schema:source": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
]
},
{
- "@id": "schema:TextDigitalDocument",
+ "@id": "schema:UserInteraction",
"@type": "rdfs:Class",
- "rdfs:comment": "A file composed primarily of text.",
- "rdfs:label": "TextDigitalDocument",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserInteraction",
"rdfs:subClassOf": {
- "@id": "schema:DigitalDocument"
+ "@id": "schema:Event"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
}
},
{
- "@id": "schema:DislikeAction",
+ "@id": "schema:Electrician",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.",
- "rdfs:label": "DislikeAction",
+ "rdfs:comment": "An electrician.",
+ "rdfs:label": "Electrician",
"rdfs:subClassOf": {
- "@id": "schema:ReactAction"
+ "@id": "schema:HomeAndConstructionBusiness"
}
},
{
- "@id": "schema:VoteAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of expressing a preference from a fixed/finite/structured set of choices/options.",
- "rdfs:label": "VoteAction",
- "rdfs:subClassOf": {
- "@id": "schema:ChooseAction"
+ "@id": "schema:EUEnergyEfficiencyCategoryE",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class E as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryE",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:postalCodePrefix",
+ "@id": "schema:publisherImprint",
"@type": "rdf:Property",
- "rdfs:comment": "A defined range of postal codes indicated by a common textual prefix. Used for non-numeric systems such as UK.",
- "rdfs:label": "postalCodePrefix",
+ "rdfs:comment": "The publishing division which published the comic.",
+ "rdfs:label": "publisherImprint",
"schema:domainIncludes": {
- "@id": "schema:DefinedRegion"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://bib.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:PreOrder",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item is available for pre-order.",
- "rdfs:label": "PreOrder"
+ "@id": "schema:BusinessEntityType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Business\\n* http://purl.org/goodrelations/v1#Enduser\\n* http://purl.org/goodrelations/v1#PublicInstitution\\n* http://purl.org/goodrelations/v1#Reseller\n\t ",
+ "rdfs:label": "BusinessEntityType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
},
{
- "@id": "schema:keywords",
+ "@id": "schema:attendee",
"@type": "rdf:Property",
- "rdfs:comment": "Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.",
- "rdfs:label": "keywords",
+ "rdfs:comment": "A person or organization attending the event.",
+ "rdfs:label": "attendee",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Event"
},
"schema:rangeIncludes": [
{
- "@id": "schema:DefinedTerm"
- },
- {
- "@id": "schema:URL"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:nonProprietaryName",
+ "@id": "schema:possibleTreatment",
"@type": "rdf:Property",
- "rdfs:comment": "The generic name of this drug or supplement.",
- "rdfs:label": "nonProprietaryName",
+ "rdfs:comment": "A possible treatment to address this condition, sign or symptom.",
+ "rdfs:label": "possibleTreatment",
"schema:domainIncludes": [
{
- "@id": "schema:DietarySupplement"
+ "@id": "schema:MedicalSignOrSymptom"
},
{
- "@id": "schema:Drug"
+ "@id": "schema:MedicalCondition"
}
],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MedicalTherapy"
}
},
{
- "@id": "schema:healthPlanCoinsuranceRate",
+ "@id": "schema:ReturnAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).",
+ "rdfs:label": "ReturnAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:PerformanceRole",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.",
+ "rdfs:label": "PerformanceRole",
+ "rdfs:subClassOf": {
+ "@id": "schema:Role"
+ }
+ },
+ {
+ "@id": "schema:MedicalBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include different businesses run by health professionals.",
+ "rdfs:label": "MedicalBusiness",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalClinic",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well.",
+ "rdfs:label": "MedicalClinic",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalBusiness"
+ },
+ {
+ "@id": "schema:MedicalOrganization"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Protein",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Protein is here used in its widest possible definition, as classes of amino acid based molecules. Amyloid-beta Protein in human (UniProt P05067), eukaryota (e.g. an OrthoDB group) or even a single molecule that one can point to are all of type schema:Protein. A protein can thus be a subclass of another protein, e.g. schema:Protein as a UniProt record can have multiple isoforms inside it which would also be schema:Protein. They can be imagined, synthetic, hypothetical or naturally occurring.",
+ "rdfs:label": "Protein",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:normalRange",
"@type": "rdf:Property",
- "rdfs:comment": "Whether The rate of coinsurance expressed as a number between 0.0 and 1.0.",
- "rdfs:label": "healthPlanCoinsuranceRate",
+ "rdfs:comment": "Range of acceptable values for a typical patient, when applicable.",
+ "rdfs:label": "normalRange",
"schema:domainIncludes": {
- "@id": "schema:HealthPlanCostSharingSpecification"
+ "@id": "schema:MedicalTest"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ]
+ },
+ {
+ "@id": "schema:TrackAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent tracks an object for updates.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\\n* [[SubscribeAction]]: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects.",
+ "rdfs:label": "TrackAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:FindAction"
+ }
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The price for the delivery of an offer using a particular delivery method.",
+ "rdfs:label": "DeliveryChargeSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:PriceSpecification"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:incentiveCompensation",
+ "@id": "schema:departureAirport",
"@type": "rdf:Property",
- "rdfs:comment": "Description of bonus and commission compensation aspects of the job.",
- "rdfs:label": "incentiveCompensation",
+ "rdfs:comment": "The airport where the flight originates.",
+ "rdfs:label": "departureAirport",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:Flight"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Airport"
}
},
{
- "@id": "schema:legislationType",
- "@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#type_document"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#type_document"
- },
- "rdfs:comment": "The type of the legislation. Examples of values are \"law\", \"act\", \"directive\", \"decree\", \"regulation\", \"statutory instrument\", \"loi organique\", \"règlement grand-ducal\", etc., depending on the country.",
- "rdfs:label": "legislationType",
- "rdfs:subPropertyOf": {
- "@id": "schema:genre"
- },
- "schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:ComicIssue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Individual comic issues are serially published as\n \tpart of a larger series. For the sake of consistency, even one-shot issues\n \tbelong to a series comprised of a single issue. All comic issues can be\n \tuniquely identified by: the combination of the name and volume number of the\n \tseries to which the issue belongs; the issue number; and the variant\n \tdescription of the issue (if any).",
+ "rdfs:label": "ComicIssue",
+ "rdfs:subClassOf": {
+ "@id": "schema:PublicationIssue"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "@id": "https://bib.schema.org"
+ }
+ },
+ {
+ "@id": "schema:bodyLocation",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Location in the body of the anatomical structure.",
+ "rdfs:label": "bodyLocation",
+ "schema:domainIncludes": [
{
- "@id": "schema:CategoryCode"
+ "@id": "schema:MedicalProcedure"
},
{
- "@id": "schema:Text"
+ "@id": "schema:AnatomicalStructure"
}
],
- "schema:source": [
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:medicalAudience",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Medical audience for page.",
+ "rdfs:label": "medicalAudience",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalWebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:MedicalAudience"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:MedicalAudienceType"
}
]
},
{
- "@id": "schema:loanTerm",
+ "@id": "schema:AgreeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "AgreeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:ActiveNotRecruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Active, but not recruiting new participants.",
+ "rdfs:label": "ActiveNotRecruiting",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Tuesday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Monday and Wednesday.",
+ "rdfs:label": "Tuesday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q127"
+ }
+ },
+ {
+ "@id": "schema:messageAttachment",
"@type": "rdf:Property",
- "rdfs:comment": "The duration of the loan or credit agreement.",
- "rdfs:label": "loanTerm",
- "rdfs:subPropertyOf": {
- "@id": "schema:duration"
+ "rdfs:comment": "A CreativeWork attached to the message.",
+ "rdfs:label": "messageAttachment",
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:itemDefectReturnShippingFeesAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Amount of shipping costs for defect product returns. Applicable when property [[itemDefectReturnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "itemDefectReturnShippingFeesAmount",
"schema:domainIncludes": {
- "@id": "schema:LoanOrCredit"
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:MonetaryAmount"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:PawnShop",
- "@type": "rdfs:Class",
- "rdfs:comment": "A shop that will buy, or lend money against the security of, personal possessions.",
- "rdfs:label": "PawnShop",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:Protozoa",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Single-celled organism that causes an infection.",
+ "rdfs:label": "Protozoa",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:OrganizeAction",
+ "@id": "schema:LeisureTimeActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.",
+ "rdfs:label": "LeisureTimeActivity",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:AcceptAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of manipulating/administering/supervising/controlling one or more objects.",
- "rdfs:label": "OrganizeAction",
+ "rdfs:comment": "The act of committing to/adopting an object.\\n\\nRelated actions:\\n\\n* [[RejectAction]]: The antonym of AcceptAction.",
+ "rdfs:label": "AcceptAction",
"rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:AllocateAction"
}
},
{
- "@id": "schema:LegislationObject",
- "@type": "rdfs:Class",
- "http://www.w3.org/2004/02/skos/core#closeMatch": {
- "@id": "http://data.europa.eu/eli/ontology#Format"
+ "@id": "schema:duringMedia",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A media object representing the circumstances while performing this direction.",
+ "rdfs:label": "duringMedia",
+ "schema:domainIncludes": {
+ "@id": "schema:HowToDirection"
},
- "rdfs:comment": "A specific object or file containing a Legislation. Note that the same Legislation can be published in multiple files. For example, a digitally signed PDF, a plain PDF and an HTML version.",
- "rdfs:label": "LegislationObject",
- "rdfs:subClassOf": [
+ "schema:rangeIncludes": [
{
"@id": "schema:MediaObject"
},
{
- "@id": "schema:Legislation"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:URL"
}
]
},
{
- "@id": "schema:WearableMeasurementWidth",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the width, for example of shoes",
- "rdfs:label": "WearableMeasurementWidth",
+ "@id": "schema:Permit",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permit issued by an organization, e.g. a parking pass.",
+ "rdfs:label": "Permit",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c27",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations.",
+ "rdfs:label": "Nonprofit501c27",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:Prion",
- "@type": "schema:InfectiousAgentClass",
- "rdfs:comment": "A prion is an infectious agent composed of protein in a misfolded form.",
- "rdfs:label": "Prion",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:EventStatusType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.",
+ "rdfs:label": "EventStatusType",
+ "rdfs:subClassOf": {
+ "@id": "schema:StatusEnumeration"
}
},
{
@@ -27035,1474 +27037,1349 @@
}
},
{
- "@id": "schema:termCode",
- "@type": "rdf:Property",
- "rdfs:comment": "A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]",
- "rdfs:label": "termCode",
- "schema:domainIncludes": {
- "@id": "schema:DefinedTerm"
- },
+ "@id": "schema:AlcoholConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item contains alcohol or promotes alcohol consumption.",
+ "rdfs:label": "AlcoholConsideration",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:offeredBy",
+ "@id": "schema:maxValue",
"@type": "rdf:Property",
- "rdfs:comment": "A pointer to the organization or person making the offer.",
- "rdfs:label": "offeredBy",
- "schema:domainIncludes": {
- "@id": "schema:Offer"
- },
- "schema:inverseOf": {
- "@id": "schema:makesOffer"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The upper value of some characteristic or property.",
+ "rdfs:label": "maxValue",
+ "schema:domainIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:Person"
- }
- ]
- },
- {
- "@id": "schema:carrier",
- "@type": "rdf:Property",
- "rdfs:comment": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights.",
- "rdfs:label": "carrier",
- "schema:domainIncludes": [
+ "@id": "schema:PropertyValueSpecification"
+ },
{
- "@id": "schema:ParcelDelivery"
+ "@id": "schema:PropertyValue"
},
{
- "@id": "schema:Flight"
+ "@id": "schema:MonetaryAmount"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:Number"
},
- "schema:supersededBy": {
- "@id": "schema:provider"
- }
- },
- {
- "@id": "schema:OfferItemCondition",
- "@type": "rdfs:Class",
- "rdfs:comment": "A list of possible conditions for the item.",
- "rdfs:label": "OfferItemCondition",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:FailedActionStatus",
- "@type": "schema:ActionStatusType",
- "rdfs:comment": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure.",
- "rdfs:label": "FailedActionStatus"
- },
- {
- "@id": "schema:possibleTreatment",
+ "@id": "schema:logo",
"@type": "rdf:Property",
- "rdfs:comment": "A possible treatment to address this condition, sign or symptom.",
- "rdfs:label": "possibleTreatment",
+ "rdfs:comment": "An associated logo.",
+ "rdfs:label": "logo",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:image"
+ },
"schema:domainIncludes": [
{
- "@id": "schema:MedicalCondition"
+ "@id": "schema:Brand"
},
{
- "@id": "schema:MedicalSignOrSymptom"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalTherapy"
- }
- },
- {
- "@id": "schema:KosherDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet conforming to Jewish dietary practices.",
- "rdfs:label": "KosherDiet"
- },
- {
- "@id": "schema:latitude",
- "@type": "rdf:Property",
- "rdfs:comment": "The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).",
- "rdfs:label": "latitude",
- "schema:domainIncludes": [
+ "@id": "schema:Service"
+ },
{
- "@id": "schema:Place"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:GeoCoordinates"
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Place"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:ImageObject"
},
{
- "@id": "schema:Number"
+ "@id": "schema:URL"
}
- ]
- },
- {
- "@id": "schema:originalMediaContextDescription",
- "@type": "rdf:Property",
- "rdfs:comment": "Describes, in a [[MediaReview]] when dealing with [[DecontextualizedContent]], background information that can contribute to better interpretation of the [[MediaObject]].",
- "rdfs:label": "originalMediaContextDescription",
- "rdfs:subPropertyOf": {
- "@id": "schema:description"
- },
- "schema:domainIncludes": {
- "@id": "schema:MediaReview"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
- }
- },
- {
- "@id": "schema:bookFormat",
- "@type": "rdf:Property",
- "rdfs:comment": "The format of the book.",
- "rdfs:label": "bookFormat",
- "schema:domainIncludes": {
- "@id": "schema:Book"
- },
- "schema:rangeIncludes": {
- "@id": "schema:BookFormatType"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:RealEstateListing",
+ "@id": "schema:CDCPMDRecord",
"@type": "rdfs:Class",
- "rdfs:comment": "A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out, or to sell).\n The [[RealEstateListing]] type itself represents the overall listing, as manifested in some [[WebPage]].\n ",
- "rdfs:label": "RealEstateListing",
+ "rdfs:comment": "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n definitions used as the source here.\n ",
+ "rdfs:label": "CDCPMDRecord",
"rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:StructuredValue"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:HowToItem",
+ "@id": "schema:MensClothingStore",
"@type": "rdfs:Class",
- "rdfs:comment": "An item used as either a tool or supply when performing the instructions for how to to achieve a result.",
- "rdfs:label": "HowToItem",
+ "rdfs:comment": "A men's clothing store.",
+ "rdfs:label": "MensClothingStore",
"rdfs:subClassOf": {
- "@id": "schema:ListItem"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:elevation",
+ "@id": "schema:geoCrosses",
"@type": "rdf:Property",
- "rdfs:comment": "The elevation of a location ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). Values may be of the form 'NUMBER UNIT_OF_MEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.",
- "rdfs:label": "elevation",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCrosses",
"schema:domainIncludes": [
{
- "@id": "schema:GeoShape"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:GeoCoordinates"
+ "@id": "schema:Place"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:Number"
+ "@id": "schema:Place"
}
]
},
{
- "@id": "schema:MedicalOrganization",
+ "@id": "schema:Room",
"@type": "rdfs:Class",
- "rdfs:comment": "A medical organization (physical or not), such as hospital, institution or clinic.",
- "rdfs:label": "MedicalOrganization",
+ "rdfs:comment": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Room",
"rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:status",
+ "@id": "schema:CollegeOrUniversity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A college, university, or other third-level educational institution.",
+ "rdfs:label": "CollegeOrUniversity",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
+ }
+ },
+ {
+ "@id": "schema:passengerPriorityStatus",
"@type": "rdf:Property",
- "rdfs:comment": "The status of the study (enumerated).",
- "rdfs:label": "status",
- "schema:domainIncludes": [
- {
- "@id": "schema:MedicalCondition"
- },
- {
- "@id": "schema:MedicalProcedure"
- },
- {
- "@id": "schema:MedicalStudy"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "rdfs:comment": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).",
+ "rdfs:label": "passengerPriorityStatus",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
},
"schema:rangeIncludes": [
{
"@id": "schema:Text"
},
{
- "@id": "schema:MedicalStudyStatus"
- },
- {
- "@id": "schema:EventStatusType"
+ "@id": "schema:QualitativeValue"
}
]
},
{
- "@id": "schema:address",
+ "@id": "schema:numberOfPlayers",
"@type": "rdf:Property",
- "rdfs:comment": "Physical address of the item.",
- "rdfs:label": "address",
+ "rdfs:comment": "Indicate how many people can play this game (minimum, maximum, or range).",
+ "rdfs:label": "numberOfPlayers",
"schema:domainIncludes": [
{
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:GeoCoordinates"
+ "@id": "schema:Game"
},
{
- "@id": "schema:GeoShape"
+ "@id": "schema:VideoGameSeries"
}
],
- "schema:rangeIncludes": [
- {
- "@id": "schema:PostalAddress"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
},
{
- "@id": "schema:MedicalTherapy",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.",
- "rdfs:label": "MedicalTherapy",
- "rdfs:subClassOf": {
- "@id": "schema:TherapeuticProcedure"
+ "@id": "schema:biomechnicalClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The biomechanical properties of the bone.",
+ "rdfs:label": "biomechnicalClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Joint"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:accommodationCategory",
+ "@id": "schema:reservationId",
"@type": "rdf:Property",
- "rdfs:comment": "Category of an [[Accommodation]], following real estate conventions e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).",
- "rdfs:label": "accommodationCategory",
- "rdfs:subPropertyOf": {
- "@id": "schema:category"
- },
+ "rdfs:comment": "A unique identifier for the reservation.",
+ "rdfs:label": "reservationId",
"schema:domainIncludes": {
- "@id": "schema:Accommodation"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Reservation"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:EducationalAudience",
+ "@id": "schema:SheetMusic",
"@type": "rdfs:Class",
- "rdfs:comment": "An EducationalAudience.",
- "rdfs:label": "EducationalAudience",
+ "rdfs:comment": "Printed music, as opposed to performed or recorded music.",
+ "rdfs:label": "SheetMusic",
"rdfs:subClassOf": {
- "@id": "schema:Audience"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
}
},
{
- "@id": "schema:dissolutionDate",
+ "@id": "schema:signDetected",
"@type": "rdf:Property",
- "rdfs:comment": "The date that this organization was dissolved.",
- "rdfs:label": "dissolutionDate",
+ "rdfs:comment": "A sign detected by the test.",
+ "rdfs:label": "signDetected",
"schema:domainIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:MedicalSign"
}
},
{
- "@id": "schema:currenciesAccepted",
+ "@id": "schema:doseValue",
"@type": "rdf:Property",
- "rdfs:comment": "The currency accepted.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".",
- "rdfs:label": "currenciesAccepted",
+ "rdfs:comment": "The value of the dose, e.g. 500.",
+ "rdfs:label": "doseValue",
"schema:domainIncludes": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ }
+ ]
+ },
+ {
+ "@id": "schema:archiveHeld",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "Collection, [fonds](https://en.wikipedia.org/wiki/Fonds), or item held, kept or maintained by an [[ArchiveOrganization]]."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "archiveHeld"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:ArchiveOrganization"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:holdingArchive"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:ArchiveComponent"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
}
},
{
- "@id": "schema:equal",
+ "@id": "schema:acrissCode",
"@type": "rdf:Property",
- "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is equal to the object.",
- "rdfs:label": "equal",
- "schema:domainIncludes": {
- "@id": "schema:QualitativeValue"
+ "rdfs:comment": "The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards.",
+ "rdfs:label": "acrissCode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:BusOrCoach"
+ },
+ {
+ "@id": "schema:Car"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:PriceComponentTypeEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerates different price components that together make up the total price for an offered product.",
- "rdfs:label": "PriceComponentTypeEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:appearance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an occurrence of a [[Claim]] in some [[CreativeWork]].",
+ "rdfs:label": "appearance",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workExample"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Claim"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
}
},
{
- "@id": "schema:OTC",
- "@type": "schema:DrugPrescriptionStatus",
- "rdfs:comment": "The character of a medical substance, typically a medicine, of being available over the counter or not.",
- "rdfs:label": "OTC",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:answerCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of answers this question has received.",
+ "rdfs:label": "answerCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Question"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:SizeSpecification",
+ "@id": "schema:transFatContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of trans fat.",
+ "rdfs:label": "transFatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:WPAdBlock",
"@type": "rdfs:Class",
- "rdfs:comment": "Size related properties of a product, typically a size code ([[name]]) and optionally a [[sizeSystem]], [[sizeGroup]], and product measurements ([[hasMeasurement]]). In addition, the intended audience can be defined through [[suggestedAge]], [[suggestedGender]], and suggested body measurements ([[suggestedMeasurement]]).",
- "rdfs:label": "SizeSpecification",
+ "rdfs:comment": "An advertising section of the page.",
+ "rdfs:label": "WPAdBlock",
"rdfs:subClassOf": {
- "@id": "schema:QualitativeValue"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "schema:WebPageElement"
}
},
{
- "@id": "schema:Chapter",
+ "@id": "schema:UserBlocks",
"@type": "rdfs:Class",
- "rdfs:comment": "One of the sections into which a book is divided. A chapter usually has a section number or a name.",
- "rdfs:label": "Chapter",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserBlocks",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:UserInteraction"
},
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
}
},
{
- "@id": "schema:Wednesday",
- "@type": "schema:DayOfWeek",
- "rdfs:comment": "The day of the week between Tuesday and Thursday.",
- "rdfs:label": "Wednesday",
- "schema:sameAs": {
- "@id": "http://www.wikidata.org/entity/Q128"
+ "@id": "schema:SeaBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A sea (for example, the Caspian sea).",
+ "rdfs:label": "SeaBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
}
},
{
- "@id": "schema:returnPolicyCountry",
+ "@id": "schema:interactionService",
"@type": "rdf:Property",
- "rdfs:comment": "The country where the product has to be sent to for returns, for example \"Ireland\" using the [[name]] property of [[Country]]. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). Note that this can be different from the country where the product was originally shipped from or sent too.",
- "rdfs:label": "returnPolicyCountry",
+ "rdfs:comment": "The WebSite or SoftwareApplication where the interactions took place.",
+ "rdfs:label": "interactionService",
"schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:InteractionCounter"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Country"
+ "@id": "schema:WebSite"
},
{
- "@id": "schema:Text"
+ "@id": "schema:SoftwareApplication"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:WearableMeasurementWidth",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the width, for example of shoes",
+ "rdfs:label": "WearableMeasurementWidth",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:awayTeam",
+ "@id": "schema:orderNumber",
"@type": "rdf:Property",
- "rdfs:comment": "The away team in a sports event.",
- "rdfs:label": "awayTeam",
+ "rdfs:comment": "The identifier of the transaction.",
+ "rdfs:label": "orderNumber",
"rdfs:subPropertyOf": {
- "@id": "schema:competitor"
+ "@id": "schema:identifier"
},
"schema:domainIncludes": {
- "@id": "schema:SportsEvent"
+ "@id": "schema:Order"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:SportsTeam"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:maps",
- "@type": "rdf:Property",
- "rdfs:comment": "A URL to a map of the place.",
- "rdfs:label": "maps",
- "schema:domainIncludes": {
- "@id": "schema:Place"
- },
- "schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:DeliveryMethod",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\\n* http://purl.org/goodrelations/v1#DeliveryModeMail\\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
+ "rdfs:label": "DeliveryMethod",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
- "schema:supersededBy": {
- "@id": "schema:hasMap"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:serviceOperator",
+ "@id": "schema:beneficiaryBank",
"@type": "rdf:Property",
- "rdfs:comment": "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.",
- "rdfs:label": "serviceOperator",
+ "rdfs:comment": "A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary.",
+ "rdfs:label": "beneficiaryBank",
"schema:domainIncludes": {
- "@id": "schema:GovernmentService"
+ "@id": "schema:MoneyTransfer"
},
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
- }
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:BankOrCreditUnion"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
},
{
- "@id": "schema:warrantyScope",
+ "@id": "schema:accessibilityAPI",
"@type": "rdf:Property",
- "rdfs:comment": "The scope of the warranty promise.",
- "rdfs:label": "warrantyScope",
+ "rdfs:comment": "Indicates that the resource is compatible with the referenced accessibility API. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).",
+ "rdfs:label": "accessibilityAPI",
"schema:domainIncludes": {
- "@id": "schema:WarrantyPromise"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:WarrantyScope"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:physiologicalBenefits",
+ "@id": "schema:sdPublisher",
"@type": "rdf:Property",
- "rdfs:comment": "Specific physiologic benefits associated to the plan.",
- "rdfs:label": "physiologicalBenefits",
+ "rdfs:comment": "Indicates the party responsible for generating and publishing the current structured data markup, typically in cases where the structured data is derived automatically from existing published content but published on a different site. For example, student projects and open data initiatives often re-publish existing content with more explicitly structured metadata. The\n[[sdPublisher]] property helps make such practices more explicit.",
+ "rdfs:label": "sdPublisher",
"schema:domainIncludes": {
- "@id": "schema:Diet"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
}
},
{
- "@id": "schema:EventVenue",
+ "@id": "schema:fuelType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.",
+ "rdfs:label": "fuelType",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Vehicle"
+ },
+ {
+ "@id": "schema:EngineSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:QualitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:VisualArtsEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "An event venue.",
- "rdfs:label": "EventVenue",
+ "rdfs:comment": "Event type: Visual arts event.",
+ "rdfs:label": "VisualArtsEvent",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:PotentialActionStatus",
- "@type": "schema:ActionStatusType",
- "rdfs:comment": "A description of an action that is supported.",
- "rdfs:label": "PotentialActionStatus"
+ "@id": "schema:Language",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]].",
+ "rdfs:label": "Language",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
},
{
- "@id": "schema:birthDate",
+ "@id": "schema:acceptsReservations",
"@type": "rdf:Property",
- "rdfs:comment": "Date of birth.",
- "rdfs:label": "birthDate",
+ "rdfs:comment": "Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```.",
+ "rdfs:label": "acceptsReservations",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:FoodEstablishment"
},
- "schema:rangeIncludes": {
- "@id": "schema:Date"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ]
},
{
- "@id": "schema:PublicSwimmingPool",
+ "@id": "schema:TollFree",
+ "@type": "schema:ContactPointOption",
+ "rdfs:comment": "The associated telephone number is toll free.",
+ "rdfs:label": "TollFree"
+ },
+ {
+ "@id": "schema:PathologyTest",
"@type": "rdfs:Class",
- "rdfs:comment": "A public swimming pool.",
- "rdfs:label": "PublicSwimmingPool",
+ "rdfs:comment": "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.",
+ "rdfs:label": "PathologyTest",
"rdfs:subClassOf": {
- "@id": "schema:SportsActivityLocation"
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:byMonthWeek",
- "@type": "rdf:Property",
- "rdfs:comment": "Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month.",
- "rdfs:label": "byMonthWeek",
- "schema:domainIncludes": {
- "@id": "schema:Schedule"
+ "@id": "schema:DrugPrescriptionStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Indicates whether this drug is available by prescription or over-the-counter.",
+ "rdfs:label": "DrugPrescriptionStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2599"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:item",
+ "@id": "schema:startOffset",
"@type": "rdf:Property",
- "rdfs:comment": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')’.",
- "rdfs:label": "item",
+ "rdfs:comment": "The start time of the clip expressed as the number of seconds from the beginning of the work.",
+ "rdfs:label": "startOffset",
"schema:domainIncludes": [
{
- "@id": "schema:DataFeedItem"
+ "@id": "schema:Clip"
},
{
- "@id": "schema:ListItem"
+ "@id": "schema:SeekToAction"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:HyperTocEntry"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2021"
}
},
{
- "@id": "schema:validFrom",
+ "@id": "schema:eligibleRegion",
"@type": "rdf:Property",
- "rdfs:comment": "The date when the item becomes valid.",
- "rdfs:label": "validFrom",
+ "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\\n\\nSee also [[ineligibleRegion]].\n ",
+ "rdfs:label": "eligibleRegion",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:areaServed"
+ },
"schema:domainIncludes": [
{
- "@id": "schema:LocationFeatureSpecification"
+ "@id": "schema:DeliveryChargeSpecification"
},
{
- "@id": "schema:OpeningHoursSpecification"
+ "@id": "schema:Demand"
},
{
"@id": "schema:Offer"
},
{
- "@id": "schema:Permit"
- },
+ "@id": "schema:ActionAccessSpecification"
+ }
+ ],
+ "schema:rangeIncludes": [
{
- "@id": "schema:Demand"
+ "@id": "schema:Place"
},
{
- "@id": "schema:PriceSpecification"
+ "@id": "schema:Text"
},
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:GeoShape"
}
],
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:DateTime"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
},
{
- "@id": "schema:Date"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
+ ]
},
{
- "@id": "schema:BodyMeasurementHand",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Maximum hand girth (measured over the knuckles of the open right hand excluding thumb, fingers together). Used, for example, to fit gloves.",
- "rdfs:label": "BodyMeasurementHand",
+ "@id": "schema:countryOfLastProcessing",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The place where the item (typically [[Product]]) was last processed and tested before importation.",
+ "rdfs:label": "countryOfLastProcessing",
+ "schema:domainIncludes": {
+ "@id": "schema:Product"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/991"
}
},
{
- "@id": "schema:exerciseRelatedDiet",
+ "@id": "schema:codeSampleType",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of instrument. The diet used in this action.",
- "rdfs:label": "exerciseRelatedDiet",
- "rdfs:subPropertyOf": {
- "@id": "schema:instrument"
- },
+ "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
+ "rdfs:label": "codeSampleType",
"schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:SoftwareSourceCode"
},
"schema:rangeIncludes": {
- "@id": "schema:Diet"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:industry",
+ "@id": "schema:seasons",
"@type": "rdf:Property",
- "rdfs:comment": "The industry associated with the job position.",
- "rdfs:label": "industry",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "A season in a media series.",
+ "rdfs:label": "seasons",
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:TVSeries"
},
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWorkSeason"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:season"
+ }
},
{
- "@id": "schema:hasCategoryCode",
+ "@id": "schema:opens",
"@type": "rdf:Property",
- "rdfs:comment": "A Category code contained in this code set.",
- "rdfs:label": "hasCategoryCode",
- "rdfs:subPropertyOf": {
- "@id": "schema:hasDefinedTerm"
- },
+ "rdfs:comment": "The opening hour of the place or service on the given day(s) of the week.",
+ "rdfs:label": "opens",
"schema:domainIncludes": {
- "@id": "schema:CategoryCodeSet"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:OpeningHoursSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:CategoryCode"
+ "@id": "schema:Time"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:WearableSizeSystemDE",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "German size system for wearables.",
- "rdfs:label": "WearableSizeSystemDE",
+ "@id": "schema:DrivingSchoolVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the vehicle for driving school.",
+ "rdfs:label": "DrivingSchoolVehicleUsage",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://auto.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:ContactPage",
+ "@id": "schema:Offer",
"@type": "rdfs:Class",
- "rdfs:comment": "Web page type: Contact page.",
- "rdfs:label": "ContactPage",
+ "rdfs:comment": "An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\\n\\nNote: As the [[businessFunction]] property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\\n\\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/).",
+ "rdfs:label": "Offer",
"rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:VideoObjectSnapshot",
+ "@id": "schema:BodyMeasurementTypeEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A specific and exact (byte-for-byte) version of a [[VideoObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
- "rdfs:label": "VideoObjectSnapshot",
+ "rdfs:comment": "Enumerates types (or dimensions) of a person's body measurements, for example for fitting of clothes.",
+ "rdfs:label": "BodyMeasurementTypeEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:VideoObject"
+ "@id": "schema:MeasurementTypeEnumeration"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:VirtualLocation",
+ "@id": "schema:VideoGameSeries",
"@type": "rdfs:Class",
- "rdfs:comment": "An online or virtual location for attending events. For example, one may attend an online seminar or educational event. While a virtual location may be used as the location of an event, virtual locations should not be confused with physical locations in the real world.",
- "rdfs:label": "VirtualLocation",
+ "rdfs:comment": "A video game series.",
+ "rdfs:label": "VideoGameSeries",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ "@id": "schema:CreativeWorkSeries"
}
},
{
- "@id": "schema:Pond",
+ "@id": "schema:OnDemandEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "A pond.",
- "rdfs:label": "Pond",
+ "rdfs:comment": "A publication event, e.g. catch-up TV or radio podcast, during which a program is available on-demand.",
+ "rdfs:label": "OnDemandEvent",
"rdfs:subClassOf": {
- "@id": "schema:BodyOfWater"
+ "@id": "schema:PublicationEvent"
}
},
{
- "@id": "schema:ListPrice",
- "@type": "schema:PriceTypeEnumeration",
- "rdfs:comment": "Represents the list price (the price a product is actually advertised for) of an offered product.",
- "rdfs:label": "ListPrice",
+ "@id": "schema:Pulmonary",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.",
+ "rdfs:label": "Pulmonary",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:audience",
+ "@id": "schema:rangeIncludes",
"@type": "rdf:Property",
- "rdfs:comment": "An intended audience, i.e. a group for whom something was created.",
- "rdfs:label": "audience",
- "schema:domainIncludes": [
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:Service"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:LodgingBusiness"
- },
- {
- "@id": "schema:PlayAction"
- }
- ],
+ "rdfs:comment": "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.",
+ "rdfs:label": "rangeIncludes",
+ "schema:domainIncludes": {
+ "@id": "schema:Property"
+ },
+ "schema:isPartOf": {
+ "@id": "https://meta.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Audience"
+ "@id": "schema:Class"
}
},
{
- "@id": "schema:cvdNumC19MechVentPats",
+ "@id": "schema:returnPolicySeasonalOverride",
"@type": "rdf:Property",
- "rdfs:comment": "numc19mechventpats - HOSPITALIZED and VENTILATED: Patients hospitalized in an NHSN inpatient care location who have suspected or confirmed COVID-19 and are on a mechanical ventilator.",
- "rdfs:label": "cvdNumC19MechVentPats",
+ "rdfs:comment": "Seasonal override of a return policy.",
+ "rdfs:label": "returnPolicySeasonalOverride",
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
+ "@id": "schema:MerchantReturnPolicy"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:disambiguatingDescription",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
- "rdfs:label": "disambiguatingDescription",
- "rdfs:subPropertyOf": {
- "@id": "schema:description"
- },
- "schema:domainIncludes": {
- "@id": "schema:Thing"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "@id": "schema:HealthClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A health club.",
+ "rdfs:label": "HealthClub",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:HealthAndBeautyBusiness"
+ },
+ {
+ "@id": "schema:SportsActivityLocation"
+ }
+ ]
},
{
- "@id": "schema:ActionStatusType",
- "@type": "rdfs:Class",
- "rdfs:comment": "The status of an Action.",
- "rdfs:label": "ActionStatusType",
- "rdfs:subClassOf": {
- "@id": "schema:StatusEnumeration"
+ "@id": "schema:StagedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'staged content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'staged content': A video that has been created using actors or similarly contrived.\n\nFor an [[ImageObject]] to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[ImageObject]] with embedded text to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[AudioObject]] to be 'staged content': Audio that has been created using actors or similarly contrived.\n",
+ "rdfs:label": "StagedContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:UserCheckins",
+ "@id": "schema:LegalService",
"@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserCheckins",
+ "rdfs:comment": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).",
+ "rdfs:label": "LegalService",
"rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
- },
- "schema:supersededBy": {
- "@id": "schema:InteractionCounter"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:IngredientsHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content discussing ingredients-related aspects of a health topic.",
- "rdfs:label": "IngredientsHealthAspect",
+ "@id": "schema:Nonprofit501c9",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c9: Non-profit type referring to Voluntary Employee Beneficiary Associations.",
+ "rdfs:label": "Nonprofit501c9",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:availableLanguage",
+ "@id": "schema:providerMobility",
"@type": "rdf:Property",
- "rdfs:comment": "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]",
- "rdfs:label": "availableLanguage",
- "schema:domainIncludes": [
- {
- "@id": "schema:ServiceChannel"
- },
- {
- "@id": "schema:TouristAttraction"
- },
- {
- "@id": "schema:ContactPoint"
- },
- {
- "@id": "schema:LodgingBusiness"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Language"
- }
- ]
+ "rdfs:comment": "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').",
+ "rdfs:label": "providerMobility",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:value",
- "@type": "rdf:Property",
- "rdfs:comment": "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
- "rdfs:label": "value",
- "schema:domainIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:PropertyValue"
- },
- {
- "@id": "schema:MonetaryAmount"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Number"
- },
- {
- "@id": "schema:Boolean"
- },
- {
- "@id": "schema:StructuredValue"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:EmailMessage",
- "@type": "rdfs:Class",
- "rdfs:comment": "An email message.",
- "rdfs:label": "EmailMessage",
- "rdfs:subClassOf": {
- "@id": "schema:Message"
- }
- },
- {
- "@id": "schema:PeopleAudience",
+ "@id": "schema:FastFoodRestaurant",
"@type": "rdfs:Class",
- "rdfs:comment": "A set of characteristics belonging to people, e.g. who compose an item's target audience.",
- "rdfs:label": "PeopleAudience",
+ "rdfs:comment": "A fast-food restaurant.",
+ "rdfs:label": "FastFoodRestaurant",
"rdfs:subClassOf": {
- "@id": "schema:Audience"
+ "@id": "schema:FoodEstablishment"
}
},
{
- "@id": "schema:referencesOrder",
+ "@id": "schema:honorificPrefix",
"@type": "rdf:Property",
- "rdfs:comment": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice.",
- "rdfs:label": "referencesOrder",
+ "rdfs:comment": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.",
+ "rdfs:label": "honorificPrefix",
"schema:domainIncludes": {
- "@id": "schema:Invoice"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:Order"
- }
- },
- {
- "@id": "schema:Audience",
- "@type": "rdfs:Class",
- "rdfs:comment": "Intended audience for an item, i.e. the group for whom the item was created.",
- "rdfs:label": "Audience",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:confirmationNumber",
+ "@id": "schema:ccRecipient",
"@type": "rdf:Property",
- "rdfs:comment": "A number that confirms the given order or payment has been received.",
- "rdfs:label": "confirmationNumber",
+ "rdfs:comment": "A sub property of recipient. The recipient copied on a message.",
+ "rdfs:label": "ccRecipient",
"rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "@id": "schema:recipient"
},
- "schema:domainIncludes": [
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Invoice"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Order"
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ ]
},
{
- "@id": "schema:LifestyleModification",
- "@type": "rdfs:Class",
- "rdfs:comment": "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.",
- "rdfs:label": "LifestyleModification",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:customerRemorseReturnShippingFeesAmount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The amount of shipping costs if a product is returned due to customer remorse. Applicable when property [[customerRemorseReturnFees]] equals [[ReturnShippingFees]].",
+ "rdfs:label": "customerRemorseReturnShippingFeesAmount",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:itemDefectReturnFees",
+ "@id": "schema:measuredProperty",
"@type": "rdf:Property",
- "rdfs:comment": "The type of return fees for returns of defect products.",
- "rdfs:label": "itemDefectReturnFees",
+ "rdfs:comment": "The measuredProperty of an [[Observation]], either a schema.org property, a property from other RDF-compatible systems, e.g. W3C RDF Data Cube, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties).",
+ "rdfs:label": "measuredProperty",
"schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
+ "@id": "schema:Observation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:ReturnFeesEnumeration"
+ "@id": "schema:Property"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
}
},
{
- "@id": "schema:SeaBodyOfWater",
+ "@id": "schema:BusinessFunction",
"@type": "rdfs:Class",
- "rdfs:comment": "A sea (for example, the Caspian sea).",
- "rdfs:label": "SeaBodyOfWater",
+ "rdfs:comment": "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ConstructionInstallation\\n* http://purl.org/goodrelations/v1#Dispose\\n* http://purl.org/goodrelations/v1#LeaseOut\\n* http://purl.org/goodrelations/v1#Maintain\\n* http://purl.org/goodrelations/v1#ProvideService\\n* http://purl.org/goodrelations/v1#Repair\\n* http://purl.org/goodrelations/v1#Sell\\n* http://purl.org/goodrelations/v1#Buy\n ",
+ "rdfs:label": "BusinessFunction",
"rdfs:subClassOf": {
- "@id": "schema:BodyOfWater"
- }
- },
- {
- "@id": "schema:HowItWorksHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content that discusses and explains how a particular health-related topic works, e.g. in terms of mechanisms and underlying science.",
- "rdfs:label": "HowItWorksHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Enumeration"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:alumni",
+ "@id": "schema:arrivalBusStop",
"@type": "rdf:Property",
- "rdfs:comment": "Alumni of an organization.",
- "rdfs:label": "alumni",
- "schema:domainIncludes": [
+ "rdfs:comment": "The stop or station from which the bus arrives.",
+ "rdfs:label": "arrivalBusStop",
+ "schema:domainIncludes": {
+ "@id": "schema:BusTrip"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:BusStop"
},
{
- "@id": "schema:EducationalOrganization"
+ "@id": "schema:BusStation"
}
- ],
- "schema:inverseOf": {
- "@id": "schema:alumniOf"
+ ]
+ },
+ {
+ "@id": "schema:recipeCuisine",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The cuisine of the recipe (for example, French or Ethiopian).",
+ "rdfs:label": "recipeCuisine",
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:AutoDealer",
- "@type": "rdfs:Class",
- "rdfs:comment": "An car dealership.",
- "rdfs:label": "AutoDealer",
- "rdfs:subClassOf": {
- "@id": "schema:AutomotiveBusiness"
- }
+ "@id": "schema:bestRating",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.",
+ "rdfs:label": "bestRating",
+ "schema:domainIncludes": {
+ "@id": "schema:Rating"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
},
{
- "@id": "schema:LoanOrCredit",
- "@type": "rdfs:Class",
- "rdfs:comment": "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges.",
- "rdfs:label": "LoanOrCredit",
- "rdfs:subClassOf": {
- "@id": "schema:FinancialProduct"
+ "@id": "schema:Dermatologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Something relating to or practicing dermatology.",
+ "rdfs:label": "Dermatologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "schema:supersededBy": {
+ "@id": "schema:Dermatology"
}
},
{
- "@id": "schema:cvdFacilityId",
+ "@id": "schema:releaseNotes",
"@type": "rdf:Property",
- "rdfs:comment": "Identifier of the NHSN facility that this data record applies to. Use [[cvdFacilityCounty]] to indicate the county. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.",
- "rdfs:label": "cvdFacilityId",
+ "rdfs:comment": "Description of what changed in this version.",
+ "rdfs:label": "releaseNotes",
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:SoftwareApplication"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
},
{
- "@id": "schema:HealthInsurancePlan",
- "@type": "rdfs:Class",
- "rdfs:comment": "A US-style health insurance plan, including PPOs, EPOs, and HMOs. ",
- "rdfs:label": "HealthInsurancePlan",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ "@id": "schema:PaymentDue",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "The payment is due, but still within an acceptable time to be received.",
+ "rdfs:label": "PaymentDue"
+ },
+ {
+ "@id": "schema:DJMixAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "DJMixAlbum.",
+ "rdfs:label": "DJMixAlbum",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:USNonprofitType",
+ "@id": "schema:URL",
"@type": "rdfs:Class",
- "rdfs:comment": "USNonprofitType: Non-profit organization type originating from the United States.",
- "rdfs:label": "USNonprofitType",
+ "rdfs:comment": "Data type: URL.",
+ "rdfs:label": "URL",
"rdfs:subClassOf": {
- "@id": "schema:NonprofitType"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:firstAppearance",
+ "@id": "schema:audio",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]].",
- "rdfs:label": "firstAppearance",
- "rdfs:subPropertyOf": {
- "@id": "schema:workExample"
- },
+ "rdfs:comment": "An embedded audio object.",
+ "rdfs:label": "audio",
"schema:domainIncludes": {
- "@id": "schema:Claim"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
"@id": "schema:CreativeWork"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MusicRecording"
+ },
+ {
+ "@id": "schema:AudioObject"
+ },
+ {
+ "@id": "schema:Clip"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2420"
}
},
{
- "@id": "schema:House",
+ "@id": "schema:EducationalAudience",
"@type": "rdfs:Class",
- "rdfs:comment": "A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/House).",
- "rdfs:label": "House",
+ "rdfs:comment": "An EducationalAudience.",
+ "rdfs:label": "EducationalAudience",
"rdfs:subClassOf": {
- "@id": "schema:Accommodation"
+ "@id": "schema:Audience"
},
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass"
}
},
{
- "@id": "schema:sponsor",
- "@type": "rdf:Property",
- "rdfs:comment": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
- "rdfs:label": "sponsor",
- "schema:domainIncludes": [
- {
- "@id": "schema:Grant"
- },
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:MedicalStudy"
- },
- {
- "@id": "schema:Person"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ]
+ "@id": "schema:SinglePlayer",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: SinglePlayer. Which is played by a lone player.",
+ "rdfs:label": "SinglePlayer"
},
{
- "@id": "schema:itemOffered",
- "@type": "rdf:Property",
- "rdfs:comment": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using [[businessFunction]], e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
- "rdfs:label": "itemOffered",
- "schema:domainIncludes": [
+ "@id": "schema:Legislation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A legal document such as an act, decree, bill, etc. (enforceable or not) or a component of a legal act (like an article).",
+ "rdfs:label": "Legislation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:Demand"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:Offer"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:inverseOf": {
- "@id": "schema:offers"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Trip"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:AggregateOffer"
- },
- {
- "@id": "schema:CreativeWork"
- },
+ "skos:closeMatch": [
{
- "@id": "schema:Service"
- },
- {
- "@id": "schema:Product"
+ "@id": "http://data.europa.eu/eli/ontology#LegalResource"
},
{
- "@id": "schema:MenuItem"
+ "@id": "http://data.europa.eu/eli/ontology#LegalExpression"
}
]
},
{
- "@id": "schema:trainingSalary",
- "@type": "rdf:Property",
- "rdfs:comment": "The estimated salary earned while in the program.",
- "rdfs:label": "trainingSalary",
- "schema:domainIncludes": [
- {
- "@id": "schema:WorkBasedProgram"
- },
- {
- "@id": "schema:EducationalOccupationalProgram"
- }
- ],
+ "@id": "schema:HealthCare",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "HealthCare: this is a benefit for health care.",
+ "rdfs:label": "HealthCare",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmountDistribution"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
},
{
- "@id": "schema:afterMedia",
+ "@id": "schema:softwareHelp",
"@type": "rdf:Property",
- "rdfs:comment": "A media object representing the circumstances after performing this direction.",
- "rdfs:label": "afterMedia",
+ "rdfs:comment": "Software application help.",
+ "rdfs:label": "softwareHelp",
"schema:domainIncludes": {
- "@id": "schema:HowToDirection"
+ "@id": "schema:SoftwareApplication"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:MediaObject"
- },
- {
- "@id": "schema:URL"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ }
},
{
- "@id": "schema:itemListOrder",
+ "@id": "schema:sensoryRequirement",
"@type": "rdf:Property",
- "rdfs:comment": "Type of ordering (e.g. Ascending, Descending, Unordered).",
- "rdfs:label": "itemListOrder",
+ "rdfs:comment": "A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
+ "rdfs:label": "sensoryRequirement",
"schema:domainIncludes": {
- "@id": "schema:ItemList"
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:ItemListOrderType"
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:DefinedTerm"
},
{
"@id": "schema:Text"
}
- ]
- },
- {
- "@id": "schema:CollegeOrUniversity",
- "@type": "rdfs:Class",
- "rdfs:comment": "A college, university, or other third-level educational institution.",
- "rdfs:label": "CollegeOrUniversity",
- "rdfs:subClassOf": {
- "@id": "schema:EducationalOrganization"
- }
- },
- {
- "@id": "schema:ResumeAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer).",
- "rdfs:label": "ResumeAction",
- "rdfs:subClassOf": {
- "@id": "schema:ControlAction"
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
}
},
{
- "@id": "schema:MerchantReturnUnspecified",
- "@type": "schema:MerchantReturnEnumeration",
- "rdfs:comment": "Specifies that a product return policy is not provided.",
- "rdfs:label": "MerchantReturnUnspecified",
+ "@id": "schema:PreventionHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about actions or measures that can be taken to avoid getting the topic or reaching a critical situation related to the topic.",
+ "rdfs:label": "PreventionHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:CheckAction",
+ "@id": "schema:DepartAction",
"@type": "rdfs:Class",
- "rdfs:comment": "An agent inspects, determines, investigates, inquires, or examines an object's accuracy, quality, condition, or state.",
- "rdfs:label": "CheckAction",
+ "rdfs:comment": "The act of departing from a place. An agent departs from a fromLocation for a destination, optionally with participants.",
+ "rdfs:label": "DepartAction",
"rdfs:subClassOf": {
- "@id": "schema:FindAction"
+ "@id": "schema:MoveAction"
}
},
{
- "@id": "schema:monthsOfExperience",
+ "@id": "schema:asin",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the minimal number of months of experience required for a position.",
- "rdfs:label": "monthsOfExperience",
- "schema:domainIncludes": {
- "@id": "schema:OccupationalExperienceRequirements"
+ "rdfs:comment": "An Amazon Standard Identification Number (ASIN) is a 10-character alphanumeric unique identifier assigned by Amazon.com and its partners for product identification within the Amazon organization (summary from [Wikipedia](https://en.wikipedia.org/wiki/Amazon_Standard_Identification_Number)'s article).\n\nNote also that this is a definition for how to include ASINs in Schema.org data, and not a definition of ASINs in general - see documentation from Amazon for authoritative details.\nASINs are most commonly encoded as text strings, but the [asin] property supports URL/URI as potential values too.",
+ "rdfs:label": "asin",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
- }
- },
- {
- "@id": "schema:Article",
- "@type": "rdfs:Class",
- "rdfs:comment": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
- "rdfs:label": "Article",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:StatisticalPopulation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A StatisticalPopulation is a set of instances of a certain given type that satisfy some set of constraints. The property [[populationType]] is used to specify the type. Any property that can be used on instances of that type can appear on the statistical population. For example, a [[StatisticalPopulation]] representing all [[Person]]s with a [[homeLocation]] of East Podunk California, would be described by applying the appropriate [[homeLocation]] and [[populationType]] properties to a [[StatisticalPopulation]] item that stands for that set of people.\nThe properties [[numConstraints]] and [[constrainingProperty]] are used to specify which of the populations properties are used to specify the population. Note that the sense of \"population\" used here is the general sense of a statistical\npopulation, and does not imply that the population consists of people. For example, a [[populationType]] of [[Event]] or [[NewsArticle]] could be used. See also [[Observation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details.\n ",
- "rdfs:label": "StatisticalPopulation",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:evidenceOrigin",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.",
+ "rdfs:label": "evidenceOrigin",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalGuideline"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
- }
- },
- {
- "@id": "schema:WearableSizeSystemAU",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "Australian size system for wearables.",
- "rdfs:label": "WearableSizeSystemAU",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:LowCalorieDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet focused on reduced calorie intake.",
- "rdfs:label": "LowCalorieDiet"
- },
- {
- "@id": "schema:State",
- "@type": "rdfs:Class",
- "rdfs:comment": "A state or province of a country.",
- "rdfs:label": "State",
- "rdfs:subClassOf": {
- "@id": "schema:AdministrativeArea"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:steeringPosition",
+ "@id": "schema:supportingData",
"@type": "rdf:Property",
- "rdfs:comment": "The position of the steering wheel or similar device (mostly for cars).",
- "rdfs:label": "steeringPosition",
+ "rdfs:comment": "Supporting data for a SoftwareApplication.",
+ "rdfs:label": "supportingData",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": {
- "@id": "schema:SteeringPositionValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:DataFeed"
}
},
{
- "@id": "schema:recommendationStrength",
+ "@id": "schema:programPrerequisites",
"@type": "rdf:Property",
- "rdfs:comment": "Strength of the guideline's recommendation (e.g. 'class I').",
- "rdfs:label": "recommendationStrength",
+ "rdfs:comment": "Prerequisites for enrolling in the program.",
+ "rdfs:label": "programPrerequisites",
"schema:domainIncludes": {
- "@id": "schema:MedicalGuidelineRecommendation"
+ "@id": "schema:EducationalOccupationalProgram"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:EducationalOccupationalCredential"
+ },
+ {
+ "@id": "schema:Course"
+ },
+ {
+ "@id": "schema:AlignmentObject"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
},
{
- "@id": "schema:PodcastEpisode",
+ "@id": "schema:EnergyConsumptionDetails",
"@type": "rdfs:Class",
- "rdfs:comment": "A single episode of a podcast series.",
- "rdfs:label": "PodcastEpisode",
+ "rdfs:comment": "EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US.",
+ "rdfs:label": "EnergyConsumptionDetails",
"rdfs:subClassOf": {
- "@id": "schema:Episode"
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:UserLikes",
+ "@id": "schema:Painting",
"@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserLikes",
+ "rdfs:comment": "A painting.",
+ "rdfs:label": "Painting",
"rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
- },
- "schema:supersededBy": {
- "@id": "schema:InteractionCounter"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:molecularFormula",
+ "@id": "schema:chemicalComposition",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/MolecularEntity"
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/ChemicalSubstance"
},
- "rdfs:comment": "The empirical formula is the simplest whole number ratio of all the atoms in a molecule.",
- "rdfs:label": "molecularFormula",
+ "rdfs:comment": "The chemical composition describes the identity and relative ratio of the chemical elements that make up the substance.",
+ "rdfs:label": "chemicalComposition",
"schema:domainIncludes": {
- "@id": "schema:MolecularEntity"
+ "@id": "schema:ChemicalSubstance"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
@@ -28512,2102 +28389,2254 @@
}
},
{
- "@id": "schema:gtin14",
- "@type": "rdf:Property",
- "rdfs:comment": "The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
- "rdfs:label": "gtin14",
- "rdfs:subPropertyOf": [
- {
- "@id": "schema:identifier"
- },
- {
- "@id": "schema:gtin"
- }
- ],
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:Demand"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
+ "@id": "schema:MultiPlayer",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.",
+ "rdfs:label": "MultiPlayer"
},
{
- "@id": "schema:lesserOrEqual",
+ "@id": "schema:parents",
"@type": "rdf:Property",
- "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.",
- "rdfs:label": "lesserOrEqual",
+ "rdfs:comment": "A parents of the person.",
+ "rdfs:label": "parents",
"schema:domainIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:Person"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "schema:supersededBy": {
+ "@id": "schema:parent"
}
},
{
- "@id": "schema:availabilityEnds",
- "@type": "rdf:Property",
- "rdfs:comment": "The end of the availability of the product or service included in the offer.",
- "rdfs:label": "availabilityEnds",
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:ActionAccessSpecification"
- },
- {
- "@id": "schema:Demand"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Time"
- },
+ "@id": "schema:CreditCard",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#AmericanExpress\\n* http://purl.org/goodrelations/v1#DinersClub\\n* http://purl.org/goodrelations/v1#Discover\\n* http://purl.org/goodrelations/v1#JCB\\n* http://purl.org/goodrelations/v1#MasterCard\\n* http://purl.org/goodrelations/v1#VISA\n ",
+ "rdfs:label": "CreditCard",
+ "rdfs:subClassOf": [
{
- "@id": "schema:Date"
+ "@id": "schema:PaymentCard"
},
{
- "@id": "schema:DateTime"
+ "@id": "schema:LoanOrCredit"
}
],
"schema:source": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
]
},
{
- "@id": "schema:WPAdBlock",
- "@type": "rdfs:Class",
- "rdfs:comment": "An advertising section of the page.",
- "rdfs:label": "WPAdBlock",
- "rdfs:subClassOf": {
- "@id": "schema:WebPageElement"
- }
- },
- {
- "@id": "schema:TouristDestination",
- "@type": "rdfs:Class",
- "rdfs:comment": "A tourist destination. In principle any [[Place]] can be a [[TouristDestination]] from a [[City]], Region or [[Country]] to an [[AmusementPark]] or [[Hotel]]. This Type can be used on its own to describe a general [[TouristDestination]], or be used as an [[additionalType]] to add tourist relevant properties to any other [[Place]]. A [[TouristDestination]] is defined as a [[Place]] that contains, or is colocated with, one or more [[TouristAttraction]]s, often linked by a similar theme or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines Destination (main destination of a tourism trip) as the place visited that is central to the decision to take the trip.\n (See examples below).",
- "rdfs:label": "TouristDestination",
- "rdfs:subClassOf": {
- "@id": "schema:Place"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:countriesSupported",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
+ "rdfs:label": "countriesSupported",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
},
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:educationalUse",
+ "@id": "schema:hoursAvailable",
"@type": "rdf:Property",
- "rdfs:comment": "The purpose of a work in the context of education; for example, 'assignment', 'group work'.",
- "rdfs:label": "educationalUse",
+ "rdfs:comment": "The hours during which this service or contact is available.",
+ "rdfs:label": "hoursAvailable",
"schema:domainIncludes": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:LocationFeatureSpecification"
},
{
- "@id": "schema:LearningResource"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:DefinedTerm"
+ "@id": "schema:Service"
},
{
- "@id": "schema:Text"
+ "@id": "schema:ContactPoint"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
+ }
},
{
- "@id": "schema:actionPlatform",
+ "@id": "schema:LimitedAvailability",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item has limited availability.",
+ "rdfs:label": "LimitedAvailability"
+ },
+ {
+ "@id": "schema:availableOnDevice",
"@type": "rdf:Property",
- "rdfs:comment": "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.",
- "rdfs:label": "actionPlatform",
+ "rdfs:comment": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
+ "rdfs:label": "availableOnDevice",
"schema:domainIncludes": {
- "@id": "schema:EntryPoint"
+ "@id": "schema:SoftwareApplication"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:organizer",
+ "@id": "schema:stageAsNumber",
"@type": "rdf:Property",
- "rdfs:comment": "An organizer of an Event.",
- "rdfs:label": "organizer",
+ "rdfs:comment": "The stage represented as a number, e.g. 3.",
+ "rdfs:label": "stageAsNumber",
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:MedicalConditionStage"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
},
{
- "@id": "schema:Beach",
+ "@id": "schema:VeganDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of all animal products.",
+ "rdfs:label": "VeganDiet"
+ },
+ {
+ "@id": "schema:ApplyAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Beach.",
- "rdfs:label": "Beach",
+ "rdfs:comment": "The act of registering to an organization/service without the guarantee to receive it.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.",
+ "rdfs:label": "ApplyAction",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:OrganizeAction"
}
},
{
- "@id": "schema:MedicalTrialDesign",
+ "@id": "schema:NLNonprofitType",
"@type": "rdfs:Class",
- "rdfs:comment": "Design models for medical trials. Enumerated type.",
- "rdfs:label": "MedicalTrialDesign",
+ "rdfs:comment": "NLNonprofitType: Non-profit organization type originating from the Netherlands.",
+ "rdfs:label": "NLNonprofitType",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:NonprofitType"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:videoFrameSize",
+ "@id": "schema:ParkingMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A parking map.",
+ "rdfs:label": "ParkingMap"
+ },
+ {
+ "@id": "schema:GiveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\\n\\nRelated actions:\\n\\n* [[TakeAction]]: Reciprocal of GiveAction.\\n* [[SendAction]]: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).",
+ "rdfs:label": "GiveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:familyName",
"@type": "rdf:Property",
- "rdfs:comment": "The frame size of the video.",
- "rdfs:label": "videoFrameSize",
+ "rdfs:comment": "Family name. In the U.S., the last name of a Person.",
+ "rdfs:label": "familyName",
"schema:domainIncludes": {
- "@id": "schema:VideoObject"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:TrainStation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A train station.",
- "rdfs:label": "TrainStation",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:deliveryTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total delay between the receipt of the order and the goods reaching the final customer.",
+ "rdfs:label": "deliveryTime",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:OfferShippingDetails"
+ },
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ShippingDeliveryTime"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:claimInterpreter",
+ "@id": "schema:siblings",
"@type": "rdf:Property",
- "rdfs:comment": "For a [[Claim]] interpreted from [[MediaObject]] content\n sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].",
- "rdfs:label": "claimInterpreter",
+ "rdfs:comment": "A sibling of the person.",
+ "rdfs:label": "siblings",
"schema:domainIncludes": {
- "@id": "schema:Claim"
+ "@id": "schema:Person"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
},
- "schema:rangeIncludes": [
+ "schema:supersededBy": {
+ "@id": "schema:sibling"
+ }
+ },
+ {
+ "@id": "schema:isProprietary",
+ "@type": "rdf:Property",
+ "rdfs:comment": "True if this item's name is a proprietary/brand name (vs. generic name).",
+ "rdfs:label": "isProprietary",
+ "schema:domainIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:DietarySupplement"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Drug"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:greaterOrEqual",
+ "@id": "schema:softwareVersion",
"@type": "rdf:Property",
- "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.",
- "rdfs:label": "greaterOrEqual",
+ "rdfs:comment": "Version of the software instance.",
+ "rdfs:label": "softwareVersion",
"schema:domainIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:SoftwareApplication"
},
"schema:rangeIncludes": {
- "@id": "schema:QualitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:LakeBodyOfWater",
- "@type": "rdfs:Class",
- "rdfs:comment": "A lake (for example, Lake Pontrachain).",
- "rdfs:label": "LakeBodyOfWater",
- "rdfs:subClassOf": {
- "@id": "schema:BodyOfWater"
+ "@id": "schema:Ayurvedic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.",
+ "rdfs:label": "Ayurvedic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:actor",
+ "@id": "schema:gameItem",
"@type": "rdf:Property",
- "rdfs:comment": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
- "rdfs:label": "actor",
+ "rdfs:comment": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
+ "rdfs:label": "gameItem",
"schema:domainIncludes": [
{
- "@id": "schema:Clip"
- },
- {
- "@id": "schema:RadioSeries"
- },
- {
- "@id": "schema:PodcastSeries"
- },
- {
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:Game"
},
{
"@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:Movie"
- },
- {
- "@id": "schema:MovieSeries"
- },
- {
- "@id": "schema:TVSeries"
- },
- {
- "@id": "schema:VideoGame"
- },
- {
- "@id": "schema:VideoObject"
- },
- {
- "@id": "schema:Episode"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:DecontextualizedContent",
- "@type": "schema:MediaManipulationRatingEnumeration",
- "rdfs:comment": "Content coded 'missing context' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'missing context': Presenting unaltered video in an inaccurate manner that misrepresents the footage. For example, using incorrect dates or locations, altering the transcript or sharing brief clips from a longer video to mislead viewers. (A video rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] to be 'missing context': Presenting unaltered images in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An image rated 'original' can also be missing context.)\n\nFor an [[ImageObject]] with embedded text to be 'missing context': An unaltered image presented in an inaccurate manner to misrepresent the image and mislead the viewer. For example, a common tactic is using an unaltered image but saying it came from a different time or place. (An 'original' image with inaccurate text would generally fall in this category.)\n\nFor an [[AudioObject]] to be 'missing context': Unaltered audio presented in an inaccurate manner that misrepresents it. For example, using incorrect dates or locations, or sharing brief clips from a longer recording to mislead viewers. (Audio rated “original” can also be missing context.)\n",
- "rdfs:label": "DecontextualizedContent",
+ "@id": "schema:proteinContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of protein.",
+ "rdfs:label": "proteinContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupExtraTall",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Extra Tall\" for wearables.",
+ "rdfs:label": "WearableSizeGroupExtraTall",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:chemicalComposition",
+ "@id": "schema:bccRecipient",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/ChemicalSubstance"
- },
- "rdfs:comment": "The chemical composition describes the identity and relative ratio of the chemical elements that make up the substance.",
- "rdfs:label": "chemicalComposition",
- "schema:domainIncludes": {
- "@id": "schema:ChemicalSubstance"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "rdfs:comment": "A sub property of recipient. The recipient blind copied on a message.",
+ "rdfs:label": "bccRecipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:recipient"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:deathPlace",
- "@type": "rdf:Property",
- "rdfs:comment": "The place where the person died.",
- "rdfs:label": "deathPlace",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Message"
},
- "schema:rangeIncludes": {
- "@id": "schema:Place"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
},
{
- "@id": "schema:CompilationAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "CompilationAlbum.",
- "rdfs:label": "CompilationAlbum",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:ListItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An list item, e.g. a step in a checklist or how-to description.",
+ "rdfs:label": "ListItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:hasHealthAspect",
+ "@id": "schema:winner",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the aspect or aspects specifically addressed in some [[HealthTopicContent]]. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects.",
- "rdfs:label": "hasHealthAspect",
- "schema:domainIncludes": {
- "@id": "schema:HealthTopicContent"
+ "rdfs:comment": "A sub property of participant. The winner of the action.",
+ "rdfs:label": "winner",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:domainIncludes": {
+ "@id": "schema:LoseAction"
},
"schema:rangeIncludes": {
- "@id": "schema:HealthAspectEnumeration"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:CampingPitch",
+ "@id": "schema:TVSeries",
"@type": "rdfs:Class",
- "rdfs:comment": "A [[CampingPitch]] is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or [[Campground]].\\n\\n\nIn British English a campsite, or campground, is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites.\n(Source: Wikipedia see [https://en.wikipedia.org/wiki/Campsite](https://en.wikipedia.org/wiki/Campsite)).\\n\\n\nSee also the dedicated [document on the use of schema.org for marking up hotels and other forms of accommodations](/docs/hotels.html).\n",
- "rdfs:label": "CampingPitch",
- "rdfs:subClassOf": {
- "@id": "schema:Accommodation"
- },
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
- }
- },
- {
- "@id": "schema:interactionService",
- "@type": "rdf:Property",
- "rdfs:comment": "The WebSite or SoftwareApplication where the interactions took place.",
- "rdfs:label": "interactionService",
- "schema:domainIncludes": {
- "@id": "schema:InteractionCounter"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.",
+ "rdfs:label": "TVSeries",
+ "rdfs:subClassOf": [
{
- "@id": "schema:WebSite"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:CreativeWorkSeries"
}
]
},
{
- "@id": "schema:Place",
- "@type": "rdfs:Class",
- "rdfs:comment": "Entities that have a somewhat fixed, physical extension.",
- "rdfs:label": "Place",
- "rdfs:subClassOf": {
- "@id": "schema:Thing"
- }
- },
- {
- "@id": "schema:TieAction",
+ "@id": "schema:FloorPlan",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of reaching a draw in a competitive activity.",
- "rdfs:label": "TieAction",
+ "rdfs:comment": "A FloorPlan is an explicit representation of a collection of similar accommodations, allowing the provision of common information (room counts, sizes, layout diagrams) and offers for rental or sale. In typical use, some [[ApartmentComplex]] has an [[accommodationFloorPlan]] which is a [[FloorPlan]]. A FloorPlan is always in the context of a particular place, either a larger [[ApartmentComplex]] or a single [[Apartment]]. The visual/spatial aspects of a floor plan (i.e. room layout, [see wikipedia](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. ",
+ "rdfs:label": "FloorPlan",
"rdfs:subClassOf": {
- "@id": "schema:AchieveAction"
- }
- },
- {
- "@id": "schema:workFeatured",
- "@type": "rdf:Property",
- "rdfs:comment": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).",
- "rdfs:label": "workFeatured",
- "schema:domainIncludes": {
- "@id": "schema:Event"
- },
- "schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:floorLevel",
- "@type": "rdf:Property",
- "rdfs:comment": "The floor level for an [[Accommodation]] in a multi-storey building. Since counting\n systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.",
- "rdfs:label": "floorLevel",
- "schema:domainIncludes": {
- "@id": "schema:Accommodation"
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
"@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:paymentAccepted",
- "@type": "rdf:Property",
- "rdfs:comment": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.",
- "rdfs:label": "paymentAccepted",
- "schema:domainIncludes": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:NotInForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that a legislation is currently not in force.",
+ "rdfs:label": "NotInForce",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:events",
- "@type": "rdf:Property",
- "rdfs:comment": "Upcoming or past events associated with this place or organization.",
- "rdfs:label": "events",
- "schema:domainIncludes": [
+ "schema:source": [
{
- "@id": "schema:Place"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:Organization"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Event"
- },
- "schema:supersededBy": {
- "@id": "schema:event"
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-notInForce"
}
},
{
- "@id": "schema:bookingAgent",
+ "@id": "schema:freeShippingThreshold",
"@type": "rdf:Property",
- "rdfs:comment": "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.",
- "rdfs:label": "bookingAgent",
+ "rdfs:comment": "A monetary value above (or at) which the shipping rate becomes free. Intended to be used via an [[OfferShippingDetails]] with [[shippingSettingsLink]] matching this [[ShippingRateSettings]].",
+ "rdfs:label": "freeShippingThreshold",
"schema:domainIncludes": {
- "@id": "schema:Reservation"
+ "@id": "schema:ShippingRateSettings"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:DeliveryChargeSpecification"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:MonetaryAmount"
}
],
- "schema:supersededBy": {
- "@id": "schema:broker"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:seatRow",
+ "@id": "schema:accessibilityFeature",
"@type": "rdf:Property",
- "rdfs:comment": "The row location of the reserved seat (e.g., B).",
- "rdfs:label": "seatRow",
+ "rdfs:comment": "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).",
+ "rdfs:label": "accessibilityFeature",
"schema:domainIncludes": {
- "@id": "schema:Seat"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:Toxicologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.",
- "rdfs:label": "Toxicologic",
+ "@id": "schema:Radiography",
+ "@type": [
+ "schema:MedicalImagingTechnique",
+ "schema:MedicalSpecialty"
+ ],
+ "rdfs:comment": "Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body.",
+ "rdfs:label": "Radiography",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:eventAttendanceMode",
+ "@id": "schema:hasCredential",
"@type": "rdf:Property",
- "rdfs:comment": "The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix.",
- "rdfs:label": "eventAttendanceMode",
- "schema:domainIncludes": {
- "@id": "schema:Event"
- },
+ "rdfs:comment": "A credential awarded to the Person or Organization.",
+ "rdfs:label": "hasCredential",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:EventAttendanceModeEnumeration"
+ "@id": "schema:EducationalOccupationalCredential"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
},
{
- "@id": "schema:byMonth",
+ "@id": "schema:study",
"@type": "rdf:Property",
- "rdfs:comment": "Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1.",
- "rdfs:label": "byMonth",
+ "rdfs:comment": "A medical study or trial related to this entity.",
+ "rdfs:label": "study",
"schema:domainIncludes": {
- "@id": "schema:Schedule"
+ "@id": "schema:MedicalEntity"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:MedicalStudy"
+ }
+ },
+ {
+ "@id": "schema:Enumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Lists or enumerations—for example, a list of cuisines or music genres, etc.",
+ "rdfs:label": "Enumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:CoOp",
+ "@type": "schema:GamePlayMode",
+ "rdfs:comment": "Play mode: CoOp. Co-operative games, where you play on the same team with friends.",
+ "rdfs:label": "CoOp"
+ },
+ {
+ "@id": "schema:screenCount",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of screens in the movie theater.",
+ "rdfs:label": "screenCount",
+ "schema:domainIncludes": {
+ "@id": "schema:MovieTheater"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
+ },
+ {
+ "@id": "schema:gtin8",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin8",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:gtin"
+ },
+ {
+ "@id": "schema:identifier"
+ }
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:isUnlabelledFallback",
+ "@id": "schema:embeddedTextCaption",
"@type": "rdf:Property",
- "rdfs:comment": "This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[ShippingRateSettings]] are intended to apply to all [[OfferShippingDetails]] published by the same merchant, when referenced by a [[shippingSettingsLink]] in those settings. It is not meaningful to use a 'true' value for this property alongside a transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings.",
- "rdfs:label": "isUnlabelledFallback",
+ "rdfs:comment": "Represents textual captioning from a [[MediaObject]], e.g. text of a 'meme'.",
+ "rdfs:label": "embeddedTextCaption",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:caption"
+ },
"schema:domainIncludes": [
{
- "@id": "schema:ShippingRateSettings"
+ "@id": "schema:VideoObject"
},
{
- "@id": "schema:DeliveryTimeSettings"
+ "@id": "schema:ImageObject"
+ },
+ {
+ "@id": "schema:AudioObject"
}
],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
- }
- },
- {
- "@id": "schema:GeneralContractor",
- "@type": "rdfs:Class",
- "rdfs:comment": "A general contractor.",
- "rdfs:label": "GeneralContractor",
- "rdfs:subClassOf": {
- "@id": "schema:HomeAndConstructionBusiness"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:dosageForm",
+ "@id": "schema:offerCount",
"@type": "rdf:Property",
- "rdfs:comment": "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.",
- "rdfs:label": "dosageForm",
+ "rdfs:comment": "The number of offers for the product.",
+ "rdfs:label": "offerCount",
"schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:AggregateOffer"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:MedicalRiskScore",
+ "@id": "schema:3DModel",
"@type": "rdfs:Class",
- "rdfs:comment": "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.",
- "rdfs:label": "MedicalRiskScore",
+ "rdfs:comment": "A 3D model represents some kind of 3D content, which may have [[encoding]]s in one or more [[MediaObject]]s. Many 3D formats are available (e.g. see [Wikipedia](https://en.wikipedia.org/wiki/Category:3D_graphics_file_formats)); specific encoding formats can be represented using the [[encodingFormat]] property applied to the relevant [[MediaObject]]. For the\ncase of a single file published after Zip compression, the convention of appending '+zip' to the [[encodingFormat]] can be used. Geospatial, AR/VR, artistic/animation, gaming, engineering and scientific content can all be represented using [[3DModel]].",
+ "rdfs:label": "3DModel",
"rdfs:subClassOf": {
- "@id": "schema:MedicalRiskEstimator"
+ "@id": "schema:MediaObject"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2140"
}
},
{
- "@id": "schema:buyer",
+ "@id": "schema:spatialCoverage",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The participant/person/organization that bought the object.",
- "rdfs:label": "buyer",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
+ "owl:equivalentProperty": {
+ "@id": "dcterms:spatial"
},
- "schema:domainIncludes": {
- "@id": "schema:SellAction"
+ "rdfs:comment": "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.",
+ "rdfs:label": "spatialCoverage",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:contentLocation"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ]
- },
- {
- "@id": "schema:lastReviewed",
- "@type": "rdf:Property",
- "rdfs:comment": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.",
- "rdfs:label": "lastReviewed",
"schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:OnlineFull",
- "@type": "schema:GameServerStatus",
- "rdfs:comment": "Game server status: OnlineFull. Server is online but unavailable. The maximum number of players has reached.",
- "rdfs:label": "OnlineFull"
- },
- {
- "@id": "schema:steps",
+ "@id": "schema:address",
"@type": "rdf:Property",
- "rdfs:comment": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).",
- "rdfs:label": "steps",
+ "rdfs:comment": "Physical address of the item.",
+ "rdfs:label": "address",
"schema:domainIncludes": [
{
- "@id": "schema:HowTo"
- },
- {
- "@id": "schema:HowToSection"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
+ "@id": "schema:Place"
},
{
- "@id": "schema:ItemList"
+ "@id": "schema:GeoCoordinates"
},
{
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:supersededBy": {
- "@id": "schema:step"
- }
- },
- {
- "@id": "schema:serviceArea",
- "@type": "rdf:Property",
- "rdfs:comment": "The geographic area where the service is provided.",
- "rdfs:label": "serviceArea",
- "schema:domainIncludes": [
- {
- "@id": "schema:Service"
+ "@id": "schema:GeoShape"
},
{
- "@id": "schema:ContactPoint"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Person"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:GeoShape"
- },
- {
- "@id": "schema:Place"
+ "@id": "schema:Text"
},
{
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:PostalAddress"
}
- ],
- "schema:supersededBy": {
- "@id": "schema:areaServed"
- }
+ ]
},
{
- "@id": "schema:PreOrderAction",
+ "@id": "schema:BackgroundNewsArticle",
"@type": "rdfs:Class",
- "rdfs:comment": "An agent orders a (not yet released) object/product/service to be delivered/sent.",
- "rdfs:label": "PreOrderAction",
+ "rdfs:comment": "A [[NewsArticle]] providing historical context, definition and detail on a specific topic (aka \"explainer\" or \"backgrounder\"). For example, an in-depth article or frequently-asked-questions ([FAQ](https://en.wikipedia.org/wiki/FAQ)) document on topics such as Climate Change or the European Union. Other kinds of background material from a non-news setting are often described using [[Book]] or [[Article]], in particular [[ScholarlyArticle]]. See also [[NewsArticle]] for related vocabulary from a learning/education perspective.",
+ "rdfs:label": "BackgroundNewsArticle",
"rdfs:subClassOf": {
- "@id": "schema:TradeAction"
+ "@id": "schema:NewsArticle"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1125"
- }
- },
- {
- "@id": "schema:ItemListOrderAscending",
- "@type": "schema:ItemListOrderType",
- "rdfs:comment": "An ItemList ordered with lower values listed first.",
- "rdfs:label": "ItemListOrderAscending"
- },
- {
- "@id": "schema:InternationalTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "An international trial.",
- "rdfs:label": "InternationalTrial",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ }
+ ]
},
{
- "@id": "schema:marginOfError",
+ "@id": "schema:shippingOrigin",
"@type": "rdf:Property",
- "rdfs:comment": "A marginOfError for an [[Observation]].",
- "rdfs:label": "marginOfError",
+ "rdfs:comment": "Indicates the origin of a shipment, i.e. where it should be coming from.",
+ "rdfs:label": "shippingOrigin",
"schema:domainIncludes": {
- "@id": "schema:Observation"
+ "@id": "schema:OfferShippingDetails"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:DefinedRegion"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3122"
}
},
{
- "@id": "schema:NoteDigitalDocument",
- "@type": "rdfs:Class",
- "rdfs:comment": "A file containing a note, primarily for the author.",
- "rdfs:label": "NoteDigitalDocument",
- "rdfs:subClassOf": {
- "@id": "schema:DigitalDocument"
+ "@id": "schema:question",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. A question.",
+ "rdfs:label": "question",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:AskAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Question"
}
},
{
- "@id": "schema:gettingTestedInfo",
+ "@id": "schema:exercisePlan",
"@type": "rdf:Property",
- "rdfs:comment": "Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.",
- "rdfs:label": "gettingTestedInfo",
+ "rdfs:comment": "A sub property of instrument. The exercise plan used on this action.",
+ "rdfs:label": "exercisePlan",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
"schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
+ "@id": "schema:ExerciseAction"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:WebContent"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "schema:rangeIncludes": {
+ "@id": "schema:ExercisePlan"
}
},
{
- "@id": "schema:CssSelectorType",
- "@type": "rdfs:Class",
- "rdfs:comment": "Text representing a CSS selector.",
- "rdfs:label": "CssSelectorType",
- "rdfs:subClassOf": {
- "@id": "schema:Text"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:reservationFor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The thing -- flight, event, restaurant, etc. being reserved.",
+ "rdfs:label": "reservationFor",
+ "schema:domainIncludes": {
+ "@id": "schema:Reservation"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1672"
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:exerciseType",
- "@type": "rdf:Property",
- "rdfs:comment": "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.",
- "rdfs:label": "exerciseType",
- "schema:domainIncludes": [
+ "@id": "schema:Diet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.",
+ "rdfs:label": "Diet",
+ "rdfs:subClassOf": [
{
- "@id": "schema:ExercisePlan"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:ExerciseAction"
+ "@id": "schema:LifestyleModification"
}
],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
}
},
{
- "@id": "schema:WarrantyScope",
+ "@id": "schema:sensoryUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The neurological pathway extension that inputs and sends information to the brain or spinal cord.",
+ "rdfs:label": "sensoryUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:Nerve"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AnatomicalStructure"
+ },
+ {
+ "@id": "schema:SuperficialAnatomy"
+ }
+ ]
+ },
+ {
+ "@id": "schema:House",
"@type": "rdfs:Class",
- "rdfs:comment": "A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Labor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n ",
- "rdfs:label": "WarrantyScope",
+ "rdfs:comment": "A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/House).",
+ "rdfs:label": "House",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Accommodation"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:dropoffLocation",
+ "@id": "schema:healthPlanMarketingUrl",
"@type": "rdf:Property",
- "rdfs:comment": "Where a rental car can be dropped off.",
- "rdfs:label": "dropoffLocation",
+ "rdfs:comment": "The URL that goes directly to the plan brochure for the specific standard plan or plan variation.",
+ "rdfs:label": "healthPlanMarketingUrl",
"schema:domainIncludes": {
- "@id": "schema:RentalCarReservation"
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:imagingTechnique",
+ "@id": "schema:Course",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A description of an educational course which may be offered as distinct instances which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.",
+ "rdfs:label": "Course",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:LearningResource"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ]
+ },
+ {
+ "@id": "schema:geoMidpoint",
"@type": "rdf:Property",
- "rdfs:comment": "Imaging technique used.",
- "rdfs:label": "imagingTechnique",
+ "rdfs:comment": "Indicates the GeoCoordinates at the centre of a GeoShape, e.g. GeoCircle.",
+ "rdfs:label": "geoMidpoint",
"schema:domainIncludes": {
- "@id": "schema:ImagingTest"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:GeoCircle"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalImagingTechnique"
+ "@id": "schema:GeoCoordinates"
}
},
{
- "@id": "schema:mainContentOfPage",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates if this web page element is the main subject of the page.",
- "rdfs:label": "mainContentOfPage",
- "schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:DrugCostCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated categories of medical drug costs.",
+ "rdfs:label": "DrugCostCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
},
- "schema:rangeIncludes": {
- "@id": "schema:WebPageElement"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:sdDatePublished",
+ "@id": "schema:maxPrice",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]]",
- "rdfs:label": "sdDatePublished",
+ "rdfs:comment": "The highest price if the price is a range.",
+ "rdfs:label": "maxPrice",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:PriceSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Number"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
- }
- },
- {
- "@id": "schema:Neurologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that studies the nerves and nervous system and its respective disease states.",
- "rdfs:label": "Neurologic",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:BoardingPolicyType",
+ "@id": "schema:GamePlayMode",
"@type": "rdfs:Class",
- "rdfs:comment": "A type of boarding policy used by an airline.",
- "rdfs:label": "BoardingPolicyType",
+ "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player.",
+ "rdfs:label": "GamePlayMode",
"rdfs:subClassOf": {
"@id": "schema:Enumeration"
}
},
{
- "@id": "schema:PodcastSeries",
+ "@id": "schema:InStock",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is in stock.",
+ "rdfs:label": "InStock"
+ },
+ {
+ "@id": "schema:SolveMathAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A podcast is an episodic series of digital audio or video files which a user can download and listen to.",
- "rdfs:label": "PodcastSeries",
+ "rdfs:comment": "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.",
+ "rdfs:label": "SolveMathAction",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWorkSeries"
+ "@id": "schema:Action"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
}
},
{
- "@id": "schema:Property",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "rdf:Property"
- },
- "rdfs:comment": "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.",
- "rdfs:label": "Property",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:speed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by [[maxValue]]) should be the maximum speed achievable under regular conditions.\\n\\nTypical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot\\n\\n*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.\\n* Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the [[valueReference]] property.",
+ "rdfs:label": "speed",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
},
"schema:isPartOf": {
- "@id": "https://meta.schema.org"
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:PublicToilet",
+ "@id": "schema:Volcano",
"@type": "rdfs:Class",
- "rdfs:comment": "A public toilet is a room or small building containing one or more toilets (and possibly also urinals) which is available for use by the general public, or by customers or employees of certain businesses.",
- "rdfs:label": "PublicToilet",
+ "rdfs:comment": "A volcano, like Fujisan.",
+ "rdfs:label": "Volcano",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1624"
+ "@id": "schema:Landform"
}
},
{
- "@id": "schema:MedicalAudience",
- "@type": "rdfs:Class",
- "rdfs:comment": "Target audiences for medical web pages.",
- "rdfs:label": "MedicalAudience",
- "rdfs:subClassOf": [
+ "@id": "schema:geo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The geo coordinates of the place.",
+ "rdfs:label": "geo",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Audience"
+ "@id": "schema:GeoCoordinates"
},
{
- "@id": "schema:PeopleAudience"
+ "@id": "schema:GeoShape"
}
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ ]
},
{
- "@id": "schema:chemicalRole",
+ "@id": "schema:paymentMethod",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/ChemicalSubstance"
- },
- "rdfs:comment": "A role played by the BioChemEntity within a chemical context.",
- "rdfs:label": "chemicalRole",
+ "rdfs:comment": "The name of the credit card or other method of payment for the order.",
+ "rdfs:label": "paymentMethod",
"schema:domainIncludes": [
{
- "@id": "schema:ChemicalSubstance"
+ "@id": "schema:Invoice"
},
{
- "@id": "schema:MolecularEntity"
+ "@id": "schema:Order"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": {
- "@id": "schema:DefinedTerm"
+ "@id": "schema:PaymentMethod"
}
},
{
- "@id": "schema:highPrice",
+ "@id": "schema:loanRepaymentForm",
"@type": "rdf:Property",
- "rdfs:comment": "The highest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
- "rdfs:label": "highPrice",
+ "rdfs:comment": "A form of paying back money previously borrowed from a lender. Repayment usually takes the form of periodic payments that normally include part principal plus interest in each payment.",
+ "rdfs:label": "loanRepaymentForm",
"schema:domainIncludes": {
- "@id": "schema:AggregateOffer"
+ "@id": "schema:LoanOrCredit"
},
- "schema:rangeIncludes": [
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:source": [
{
- "@id": "schema:Text"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
},
{
- "@id": "schema:Number"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
]
},
{
- "@id": "schema:labelDetails",
+ "@id": "schema:usedToDiagnose",
"@type": "rdf:Property",
- "rdfs:comment": "Link to the drug's label details.",
- "rdfs:label": "labelDetails",
+ "rdfs:comment": "A condition the test is used to diagnose.",
+ "rdfs:label": "usedToDiagnose",
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:MedicalTest"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:MedicalCondition"
}
},
{
- "@id": "schema:constrainingProperty",
+ "@id": "schema:blogPost",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a property used as a constraint to define a [[StatisticalPopulation]] with respect to the set of entities\n corresponding to an indicated type (via [[populationType]]).",
- "rdfs:label": "constrainingProperty",
+ "rdfs:comment": "A posting that is part of this blog.",
+ "rdfs:label": "blogPost",
"schema:domainIncludes": {
- "@id": "schema:StatisticalPopulation"
+ "@id": "schema:Blog"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:BlogPosting"
+ }
+ },
+ {
+ "@id": "schema:RentalVehicleUsage",
+ "@type": "schema:CarUsageType",
+ "rdfs:comment": "Indicates the usage of the vehicle as a rental car.",
+ "rdfs:label": "RentalVehicleUsage",
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
},
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:ViewAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming static visual content.",
+ "rdfs:label": "ViewAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
+ }
+ },
+ {
+ "@id": "schema:NonprofitANBI",
+ "@type": "schema:NLNonprofitType",
+ "rdfs:comment": "NonprofitANBI: Non-profit type referring to a Public Benefit Organization (NL).",
+ "rdfs:label": "NonprofitANBI",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:numberOfPreviousOwners",
+ "@id": "schema:unitText",
"@type": "rdf:Property",
- "rdfs:comment": "The number of owners of the vehicle, including the current one.\\n\\nTypical unit code(s): C62",
- "rdfs:label": "numberOfPreviousOwners",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.",
+ "rdfs:label": "unitText",
+ "schema:domainIncludes": [
{
"@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:Number"
+ "@id": "schema:UnitPriceSpecification"
+ },
+ {
+ "@id": "schema:PropertyValue"
+ },
+ {
+ "@id": "schema:TypeAndQuantityNode"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:associatedReview",
- "@type": "rdf:Property",
- "rdfs:comment": "An associated [[Review]].",
- "rdfs:label": "associatedReview",
- "schema:domainIncludes": {
- "@id": "schema:Review"
- },
+ "@id": "schema:Nonprofit501c22",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds.",
+ "rdfs:label": "Nonprofit501c22",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Review"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:dietFeatures",
+ "@id": "schema:releaseDate",
"@type": "rdf:Property",
- "rdfs:comment": "Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.",
- "rdfs:label": "dietFeatures",
+ "rdfs:comment": "The release date of a product or product model. This can be used to distinguish the exact variant of a product.",
+ "rdfs:label": "releaseDate",
"schema:domainIncludes": {
- "@id": "schema:Diet"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Product"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:partOfEpisode",
+ "@id": "schema:runtime",
"@type": "rdf:Property",
- "rdfs:comment": "The episode to which this clip belongs.",
- "rdfs:label": "partOfEpisode",
- "rdfs:subPropertyOf": {
- "@id": "schema:isPartOf"
- },
+ "rdfs:comment": "Runtime platform or script interpreter dependencies (example: Java v1, Python 2.3, .NET Framework 3.0).",
+ "rdfs:label": "runtime",
"schema:domainIncludes": {
- "@id": "schema:Clip"
+ "@id": "schema:SoftwareSourceCode"
},
"schema:rangeIncludes": {
- "@id": "schema:Episode"
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:runtimePlatform"
}
},
{
- "@id": "schema:gameTip",
+ "@id": "schema:monthsOfExperience",
"@type": "rdf:Property",
- "rdfs:comment": "Links to tips, tactics, etc.",
- "rdfs:label": "gameTip",
+ "rdfs:comment": "Indicates the minimal number of months of experience required for a position.",
+ "rdfs:label": "monthsOfExperience",
"schema:domainIncludes": {
- "@id": "schema:VideoGame"
+ "@id": "schema:OccupationalExperienceRequirements"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
}
},
{
- "@id": "schema:employmentUnit",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.",
- "rdfs:label": "employmentUnit",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:DefinedTerm",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.",
+ "rdfs:label": "DefinedTerm",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2296"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:floorSize",
+ "@id": "schema:Clinician",
+ "@type": "schema:MedicalAudienceType",
+ "rdfs:comment": "Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.",
+ "rdfs:label": "Clinician",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SoftwareApplication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A software application.",
+ "rdfs:label": "SoftwareApplication",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:PawnShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shop that will buy, or lend money against the security of, personal possessions.",
+ "rdfs:label": "PawnShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:jurisdiction",
"@type": "rdf:Property",
- "rdfs:comment": "The size of the accommodation, e.g. in square meter or squarefoot.\nTypical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard ",
- "rdfs:label": "floorSize",
+ "rdfs:comment": "Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.",
+ "rdfs:label": "jurisdiction",
"schema:domainIncludes": [
{
- "@id": "schema:FloorPlan"
+ "@id": "schema:Legislation"
},
{
- "@id": "schema:Accommodation"
+ "@id": "schema:GovernmentService"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AdministrativeArea"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
}
},
{
- "@id": "schema:priceComponent",
- "@type": "rdf:Property",
- "rdfs:comment": "This property links to all [[UnitPriceSpecification]] nodes that apply in parallel for the [[CompoundPriceSpecification]] node.",
- "rdfs:label": "priceComponent",
- "schema:domainIncludes": {
- "@id": "schema:CompoundPriceSpecification"
- },
- "schema:rangeIncludes": {
- "@id": "schema:UnitPriceSpecification"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:AchieveAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.",
+ "rdfs:label": "AchieveAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:email",
+ "@id": "schema:brand",
"@type": "rdf:Property",
- "rdfs:comment": "Email address.",
- "rdfs:label": "email",
+ "rdfs:comment": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
+ "rdfs:label": "brand",
"schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
{
"@id": "schema:Organization"
},
{
"@id": "schema:Person"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Brand"
},
{
- "@id": "schema:ContactPoint"
+ "@id": "schema:Organization"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ ]
+ },
+ {
+ "@id": "schema:DanceEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: A social dance.",
+ "rdfs:label": "DanceEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:relatedAnatomy",
+ "@id": "schema:rxcui",
"@type": "rdf:Property",
- "rdfs:comment": "Anatomical systems or structures that relate to the superficial anatomy.",
- "rdfs:label": "relatedAnatomy",
+ "rdfs:comment": "The RxCUI drug identifier from RXNORM.",
+ "rdfs:label": "rxcui",
"schema:domainIncludes": {
- "@id": "schema:SuperficialAnatomy"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:AnatomicalStructure"
- },
- {
- "@id": "schema:AnatomicalSystem"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
},
{
- "@id": "schema:holdingArchive",
- "@type": "rdf:Property",
- "rdfs:comment": {
- "@language": "en",
- "@value": "[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]]."
- },
- "rdfs:label": {
- "@language": "en",
- "@value": "holdingArchive"
- },
- "schema:domainIncludes": {
- "@id": "schema:ArchiveComponent"
- },
- "schema:inverseOf": {
- "@id": "schema:archiveHeld"
+ "@id": "schema:CategoryCodeSet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of Category Code values.",
+ "rdfs:label": "CategoryCodeSet",
+ "rdfs:subClassOf": {
+ "@id": "schema:DefinedTermSet"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:ArchiveOrganization"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501k",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501k: Non-profit type referring to Child Care Organizations.",
+ "rdfs:label": "Nonprofit501k",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:taxID",
+ "@id": "schema:saturatedFatContent",
"@type": "rdf:Property",
- "rdfs:comment": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
- "rdfs:label": "taxID",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "rdfs:comment": "The number of grams of saturated fat.",
+ "rdfs:label": "saturatedFatContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:followup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Typical or recommended followup care after the procedure is performed.",
+ "rdfs:label": "followup",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ],
"schema:rangeIncludes": {
"@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:PregnancyHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content discussing pregnancy-related aspects of a health topic.",
+ "rdfs:label": "PregnancyHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
}
},
{
- "@id": "schema:supply",
+ "@id": "schema:endorsee",
"@type": "rdf:Property",
- "rdfs:comment": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
- "rdfs:label": "supply",
+ "rdfs:comment": "A sub property of participant. The person/organization being supported.",
+ "rdfs:label": "endorsee",
"rdfs:subPropertyOf": {
- "@id": "schema:instrument"
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:EndorseAction"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:HowTo"
- },
- {
- "@id": "schema:HowToDirection"
- }
- ],
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:HowToSupply"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:stepValue",
- "@type": "rdf:Property",
- "rdfs:comment": "The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.",
- "rdfs:label": "stepValue",
- "schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
+ "@id": "schema:MobileWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of 'mobile' browsers as a Web Platform.",
+ "rdfs:label": "MobileWebPlatform",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Number"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
}
},
{
- "@id": "schema:LaboratoryScience",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research.",
- "rdfs:label": "LaboratoryScience",
+ "@id": "schema:ApprovedIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.",
+ "rdfs:label": "ApprovedIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:superEvent",
+ "@id": "schema:employmentType",
"@type": "rdf:Property",
- "rdfs:comment": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
- "rdfs:label": "superEvent",
+ "rdfs:comment": "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).",
+ "rdfs:label": "employmentType",
"schema:domainIncludes": {
- "@id": "schema:Event"
- },
- "schema:inverseOf": {
- "@id": "schema:subEvent"
+ "@id": "schema:JobPosting"
},
"schema:rangeIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:BroadcastChannel",
+ "@id": "schema:LegalValueLevel",
"@type": "rdfs:Class",
- "rdfs:comment": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup.",
- "rdfs:label": "BroadcastChannel",
+ "rdfs:comment": "A list of possible levels for the legal validity of a legislation.",
+ "rdfs:label": "LegalValueLevel",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:closeMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue"
}
},
{
- "@id": "schema:alternativeOf",
+ "@id": "schema:numberOfItems",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/Gene"
- },
- "rdfs:comment": "Another gene which is a variation of this one.",
- "rdfs:label": "alternativeOf",
+ "rdfs:comment": "The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.",
+ "rdfs:label": "numberOfItems",
"schema:domainIncludes": {
- "@id": "schema:Gene"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:ItemList"
},
"schema:rangeIncludes": {
- "@id": "schema:Gene"
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:hasEnergyEfficiencyCategory",
+ "@id": "schema:returnFees",
"@type": "rdf:Property",
- "rdfs:comment": "Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard.",
- "rdfs:label": "hasEnergyEfficiencyCategory",
+ "rdfs:comment": "The type of return fees for purchased products (for any return reason).",
+ "rdfs:label": "returnFees",
"schema:domainIncludes": {
- "@id": "schema:EnergyConsumptionDetails"
+ "@id": "schema:MerchantReturnPolicy"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:EnergyEfficiencyEnumeration"
+ "@id": "schema:ReturnFeesEnumeration"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:baseSalary",
+ "@id": "schema:acquiredFrom",
"@type": "rdf:Property",
- "rdfs:comment": "The base salary of the job or of an employee in an EmployeeRole.",
- "rdfs:label": "baseSalary",
- "schema:domainIncludes": [
- {
- "@id": "schema:EmployeeRole"
- },
- {
- "@id": "schema:JobPosting"
- }
- ],
+ "rdfs:comment": "The organization or person from which the product was acquired.",
+ "rdfs:label": "acquiredFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:OwnershipInfo"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:MonetaryAmount"
- },
- {
- "@id": "schema:PriceSpecification"
+ "@id": "schema:Person"
},
{
- "@id": "schema:Number"
+ "@id": "schema:Organization"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:hasOccupation",
+ "@id": "schema:openingHoursSpecification",
"@type": "rdf:Property",
- "rdfs:comment": "The Person's occupation. For past professions, use Role for expressing dates.",
- "rdfs:label": "hasOccupation",
+ "rdfs:comment": "The opening hours of a certain place.",
+ "rdfs:label": "openingHoursSpecification",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Place"
},
"schema:rangeIncludes": {
- "@id": "schema:Occupation"
+ "@id": "schema:OpeningHoursSpecification"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:isPlanForApartment",
+ "@id": "schema:linkRelationship",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates some accommodation that this floor plan describes.",
- "rdfs:label": "isPlanForApartment",
+ "rdfs:comment": "Indicates the relationship type of a Web link. ",
+ "rdfs:label": "linkRelationship",
"schema:domainIncludes": {
- "@id": "schema:FloorPlan"
+ "@id": "schema:LinkRole"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Accommodation"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1045"
}
},
{
- "@id": "schema:AllergiesHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about the allergy-related aspects of a health topic.",
- "rdfs:label": "AllergiesHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:MedicalGuidelineContraindication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.",
+ "rdfs:label": "MedicalGuidelineContraindication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalGuideline"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:spatialCoverage",
+ "@id": "schema:accessMode",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/dc/terms/spatial"
- },
- "rdfs:comment": "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.",
- "rdfs:label": "spatialCoverage",
- "rdfs:subPropertyOf": {
- "@id": "schema:contentLocation"
- },
+ "rdfs:comment": "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).",
+ "rdfs:label": "accessMode",
"schema:domainIncludes": {
"@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1100"
}
},
{
- "@id": "schema:propertyID",
+ "@id": "schema:GolfCourse",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A golf course.",
+ "rdfs:label": "GolfCourse",
+ "rdfs:subClassOf": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:CarUsageType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.",
+ "rdfs:label": "CarUsageType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:mealService",
"@type": "rdf:Property",
- "rdfs:comment": "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.",
- "rdfs:label": "propertyID",
+ "rdfs:comment": "Description of the meals that will be provided or available for purchase.",
+ "rdfs:label": "mealService",
"schema:domainIncludes": {
- "@id": "schema:PropertyValue"
+ "@id": "schema:Flight"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:ReplyAction",
+ "@id": "schema:BefriendAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of responding to a question/message asked/sent by the object. Related to [[AskAction]]\\n\\nRelated actions:\\n\\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.",
- "rdfs:label": "ReplyAction",
+ "rdfs:comment": "The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.",
+ "rdfs:label": "BefriendAction",
"rdfs:subClassOf": {
- "@id": "schema:CommunicateAction"
+ "@id": "schema:InteractAction"
}
},
{
- "@id": "schema:VisualArtwork",
+ "@id": "schema:Motel",
"@type": "rdfs:Class",
- "rdfs:comment": "A work of art that is primarily visual in character.",
- "rdfs:label": "VisualArtwork",
+ "rdfs:comment": "A motel.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Motel",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_VisualArtworkClass"
+ "@id": "schema:LodgingBusiness"
}
},
{
- "@id": "schema:ConvenienceStore",
+ "@id": "schema:EatAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A convenience store.",
- "rdfs:label": "ConvenienceStore",
+ "rdfs:comment": "The act of swallowing solid objects.",
+ "rdfs:label": "EatAction",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:ConsumeAction"
}
},
{
- "@id": "schema:UserPageVisits",
- "@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserPageVisits",
- "rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
+ "@id": "schema:subEvents",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.",
+ "rdfs:label": "subEvents",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
},
"schema:supersededBy": {
- "@id": "schema:InteractionCounter"
+ "@id": "schema:subEvent"
}
},
{
- "@id": "schema:costPerUnit",
- "@type": "rdf:Property",
- "rdfs:comment": "The cost per unit of the drug.",
- "rdfs:label": "costPerUnit",
- "schema:domainIncludes": {
- "@id": "schema:DrugCost"
+ "@id": "schema:OrderProcessing",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order is being processed.",
+ "rdfs:label": "OrderProcessing"
+ },
+ {
+ "@id": "schema:FullRefund",
+ "@type": "schema:RefundTypeEnumeration",
+ "rdfs:comment": "Specifies that a refund can be done in the full amount the customer paid for the product.",
+ "rdfs:label": "FullRefund",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:PreventionIndication",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An indication for preventing an underlying condition, symptom, etc.",
+ "rdfs:label": "PreventionIndication",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIndication"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Number"
- },
- {
- "@id": "schema:QualitativeValue"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ }
},
{
- "@id": "schema:quest",
+ "@id": "schema:mileageFromOdometer",
"@type": "rdf:Property",
- "rdfs:comment": "The task that a player-controlled character, or group of characters may complete in order to gain a reward.",
- "rdfs:label": "quest",
- "schema:domainIncludes": [
- {
- "@id": "schema:Game"
- },
- {
- "@id": "schema:VideoGameSeries"
- }
- ],
+ "rdfs:comment": "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\\n\\nTypical unit code(s): KMT for kilometers, SMI for statute miles",
+ "rdfs:label": "mileageFromOdometer",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:toLocation",
+ "@id": "schema:MolecularEntity",
+ "@type": "rdfs:Class",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.",
+ "rdfs:label": "MolecularEntity",
+ "rdfs:subClassOf": {
+ "@id": "schema:BioChemEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ }
+ },
+ {
+ "@id": "schema:postalCodeEnd",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The final location of the object or the agent after the action.",
- "rdfs:label": "toLocation",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
+ "rdfs:comment": "Last postal code in the range (included). Needs to be after [[postalCodeBegin]].",
+ "rdfs:label": "postalCodeEnd",
+ "schema:domainIncludes": {
+ "@id": "schema:PostalCodeRangeSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:MoveAction"
- },
- {
- "@id": "schema:TransferAction"
- },
- {
- "@id": "schema:ExerciseAction"
- },
- {
- "@id": "schema:InsertAction"
- }
- ],
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:workPerformed",
+ "@id": "schema:recipe",
"@type": "rdf:Property",
- "rdfs:comment": "A work performed in some event, for example a play performed in a TheaterEvent.",
- "rdfs:label": "workPerformed",
+ "rdfs:comment": "A sub property of instrument. The recipe/instructions used to perform the action.",
+ "rdfs:label": "recipe",
"rdfs:subPropertyOf": {
- "@id": "schema:workFeatured"
+ "@id": "schema:instrument"
},
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:CookAction"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Recipe"
}
},
{
- "@id": "schema:geoOverlaps",
- "@type": "rdf:Property",
- "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
- "rdfs:label": "geoOverlaps",
- "schema:domainIncludes": [
+ "@id": "schema:FAQPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).",
+ "rdfs:label": "FAQPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1723"
+ }
+ },
+ {
+ "@id": "schema:surface",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.",
+ "rdfs:label": "surface",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:material"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Place"
+ "@id": "schema:URL"
}
],
- "schema:rangeIncludes": [
+ "schema:supersededBy": {
+ "@id": "schema:artworkSurface"
+ }
+ },
+ {
+ "@id": "schema:BodyMeasurementInsideLeg",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Inside leg (measured between crotch and soles of feet). Used, for example, to fit pants.",
+ "rdfs:label": "BodyMeasurementInsideLeg",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:ReportageNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The [[ReportageNewsArticle]] type is a subtype of [[NewsArticle]] representing\n news articles which are the result of journalistic news reporting conventions.\n\nIn practice many news publishers produce a wide variety of article types, many of which might be considered a [[NewsArticle]] but not a [[ReportageNewsArticle]]. For example, opinion pieces, reviews, analysis, sponsored or satirical articles, or articles that combine several of these elements.\n\nThe [[ReportageNewsArticle]] type is based on a stricter ideal for \"news\" as a work of journalism, with articles based on factual information either observed or verified by the author, or reported and verified from knowledgeable sources. This often includes perspectives from multiple viewpoints on a particular issue (distinguishing news reports from public relations or propaganda). News reports in the [[ReportageNewsArticle]] sense de-emphasize the opinion of the author, with commentary and value judgements typically expressed elsewhere.\n\nA [[ReportageNewsArticle]] which goes deeper into analysis can also be marked with an additional type of [[AnalysisNewsArticle]].\n",
+ "rdfs:label": "ReportageNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:Place"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "schema:GeospatialGeometry"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
]
},
{
- "@id": "schema:countriesNotSupported",
- "@type": "rdf:Property",
- "rdfs:comment": "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
- "rdfs:label": "countriesNotSupported",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:MerchantReturnEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several kinds of product return policies.",
+ "rdfs:label": "MerchantReturnEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:broadcastAffiliateOf",
+ "@id": "schema:urlTemplate",
"@type": "rdf:Property",
- "rdfs:comment": "The media network(s) whose content is broadcast on this station.",
- "rdfs:label": "broadcastAffiliateOf",
+ "rdfs:comment": "An url template (RFC6570) that will be used to construct the target of the execution of the action.",
+ "rdfs:label": "urlTemplate",
"schema:domainIncludes": {
- "@id": "schema:BroadcastService"
+ "@id": "schema:EntryPoint"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:GovernmentBenefitsType",
- "@type": "rdfs:Class",
- "rdfs:comment": "GovernmentBenefitsType enumerates several kinds of government benefits to support the COVID-19 situation. Note that this structure may not capture all benefits offered.",
- "rdfs:label": "GovernmentBenefitsType",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
+ "@id": "schema:EUEnergyEfficiencyCategoryF",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryF",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:healthPlanDrugTier",
- "@type": "rdf:Property",
- "rdfs:comment": "The tier(s) of drugs offered by this formulary or insurance plan.",
- "rdfs:label": "healthPlanDrugTier",
- "schema:domainIncludes": [
- {
- "@id": "schema:HealthInsurancePlan"
- },
- {
- "@id": "schema:HealthPlanFormulary"
- }
- ],
+ "@id": "schema:TobaccoNicotineConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item contains tobacco and/or nicotine, for example cigars, cigarettes, chewing tobacco, e-cigarettes, or hookahs.",
+ "rdfs:label": "TobaccoNicotineConsideration",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:OutletStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "An outlet store.",
- "rdfs:label": "OutletStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:MinimumAdvertisedPrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the minimum advertised price (\"MAP\") (as dictated by the manufacturer) of an offered product.",
+ "rdfs:label": "MinimumAdvertisedPrice",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
}
},
{
- "@id": "schema:successorOf",
+ "@id": "schema:nonprofitStatus",
"@type": "rdf:Property",
- "rdfs:comment": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.",
- "rdfs:label": "successorOf",
+ "rdfs:comment": "nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business.",
+ "rdfs:label": "nonprofitStatus",
"schema:domainIncludes": {
- "@id": "schema:ProductModel"
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:ProductModel"
+ "@id": "schema:NonprofitType"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:gameItem",
+ "@id": "schema:broadcastServiceTier",
"@type": "rdf:Property",
- "rdfs:comment": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
- "rdfs:label": "gameItem",
- "schema:domainIncludes": [
- {
- "@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:Game"
- }
- ],
+ "rdfs:comment": "The type of service required to have access to the channel (e.g. Standard or Premium).",
+ "rdfs:label": "broadcastServiceTier",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:hasCourseInstance",
- "@type": "rdf:Property",
- "rdfs:comment": "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.",
- "rdfs:label": "hasCourseInstance",
- "schema:domainIncludes": {
- "@id": "schema:Course"
- },
- "schema:rangeIncludes": {
- "@id": "schema:CourseInstance"
+ "@id": "schema:CardiovascularExam",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Cardiovascular system assessment with clinical examination.",
+ "rdfs:label": "CardiovascularExam",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:VideoObject",
+ "@id": "schema:QuantitativeValue",
"@type": "rdfs:Class",
- "rdfs:comment": "A video file.",
- "rdfs:label": "VideoObject",
+ "rdfs:comment": " A point value or interval for product characteristics and other purposes.",
+ "rdfs:label": "QuantitativeValue",
"rdfs:subClassOf": {
- "@id": "schema:MediaObject"
+ "@id": "schema:StructuredValue"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:ReplaceAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of editing a recipient by replacing an old object with a new object.",
- "rdfs:label": "ReplaceAction",
- "rdfs:subClassOf": {
- "@id": "schema:UpdateAction"
+ "@id": "schema:issn",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/issn"
+ },
+ "rdfs:comment": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
+ "rdfs:label": "issn",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Dataset"
+ },
+ {
+ "@id": "schema:WebSite"
+ },
+ {
+ "@id": "schema:Blog"
+ },
+ {
+ "@id": "schema:CreativeWorkSeries"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:AutomatedTeller",
+ "@id": "schema:PerformingGroup",
"@type": "rdfs:Class",
- "rdfs:comment": "ATM/cash machine.",
- "rdfs:label": "AutomatedTeller",
+ "rdfs:comment": "A performance group, such as a band, an orchestra, or a circus.",
+ "rdfs:label": "PerformingGroup",
"rdfs:subClassOf": {
- "@id": "schema:FinancialService"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:ApplyAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of registering to an organization/service without the guarantee to receive it.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.",
- "rdfs:label": "ApplyAction",
- "rdfs:subClassOf": {
- "@id": "schema:OrganizeAction"
+ "@id": "schema:WearableSizeSystemEurope",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "European size system for wearables.",
+ "rdfs:label": "WearableSizeSystemEurope",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:appearance",
+ "@id": "schema:hasOccupation",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates an occurence of a [[Claim]] in some [[CreativeWork]].",
- "rdfs:label": "appearance",
+ "rdfs:comment": "The Person's occupation. For past professions, use Role for expressing dates.",
+ "rdfs:label": "hasOccupation",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Occupation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
+ },
+ {
+ "@id": "schema:inChI",
+ "@type": "rdf:Property",
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/MolecularEntity"
+ },
+ "rdfs:comment": "Non-proprietary identifier for molecular entity that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations.",
+ "rdfs:label": "inChI",
"rdfs:subPropertyOf": {
- "@id": "schema:workExample"
+ "@id": "schema:hasRepresentation"
},
"schema:domainIncludes": {
- "@id": "schema:Claim"
+ "@id": "schema:MolecularEntity"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:MusicGroup",
+ "@id": "schema:Blog",
"@type": "rdfs:Class",
- "rdfs:comment": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.",
- "rdfs:label": "MusicGroup",
+ "rdfs:comment": "A [blog](https://en.wikipedia.org/wiki/Blog), sometimes known as a \"weblog\". Note that the individual posts ([[BlogPosting]]s) in a [[Blog]] are often colloquially referred to by the same term.",
+ "rdfs:label": "Blog",
"rdfs:subClassOf": {
- "@id": "schema:PerformingGroup"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:guidelineDate",
+ "@id": "schema:originalMediaContextDescription",
"@type": "rdf:Property",
- "rdfs:comment": "Date on which this guideline's recommendation was made.",
- "rdfs:label": "guidelineDate",
+ "rdfs:comment": "Describes, in a [[MediaReview]] when dealing with [[DecontextualizedContent]], background information that can contribute to better interpretation of the [[MediaObject]].",
+ "rdfs:label": "originalMediaContextDescription",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:description"
+ },
"schema:domainIncludes": {
- "@id": "schema:MedicalGuideline"
+ "@id": "schema:MediaReview"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:letterer",
+ "@id": "schema:exerciseType",
"@type": "rdf:Property",
- "rdfs:comment": "The individual who adds lettering, including speech balloons and sound effects, to artwork.",
- "rdfs:label": "letterer",
+ "rdfs:comment": "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.",
+ "rdfs:label": "exerciseType",
"schema:domainIncludes": [
{
- "@id": "schema:ComicStory"
- },
- {
- "@id": "schema:ComicIssue"
+ "@id": "schema:ExerciseAction"
},
{
- "@id": "schema:VisualArtwork"
+ "@id": "schema:ExercisePlan"
}
],
"schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:accelerationTime",
+ "@id": "schema:DeleteAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of editing a recipient by removing one of its objects.",
+ "rdfs:label": "DeleteAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:UpdateAction"
+ }
+ },
+ {
+ "@id": "schema:GroupBoardingPolicy",
+ "@type": "schema:BoardingPolicyType",
+ "rdfs:comment": "The airline boards by groups based on check-in time, priority, etc.",
+ "rdfs:label": "GroupBoardingPolicy"
+ },
+ {
+ "@id": "schema:arrivalBoatTerminal",
"@type": "rdf:Property",
- "rdfs:comment": "The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\\n\\nTypical unit code(s): SEC for seconds\\n\\n* Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use \"SEC\" for seconds and indicate the velocities in the [[name]] of the [[QuantitativeValue]], or use [[valueReference]] with a [[QuantitativeValue]] of 0..60 mph or 0..100 km/h to specify the reference speeds.",
- "rdfs:label": "accelerationTime",
+ "rdfs:comment": "The terminal or port from which the boat arrives.",
+ "rdfs:label": "arrivalBoatTerminal",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:BoatTrip"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:BoatTerminal"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
}
},
{
- "@id": "schema:foodEvent",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The specific food event where the action occurred.",
- "rdfs:label": "foodEvent",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
- "schema:domainIncludes": {
- "@id": "schema:CookAction"
- },
- "schema:rangeIncludes": {
- "@id": "schema:FoodEvent"
+ "@id": "schema:BikeStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A bike store.",
+ "rdfs:label": "BikeStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:tocContinuation",
+ "@id": "schema:OnSitePickup",
+ "@type": "schema:DeliveryMethod",
+ "rdfs:comment": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.",
+ "rdfs:label": "OnSitePickup"
+ },
+ {
+ "@id": "schema:editEIDR",
"@type": "rdf:Property",
- "rdfs:comment": "A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.",
- "rdfs:label": "tocContinuation",
+ "rdfs:comment": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" whose [[titleEIDR]] is \"10.5240/7EC7-228A-510A-053E-CBB8-J\" has several edits, e.g. \"10.5240/1F2A-E1C5-680A-14C6-E76B-I\" and \"10.5240/8A35-3BEE-6497-5D12-9E4F-3\".\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
+ "rdfs:label": "editEIDR",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
"schema:domainIncludes": {
- "@id": "schema:HyperTocEntry"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:HyperTocEntry"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2469"
}
},
{
- "@id": "schema:recordLabel",
+ "@id": "schema:uploadDate",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/ontology/mo/label"
- },
- "rdfs:comment": "The label that issued the release.",
- "rdfs:label": "recordLabel",
+ "rdfs:comment": "Date when this media object was uploaded to this site.",
+ "rdfs:label": "uploadDate",
"schema:domainIncludes": {
- "@id": "schema:MusicRelease"
+ "@id": "schema:MediaObject"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:ItemPage",
+ "@id": "schema:HighSchool",
"@type": "rdfs:Class",
- "rdfs:comment": "A page devoted to a single item, such as a particular product or hotel.",
- "rdfs:label": "ItemPage",
+ "rdfs:comment": "A high school.",
+ "rdfs:label": "HighSchool",
"rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:EducationalOrganization"
}
},
{
- "@id": "schema:doseUnit",
+ "@id": "schema:originAddress",
"@type": "rdf:Property",
- "rdfs:comment": "The unit of the dose, e.g. 'mg'.",
- "rdfs:label": "doseUnit",
+ "rdfs:comment": "Shipper's address.",
+ "rdfs:label": "originAddress",
"schema:domainIncludes": {
- "@id": "schema:DoseSchedule"
+ "@id": "schema:ParcelDelivery"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PostalAddress"
+ }
+ },
+ {
+ "@id": "schema:Synagogue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A synagogue.",
+ "rdfs:label": "Synagogue",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:PalliativeProcedure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.",
+ "rdfs:label": "PalliativeProcedure",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:MedicalProcedure"
+ },
+ {
+ "@id": "schema:MedicalTherapy"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Optician",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A store that sells reading glasses and similar devices for improving vision.",
+ "rdfs:label": "Optician",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:executableLibraryName",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Library file name, e.g., mscorlib.dll, system.web.dll.",
+ "rdfs:label": "executableLibraryName",
+ "schema:domainIncludes": {
+ "@id": "schema:APIReference"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:securityScreening",
+ "@id": "schema:printSection",
"@type": "rdf:Property",
- "rdfs:comment": "The type of security screening the passenger is subject to.",
- "rdfs:label": "securityScreening",
+ "rdfs:comment": "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.",
+ "rdfs:label": "printSection",
"schema:domainIncludes": {
- "@id": "schema:FlightReservation"
+ "@id": "schema:NewsArticle"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:material",
+ "@id": "schema:productionDate",
"@type": "rdf:Property",
- "rdfs:comment": "A material that something is made from, e.g. leather, wool, cotton, paper.",
- "rdfs:label": "material",
+ "rdfs:comment": "The date of production of the item, e.g. vehicle.",
+ "rdfs:label": "productionDate",
"schema:domainIncludes": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Product"
},
{
- "@id": "schema:Product"
+ "@id": "schema:Vehicle"
}
],
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:numAdults",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of adults staying in the unit.",
+ "rdfs:label": "numAdults",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Product"
- },
- {
- "@id": "schema:URL"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Integer"
}
]
},
{
- "@id": "schema:downPayment",
+ "@id": "schema:numberOfBeds",
"@type": "rdf:Property",
- "rdfs:comment": "a type of payment made in cash during the onset of the purchase of an expensive good/service. The payment typically represents only a percentage of the full purchase price.",
- "rdfs:label": "downPayment",
+ "rdfs:comment": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.",
+ "rdfs:label": "numberOfBeds",
"schema:domainIncludes": {
- "@id": "schema:RepaymentSpecification"
+ "@id": "schema:BedDetails"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Number"
- },
- {
- "@id": "schema:MonetaryAmount"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- ]
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
},
{
- "@id": "schema:realEstateAgent",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The real estate agent involved in the action.",
- "rdfs:label": "realEstateAgent",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
- },
- "schema:domainIncludes": {
- "@id": "schema:RentAction"
- },
- "schema:rangeIncludes": {
- "@id": "schema:RealEstateAgent"
+ "@id": "schema:TelevisionChannel",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.",
+ "rdfs:label": "TelevisionChannel",
+ "rdfs:subClassOf": {
+ "@id": "schema:BroadcastChannel"
}
},
{
- "@id": "schema:HardwareStore",
+ "@id": "schema:MedicalStudy",
"@type": "rdfs:Class",
- "rdfs:comment": "A hardware store.",
- "rdfs:label": "HardwareStore",
+ "rdfs:comment": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.",
+ "rdfs:label": "MedicalStudy",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:endOffset",
+ "@id": "schema:readBy",
"@type": "rdf:Property",
- "rdfs:comment": "The end time of the clip expressed as the number of seconds from the beginning of the work.",
- "rdfs:label": "endOffset",
+ "rdfs:comment": "A person who reads (performs) the audiobook.",
+ "rdfs:label": "readBy",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:actor"
+ },
"schema:domainIncludes": {
- "@id": "schema:Clip"
+ "@id": "schema:Audiobook"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://bib.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Number"
- },
- {
- "@id": "schema:HyperTocEntry"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2021"
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:UnemploymentSupport",
- "@type": "schema:GovernmentBenefitsType",
- "rdfs:comment": "UnemploymentSupport: this is a benefit for unemployment support.",
- "rdfs:label": "UnemploymentSupport",
+ "@id": "schema:GenericWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the generic notion of the Web Platform. More specific codes include [[MobileWebPlatform]] and [[DesktopWebPlatform]], as an incomplete list. ",
+ "rdfs:label": "GenericWebPlatform",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
}
},
{
- "@id": "schema:artform",
- "@type": "rdf:Property",
- "rdfs:comment": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.",
- "rdfs:label": "artform",
- "schema:domainIncludes": {
- "@id": "schema:VisualArtwork"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ]
- },
- {
- "@id": "schema:isInvolvedInBiologicalProcess",
+ "@id": "schema:hasMolecularFunction",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
+ "dcterms:source": {
"@id": "http://www.bioschemas.org/BioChemEntity"
},
- "rdfs:comment": "Biological process this BioChemEntity is involved in; please use PropertyValue if you want to include any evidence.",
- "rdfs:label": "isInvolvedInBiologicalProcess",
+ "rdfs:comment": "Molecular function performed by this BioChemEntity; please use PropertyValue if you want to include any evidence.",
+ "rdfs:label": "hasMolecularFunction",
"schema:domainIncludes": {
"@id": "schema:BioChemEntity"
},
@@ -30615,1978 +30644,1803 @@
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
- {
- "@id": "schema:PropertyValue"
- },
{
"@id": "schema:URL"
},
{
"@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:PropertyValue"
}
]
},
{
- "@id": "schema:MedicalRiskCalculator",
+ "@id": "schema:PublicationVolume",
"@type": "rdfs:Class",
- "rdfs:comment": "A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.",
- "rdfs:label": "MedicalRiskCalculator",
+ "rdfs:comment": "A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "PublicationVolume",
"rdfs:subClassOf": {
- "@id": "schema:MedicalRiskEstimator"
+ "@id": "schema:CreativeWork"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:hasOfferCatalog",
+ "@id": "schema:geoDisjoint",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
- "rdfs:label": "hasOfferCatalog",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: \"they have no point in common. They form a set of disconnected geometries.\" (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)",
+ "rdfs:label": "geoDisjoint",
"schema:domainIncludes": [
{
- "@id": "schema:Service"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Place"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:OfferCatalog"
+ ]
+ },
+ {
+ "@id": "schema:ShippingDeliveryTime",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "ShippingDeliveryTime provides various pieces of information about delivery times for shipping.",
+ "rdfs:label": "ShippingDeliveryTime",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:Locksmith",
+ "@id": "schema:UnitPriceSpecification",
"@type": "rdfs:Class",
- "rdfs:comment": "A locksmith.",
- "rdfs:label": "Locksmith",
+ "rdfs:comment": "The price asked for a given offer by the respective organization or person.",
+ "rdfs:label": "UnitPriceSpecification",
"rdfs:subClassOf": {
- "@id": "schema:HomeAndConstructionBusiness"
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:numberOfEmployees",
+ "@id": "schema:netWorth",
"@type": "rdf:Property",
- "rdfs:comment": "The number of employees in an organization e.g. business.",
- "rdfs:label": "numberOfEmployees",
- "schema:domainIncludes": [
+ "rdfs:comment": "The total financial value of the person as calculated by subtracting assets from liabilities.",
+ "rdfs:label": "netWorth",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:BusinessAudience"
+ "@id": "schema:MonetaryAmount"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:PriceSpecification"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- }
+ ]
},
{
- "@id": "schema:recordedIn",
+ "@id": "schema:guideline",
"@type": "rdf:Property",
- "rdfs:comment": "The CreativeWork that captured all or part of this Event.",
- "rdfs:label": "recordedIn",
+ "rdfs:comment": "A medical guideline related to this entity.",
+ "rdfs:label": "guideline",
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:MedicalEntity"
},
- "schema:inverseOf": {
- "@id": "schema:recordedAt"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:MedicalGuideline"
}
},
{
- "@id": "schema:ActiveActionStatus",
- "@type": "schema:ActionStatusType",
- "rdfs:comment": "An in-progress action (e.g, while watching the movie, or driving to a location).",
- "rdfs:label": "ActiveActionStatus"
- },
- {
- "@id": "schema:subStageSuffix",
+ "@id": "schema:byDay",
"@type": "rdf:Property",
- "rdfs:comment": "The substage, e.g. 'a' for Stage IIIa.",
- "rdfs:label": "subStageSuffix",
+ "rdfs:comment": "Defines the day(s) of the week on which a recurring [[Event]] takes place. May be specified using either [[DayOfWeek]], or alternatively [[Text]] conforming to iCal's syntax for byDay recurrence rules.",
+ "rdfs:label": "byDay",
"schema:domainIncludes": {
- "@id": "schema:MedicalConditionStage"
+ "@id": "schema:Schedule"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:DayOfWeek"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
}
},
{
- "@id": "schema:ReservationStatusType",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerated status values for Reservation.",
- "rdfs:label": "ReservationStatusType",
- "rdfs:subClassOf": {
- "@id": "schema:StatusEnumeration"
+ "@id": "schema:totalJobOpenings",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known.",
+ "rdfs:label": "totalJobOpenings",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2329"
}
},
{
- "@id": "schema:arrivalTerminal",
+ "@id": "schema:broadcastDisplayName",
"@type": "rdf:Property",
- "rdfs:comment": "Identifier of the flight's arrival terminal.",
- "rdfs:label": "arrivalTerminal",
+ "rdfs:comment": "The name displayed in the channel guide. For many US affiliates, it is the network name.",
+ "rdfs:label": "broadcastDisplayName",
"schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:BroadcastService"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:AudioObjectSnapshot",
- "@type": "rdfs:Class",
- "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[AudioObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
- "rdfs:label": "AudioObjectSnapshot",
- "rdfs:subClassOf": {
- "@id": "schema:AudioObject"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:accessCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Password, PIN, or access code needed for delivery (e.g. from a locker).",
+ "rdfs:label": "accessCode",
+ "schema:domainIncludes": {
+ "@id": "schema:DeliveryEvent"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:ReturnInStore",
- "@type": "schema:ReturnMethodEnumeration",
- "rdfs:comment": "Specifies that product returns must be made in a store.",
- "rdfs:label": "ReturnInStore",
+ "@id": "schema:estimatesRiskOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The condition, complication, or symptom whose risk is being estimated.",
+ "rdfs:label": "estimatesRiskOf",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalEntity"
}
},
{
- "@id": "schema:seasonNumber",
+ "@id": "schema:usageInfo",
"@type": "rdf:Property",
- "rdfs:comment": "Position of the season within an ordered group of seasons.",
- "rdfs:label": "seasonNumber",
- "rdfs:subPropertyOf": {
- "@id": "schema:position"
- },
+ "rdfs:comment": "The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information, e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.\n\nThis property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.",
+ "rdfs:label": "usageInfo",
"schema:domainIncludes": {
- "@id": "schema:CreativeWorkSeason"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Integer"
+ "@id": "schema:CreativeWork"
}
- ]
- },
- {
- "@id": "schema:SeekToAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure.",
- "rdfs:label": "SeekToAction",
- "rdfs:subClassOf": {
- "@id": "schema:Action"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2722"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2454"
}
},
{
- "@id": "schema:suggestedAnswer",
+ "@id": "schema:installUrl",
"@type": "rdf:Property",
- "rdfs:comment": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.",
- "rdfs:label": "suggestedAnswer",
+ "rdfs:comment": "URL at which the app may be installed, if different from the URL of the item.",
+ "rdfs:label": "installUrl",
"schema:domainIncludes": {
- "@id": "schema:Question"
+ "@id": "schema:SoftwareApplication"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Answer"
- },
- {
- "@id": "schema:ItemList"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
},
{
- "@id": "schema:MedicalGuidelineRecommendation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.",
- "rdfs:label": "MedicalGuidelineRecommendation",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalGuideline"
+ "@id": "schema:knownVehicleDamages",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A textual description of known damages, both repaired and unrepaired.",
+ "rdfs:label": "knownVehicleDamages",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:HealthAndBeautyBusiness",
+ "@id": "schema:RadioClip",
"@type": "rdfs:Class",
- "rdfs:comment": "Health and beauty.",
- "rdfs:label": "HealthAndBeautyBusiness",
+ "rdfs:comment": "A short radio program or a segment/part of a radio program.",
+ "rdfs:label": "RadioClip",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:Clip"
}
},
{
- "@id": "schema:TattooParlor",
+ "@id": "schema:MedicalImagingTechnique",
"@type": "rdfs:Class",
- "rdfs:comment": "A tattoo parlor.",
- "rdfs:label": "TattooParlor",
+ "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes. Enumerated type.",
+ "rdfs:label": "MedicalImagingTechnique",
"rdfs:subClassOf": {
- "@id": "schema:HealthAndBeautyBusiness"
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:DonateAction",
+ "@id": "schema:WearableSizeSystemEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.",
- "rdfs:label": "DonateAction",
+ "rdfs:comment": "Enumerates common size systems specific for wearable products",
+ "rdfs:label": "WearableSizeSystemEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:TradeAction"
- }
- },
- {
- "@id": "schema:UsageOrScheduleHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about how, when, frequency and dosage of a topic.",
- "rdfs:label": "UsageOrScheduleHealthAspect",
+ "@id": "schema:SizeSystemEnumeration"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:salaryUponCompletion",
- "@type": "rdf:Property",
- "rdfs:comment": "The expected salary upon completing the training.",
- "rdfs:label": "salaryUponCompletion",
- "schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
- },
+ "@id": "schema:Nonprofit501d",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations.",
+ "rdfs:label": "Nonprofit501d",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmountDistribution"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:inChIKey",
- "@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/MolecularEntity"
- },
- "rdfs:comment": "InChIKey is a hashed version of the full InChI (using the SHA-256 algorithm).",
- "rdfs:label": "inChIKey",
- "rdfs:subPropertyOf": {
- "@id": "schema:hasRepresentation"
- },
- "schema:domainIncludes": {
- "@id": "schema:MolecularEntity"
- },
+ "@id": "schema:HowOrWhereHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about how or where to find a topic. Also may contain location data that can be used for where to look for help if the topic is observed.",
+ "rdfs:label": "HowOrWhereHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:Guide",
+ "@id": "schema:TechArticle",
"@type": "rdfs:Class",
- "rdfs:comment": "[[Guide]] is a page or article that recommend specific products or services, or aspects of a thing for a user to consider. A [[Guide]] may represent a Buying Guide and detail aspects of products or services for a user to consider. A [[Guide]] may represent a Product Guide and recommend specific products or services. A [[Guide]] may represent a Ranked List and recommend specific products or services with ranking.",
- "rdfs:label": "Guide",
+ "rdfs:comment": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.",
+ "rdfs:label": "TechArticle",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2405"
+ "@id": "schema:Article"
}
},
{
- "@id": "schema:activityDuration",
- "@type": "rdf:Property",
- "rdfs:comment": "Length of time to engage in the activity.",
- "rdfs:label": "activityDuration",
- "schema:domainIncludes": {
- "@id": "schema:ExercisePlan"
+ "@id": "schema:Otolaryngologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.",
+ "rdfs:label": "Otolaryngologic",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:Duration"
- }
- ]
+ }
},
{
- "@id": "schema:sportsEvent",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The sports event where this action occurred.",
- "rdfs:label": "sportsEvent",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
- "schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
- },
- "schema:rangeIncludes": {
- "@id": "schema:SportsEvent"
- }
+ "@id": "schema:PreSale",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available for ordering and delivery before general availability.",
+ "rdfs:label": "PreSale"
},
{
- "@id": "schema:AddAction",
+ "@id": "schema:Hostel",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of editing by adding an object to a collection.",
- "rdfs:label": "AddAction",
+ "rdfs:comment": "A hostel - cheap accommodation, often in shared dormitories.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "Hostel",
"rdfs:subClassOf": {
- "@id": "schema:UpdateAction"
+ "@id": "schema:LodgingBusiness"
}
},
{
- "@id": "schema:infectiousAgent",
- "@type": "rdf:Property",
- "rdfs:comment": "The actual infectious agent, such as a specific bacterium.",
- "rdfs:label": "infectiousAgent",
- "schema:domainIncludes": {
- "@id": "schema:InfectiousDisease"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:BoatTerminal",
+ "@id": "schema:PsychologicalTreatment",
"@type": "rdfs:Class",
- "rdfs:comment": "A terminal for boats, ships, and other water vessels.",
- "rdfs:label": "BoatTerminal",
+ "rdfs:comment": "A process of care relying upon counseling, dialogue and communication aimed at improving a mental health condition without use of drugs.",
+ "rdfs:label": "PsychologicalTreatment",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:TherapeuticProcedure"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:validThrough",
+ "@id": "schema:salaryCurrency",
"@type": "rdf:Property",
- "rdfs:comment": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.",
- "rdfs:label": "validThrough",
+ "rdfs:comment": "The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217)) used for the main salary information in this job posting or for this employee.",
+ "rdfs:label": "salaryCurrency",
"schema:domainIncludes": [
- {
- "@id": "schema:LocationFeatureSpecification"
- },
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:OpeningHoursSpecification"
- },
{
"@id": "schema:JobPosting"
},
{
- "@id": "schema:MonetaryAmount"
- },
- {
- "@id": "schema:PriceSpecification"
- },
- {
- "@id": "schema:Demand"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Date"
- },
- {
- "@id": "schema:DateTime"
+ "@id": "schema:EmployeeRole"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:MedicalProcedure",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/50731006"
- },
- "rdfs:comment": "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques.",
- "rdfs:label": "MedicalProcedure",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:VeganDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet exclusive of all animal products.",
- "rdfs:label": "VeganDiet"
- },
- {
- "@id": "schema:DigitalDocument",
- "@type": "rdfs:Class",
- "rdfs:comment": "An electronic file or document.",
- "rdfs:label": "DigitalDocument",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:Nonprofit501c6",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards.",
- "rdfs:label": "Nonprofit501c6",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:acceptsReservations",
+ "@id": "schema:homeTeam",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```.",
- "rdfs:label": "acceptsReservations",
+ "rdfs:comment": "The home team in a sports event.",
+ "rdfs:label": "homeTeam",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:competitor"
+ },
"schema:domainIncludes": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:SportsEvent"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Boolean"
+ "@id": "schema:SportsTeam"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:PublicHolidays",
- "@type": "schema:DayOfWeek",
- "rdfs:comment": "This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a \"day of the week\", it can be used with [[OpeningHoursSpecification]]. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs.",
- "rdfs:label": "PublicHolidays",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "schema:PerformAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of participating in performance arts.",
+ "rdfs:label": "PerformAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlayAction"
}
},
{
- "@id": "schema:variantCover",
+ "@id": "schema:PreOrder",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available for pre-order.",
+ "rdfs:label": "PreOrder"
+ },
+ {
+ "@id": "schema:byMonthDay",
"@type": "rdf:Property",
- "rdfs:comment": "A description of the variant cover\n \tfor the issue, if the issue is a variant printing. For example, \"Bryan Hitch\n \tVariant Cover\" or \"2nd Printing Variant\".",
- "rdfs:label": "variantCover",
+ "rdfs:comment": "Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31.",
+ "rdfs:label": "byMonthDay",
"schema:domainIncludes": {
- "@id": "schema:ComicIssue"
+ "@id": "schema:Schedule"
},
"schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
}
},
{
- "@id": "schema:Cardiovascular",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.",
- "rdfs:label": "Cardiovascular",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:isLiveBroadcast",
+ "@type": "rdf:Property",
+ "rdfs:comment": "True if the broadcast is of a live event.",
+ "rdfs:label": "isLiveBroadcast",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastEvent"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:Intangible",
+ "@id": "schema:SizeSystemEnumeration",
"@type": "rdfs:Class",
- "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
- "rdfs:label": "Intangible",
+ "rdfs:comment": "Enumerates common size systems for different categories of products, for example \"EN-13402\" or \"UK\" for wearables or \"Imperial\" for screws.",
+ "rdfs:label": "SizeSystemEnumeration",
"rdfs:subClassOf": {
- "@id": "schema:Thing"
- }
- },
- {
- "@id": "schema:knows",
- "@type": "rdf:Property",
- "rdfs:comment": "The most generic bi-directional social/work relation.",
- "rdfs:label": "knows",
- "schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Enumeration"
},
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:timeOfDay",
+ "@id": "schema:repeatCount",
"@type": "rdf:Property",
- "rdfs:comment": "The time of day the program normally runs. For example, \"evenings\".",
- "rdfs:label": "timeOfDay",
+ "rdfs:comment": "Defines the number of times a recurring [[Event]] will take place.",
+ "rdfs:label": "repeatCount",
"schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:Schedule"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Integer"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
}
},
{
- "@id": "schema:MedicalGuideline",
+ "@id": "schema:ChildrensEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.",
- "rdfs:label": "MedicalGuideline",
+ "rdfs:comment": "Event type: Children's event.",
+ "rdfs:label": "ChildrensEvent",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:workHours",
+ "@id": "schema:servingSize",
"@type": "rdf:Property",
- "rdfs:comment": "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).",
- "rdfs:label": "workHours",
+ "rdfs:comment": "The serving size, in terms of the number of volume or mass.",
+ "rdfs:label": "servingSize",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:NutritionInformation"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:isRelatedTo",
+ "@id": "schema:foodEstablishment",
"@type": "rdf:Property",
- "rdfs:comment": "A pointer to another, somehow related product (or multiple products).",
- "rdfs:label": "isRelatedTo",
- "schema:domainIncludes": [
- {
- "@id": "schema:Service"
- },
- {
- "@id": "schema:Product"
- }
- ],
+ "rdfs:comment": "A sub property of location. The specific food establishment where the action occurred.",
+ "rdfs:label": "foodEstablishment",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CookAction"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Product"
+ "@id": "schema:FoodEstablishment"
},
{
- "@id": "schema:Service"
+ "@id": "schema:Place"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
+ ]
},
{
- "@id": "schema:AudioObject",
- "@type": "rdfs:Class",
- "rdfs:comment": "An audio file.",
- "rdfs:label": "AudioObject",
- "rdfs:subClassOf": {
- "@id": "schema:MediaObject"
+ "@id": "schema:candidate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The candidate subject of this action.",
+ "rdfs:label": "candidate",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ "schema:domainIncludes": {
+ "@id": "schema:VoteAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:IndividualProduct",
+ "@id": "schema:VideoObject",
"@type": "rdfs:Class",
- "rdfs:comment": "A single, identifiable product instance (e.g. a laptop with a particular serial number).",
- "rdfs:label": "IndividualProduct",
+ "rdfs:comment": "A video file.",
+ "rdfs:label": "VideoObject",
"rdfs:subClassOf": {
- "@id": "schema:Product"
+ "@id": "schema:MediaObject"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
}
},
{
- "@id": "schema:MusculoskeletalExam",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Musculoskeletal system clinical examination.",
- "rdfs:label": "MusculoskeletalExam",
+ "@id": "schema:AuthoritativeLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates that the publisher gives some special status to the publication of the document. (\"The Queens Printer\" version of a UK Act of Parliament, or the PDF version of a Directive published by the EU Office of Publications.) Something \"Authoritative\" is considered to be also [[OfficialLegalValue]].",
+ "rdfs:label": "AuthoritativeLegalValue",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-authoritative"
}
},
{
- "@id": "schema:reviewBody",
+ "@id": "schema:language",
"@type": "rdf:Property",
- "rdfs:comment": "The actual body of the review.",
- "rdfs:label": "reviewBody",
- "schema:domainIncludes": {
- "@id": "schema:Review"
+ "rdfs:comment": "A sub property of instrument. The language used on this action.",
+ "rdfs:label": "language",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:CommunicateAction"
+ },
+ {
+ "@id": "schema:WriteAction"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Language"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:inLanguage"
}
},
{
- "@id": "schema:yearlyRevenue",
- "@type": "rdf:Property",
- "rdfs:comment": "The size of the business in annual revenue.",
- "rdfs:label": "yearlyRevenue",
- "schema:domainIncludes": {
- "@id": "schema:BusinessAudience"
+ "@id": "schema:WearableSizeSystemFR",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "French size system for wearables.",
+ "rdfs:label": "WearableSizeSystemFR",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:MotorizedBicycle",
+ "@id": "schema:BroadcastRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "BroadcastRelease.",
+ "rdfs:label": "BroadcastRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:TaxiService",
"@type": "rdfs:Class",
- "rdfs:comment": "A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling.",
- "rdfs:label": "MotorizedBicycle",
+ "rdfs:comment": "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.",
+ "rdfs:label": "TaxiService",
"rdfs:subClassOf": {
- "@id": "schema:Vehicle"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:Service"
}
},
{
- "@id": "schema:ItemAvailability",
+ "@id": "schema:TattooParlor",
"@type": "rdfs:Class",
- "rdfs:comment": "A list of possible product availability options.",
- "rdfs:label": "ItemAvailability",
+ "rdfs:comment": "A tattoo parlor.",
+ "rdfs:label": "TattooParlor",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:HealthAndBeautyBusiness"
}
},
{
- "@id": "schema:inProductGroupWithID",
+ "@id": "schema:includesHealthPlanFormulary",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. ",
- "rdfs:label": "inProductGroupWithID",
+ "rdfs:comment": "Formularies covered by this plan.",
+ "rdfs:label": "includesHealthPlanFormulary",
"schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:HealthInsurancePlan"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:HealthPlanFormulary"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:SocialMediaPosting",
- "@type": "rdfs:Class",
- "rdfs:comment": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.",
- "rdfs:label": "SocialMediaPosting",
- "rdfs:subClassOf": {
- "@id": "schema:Article"
+ "@id": "schema:petsAllowed",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.",
+ "rdfs:label": "petsAllowed",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:LodgingBusiness"
+ },
+ {
+ "@id": "schema:Accommodation"
+ },
+ {
+ "@id": "schema:ApartmentComplex"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Boolean"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:numberOfPlayers",
+ "@id": "schema:appliesToDeliveryMethod",
"@type": "rdf:Property",
- "rdfs:comment": "Indicate how many people can play this game (minimum, maximum, or range).",
- "rdfs:label": "numberOfPlayers",
+ "rdfs:comment": "The delivery method(s) to which the delivery charge or payment charge specification applies.",
+ "rdfs:label": "appliesToDeliveryMethod",
"schema:domainIncludes": [
{
- "@id": "schema:Game"
+ "@id": "schema:DeliveryChargeSpecification"
},
{
- "@id": "schema:VideoGameSeries"
+ "@id": "schema:PaymentChargeSpecification"
}
],
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:DeliveryMethod"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:OfflinePermanently",
- "@type": "schema:GameServerStatus",
- "rdfs:comment": "Game server status: OfflinePermanently. Server is offline and not available.",
- "rdfs:label": "OfflinePermanently"
- },
- {
- "@id": "schema:coursePrerequisites",
+ "@id": "schema:contactPoint",
"@type": "rdf:Property",
- "rdfs:comment": "Requirements for taking the Course. May be completion of another [[Course]] or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].",
- "rdfs:label": "coursePrerequisites",
- "schema:domainIncludes": {
- "@id": "schema:Course"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "A contact point for a person or organization.",
+ "rdfs:label": "contactPoint",
+ "schema:domainIncludes": [
{
- "@id": "schema:Course"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:AlignmentObject"
+ "@id": "schema:Person"
},
{
- "@id": "schema:Text"
+ "@id": "schema:HealthInsurancePlan"
}
- ]
- },
- {
- "@id": "schema:AggregateOffer",
- "@type": "rdfs:Class",
- "rdfs:comment": "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\\n\\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined [[businessFunction]] value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.",
- "rdfs:label": "AggregateOffer",
- "rdfs:subClassOf": {
- "@id": "schema:Offer"
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
}
},
{
- "@id": "schema:Poster",
- "@type": "rdfs:Class",
- "rdfs:comment": "A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.",
- "rdfs:label": "Poster",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
+ "@id": "schema:EnergyStarCertified",
+ "@type": "schema:EnergyStarEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EnergyStar certification.",
+ "rdfs:label": "EnergyStarCertified",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
- }
- },
- {
- "@id": "schema:embedUrl",
- "@type": "rdf:Property",
- "rdfs:comment": "A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.",
- "rdfs:label": "embedUrl",
- "schema:domainIncludes": {
- "@id": "schema:MediaObject"
- },
- "schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:CourseInstance",
+ "@id": "schema:SendAction",
"@type": "rdfs:Class",
- "rdfs:comment": "An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.",
- "rdfs:label": "CourseInstance",
+ "rdfs:comment": "The act of physically/electronically dispatching an object for transfer from an origin to a destination. Related actions:\\n\\n* [[ReceiveAction]]: The reciprocal of SendAction.\\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).",
+ "rdfs:label": "SendAction",
"rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:TransferAction"
}
},
{
- "@id": "schema:experienceInPlaceOfEducation",
+ "@id": "schema:alcoholWarning",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates whether a [[JobPosting]] will accept experience (as indicated by [[OccupationalExperienceRequirements]]) in place of its formal educational qualifications (as indicated by [[educationRequirements]]). If true, indicates that satisfying one of these requirements is sufficient.",
- "rdfs:label": "experienceInPlaceOfEducation",
+ "rdfs:comment": "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.",
+ "rdfs:label": "alcoholWarning",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:arterialBranch",
- "@type": "rdf:Property",
- "rdfs:comment": "The branches that comprise the arterial structure.",
- "rdfs:label": "arterialBranch",
- "schema:domainIncludes": {
- "@id": "schema:Artery"
+ "@id": "schema:Demand",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.",
+ "rdfs:label": "Demand",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:relatedTherapy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A medical therapy related to this anatomy.",
+ "rdfs:label": "relatedTherapy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:AnatomicalStructure"
+ },
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:MedicalTherapy"
}
},
{
- "@id": "schema:FDAcategoryC",
- "@type": "schema:DrugPregnancyCategory",
- "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.",
- "rdfs:label": "FDAcategoryC",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:PaymentMethod",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n* http://purl.org/goodrelations/v1#ByInvoice\\n* http://purl.org/goodrelations/v1#Cash\\n* http://purl.org/goodrelations/v1#CheckInAdvance\\n* http://purl.org/goodrelations/v1#COD\\n* http://purl.org/goodrelations/v1#DirectDebit\\n* http://purl.org/goodrelations/v1#GoogleCheckout\\n* http://purl.org/goodrelations/v1#PayPal\\n* http://purl.org/goodrelations/v1#PaySwarm\n ",
+ "rdfs:label": "PaymentMethod",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:weightTotal",
+ "@id": "schema:hasHealthAspect",
"@type": "rdf:Property",
- "rdfs:comment": "The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "weightTotal",
+ "rdfs:comment": "Indicates the aspect or aspects specifically addressed in some [[HealthTopicContent]]. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects.",
+ "rdfs:label": "hasHealthAspect",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:HealthTopicContent"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:HealthAspectEnumeration"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:orderNumber",
- "@type": "rdf:Property",
- "rdfs:comment": "The identifier of the transaction.",
- "rdfs:label": "orderNumber",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
- "schema:domainIncludes": {
- "@id": "schema:Order"
+ "@id": "schema:DrugPregnancyCategory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.",
+ "rdfs:label": "DrugPregnancyCategory",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEnumeration"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:FourWheelDriveConfiguration",
- "@type": "schema:DriveWheelConfigurationValue",
- "rdfs:comment": "Four-wheel drive is a transmission layout where the engine primarily drives two wheels with a part-time four-wheel drive capability.",
- "rdfs:label": "FourWheelDriveConfiguration",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:legislationApplies",
+ "@id": "schema:educationalProgramMode",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#implements"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#implements"
- },
- "rdfs:comment": "Indicates that this legislation (or part of a legislation) somehow transfers another legislation in a different legislative context. This is an informative link, and it has no legal value. For legally-binding links of transposition, use the legislationTransposes property. For example an informative consolidated law of a European Union's member state \"applies\" the consolidated version of the European Directive implemented in it.",
- "rdfs:label": "legislationApplies",
+ "rdfs:comment": "Similar to courseMode, the medium or means of delivery of the program as a whole. The value may either be a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).",
+ "rdfs:label": "educationalProgramMode",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
+ "@id": "schema:EducationalOccupationalProgram"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Legislation"
- },
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:Text"
},
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:URL"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ }
},
{
- "@id": "schema:accommodationFloorPlan",
+ "@id": "schema:ineligibleRegion",
"@type": "rdf:Property",
- "rdfs:comment": "A floorplan of some [[Accommodation]].",
- "rdfs:label": "accommodationFloorPlan",
+ "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.\\n\\nSee also [[eligibleRegion]].\n ",
+ "rdfs:label": "ineligibleRegion",
"schema:domainIncludes": [
{
- "@id": "schema:Residence"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:Accommodation"
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:MediaObject"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:DeliveryChargeSpecification"
}
],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:FloorPlan"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Place"
+ },
+ {
+ "@id": "schema:GeoShape"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2242"
}
},
{
- "@id": "schema:ReturnByMail",
- "@type": "schema:ReturnMethodEnumeration",
- "rdfs:comment": "Specifies that product returns must to be done by mail.",
- "rdfs:label": "ReturnByMail",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:BankAccount",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.",
+ "rdfs:label": "BankAccount",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:interactionCount",
+ "@id": "schema:subStructure",
"@type": "rdf:Property",
- "rdfs:comment": "This property is deprecated, alongside the UserInteraction types on which it depended.",
- "rdfs:label": "interactionCount",
- "schema:supersededBy": {
- "@id": "schema:interactionStatistic"
+ "rdfs:comment": "Component (sub-)structure(s) that comprise this anatomical structure.",
+ "rdfs:label": "subStructure",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
}
},
{
- "@id": "schema:EducationEvent",
+ "@id": "schema:SubscribeAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Event type: Education event.",
- "rdfs:label": "EducationEvent",
+ "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.",
+ "rdfs:label": "SubscribeAction",
"rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:InteractAction"
}
},
{
- "@id": "schema:pickupTime",
+ "@id": "schema:position",
"@type": "rdf:Property",
- "rdfs:comment": "When a taxi will pickup a passenger or a rental car can be picked up.",
- "rdfs:label": "pickupTime",
+ "rdfs:comment": "The position of an item in a series or sequence of items.",
+ "rdfs:label": "position",
"schema:domainIncludes": [
{
- "@id": "schema:TaxiReservation"
+ "@id": "schema:ListItem"
},
{
- "@id": "schema:RentalCarReservation"
+ "@id": "schema:CreativeWork"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
- }
- },
- {
- "@id": "schema:accountOverdraftLimit",
- "@type": "rdf:Property",
- "rdfs:comment": "An overdraft is an extension of credit from a lending institution when an account reaches zero. An overdraft allows the individual to continue withdrawing money even if the account has no funds in it. Basically the bank allows people to borrow a set amount of money.",
- "rdfs:label": "accountOverdraftLimit",
- "schema:domainIncludes": {
- "@id": "schema:BankAccount"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- ]
- },
- {
- "@id": "schema:endorsee",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The person/organization being supported.",
- "rdfs:label": "endorsee",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
- },
- "schema:domainIncludes": {
- "@id": "schema:EndorseAction"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Integer"
}
]
},
{
- "@id": "schema:MisconceptionsHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content about common misconceptions and myths that are related to a topic.",
- "rdfs:label": "MisconceptionsHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
- }
- },
- {
- "@id": "schema:ownershipFundingInfo",
+ "@id": "schema:encodingFormat",
"@type": "rdf:Property",
- "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.",
- "rdfs:label": "ownershipFundingInfo",
- "rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
- },
+ "rdfs:comment": "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)), e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.\n\nIn cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.",
+ "rdfs:label": "encodingFormat",
"schema:domainIncludes": [
{
- "@id": "schema:NewsMediaOrganization"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:MediaObject"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
- {
- "@id": "schema:AboutPage"
- },
{
"@id": "schema:URL"
},
{
"@id": "schema:Text"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
- },
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
}
]
},
{
- "@id": "schema:BedType",
+ "@id": "schema:Number",
+ "@type": [
+ "rdfs:Class",
+ "schema:DataType"
+ ],
+ "rdfs:comment": "Data type: Number.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "Number"
+ },
+ {
+ "@id": "schema:Waterfall",
"@type": "rdfs:Class",
- "rdfs:comment": "A type of bed. This is used for indicating the bed or beds available in an accommodation.",
- "rdfs:label": "BedType",
+ "rdfs:comment": "A waterfall, like Niagara.",
+ "rdfs:label": "Waterfall",
"rdfs:subClassOf": {
- "@id": "schema:QualitativeValue"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1262"
- },
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
- }
- ]
+ "@id": "schema:BodyOfWater"
+ }
},
{
- "@id": "schema:encodingType",
+ "@id": "schema:TakeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\\n\\nRelated actions:\\n\\n* [[GiveAction]]: The reciprocal of TakeAction.\\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transferred.",
+ "rdfs:label": "TakeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TransferAction"
+ }
+ },
+ {
+ "@id": "schema:dateVehicleFirstRegistered",
"@type": "rdf:Property",
- "rdfs:comment": "The supported encoding type(s) for an EntryPoint request.",
- "rdfs:label": "encodingType",
+ "rdfs:comment": "The date of the first registration of the vehicle with the respective public authorities.",
+ "rdfs:label": "dateVehicleFirstRegistered",
"schema:domainIncludes": {
- "@id": "schema:EntryPoint"
+ "@id": "schema:Vehicle"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:CovidTestingFacility",
+ "@id": "schema:State",
"@type": "rdfs:Class",
- "rdfs:comment": "A CovidTestingFacility is a [[MedicalClinic]] where testing for the COVID-19 Coronavirus\n disease is available. If the facility is being made available from an established [[Pharmacy]], [[Hotel]], or other\n non-medical organization, multiple types can be listed. This makes it easier to re-use existing schema.org information\n about that place e.g. contact info, address, opening hours. Note that in an emergency, such information may not always be reliable.\n ",
- "rdfs:label": "CovidTestingFacility",
+ "rdfs:comment": "A state or province of a country.",
+ "rdfs:label": "State",
"rdfs:subClassOf": {
- "@id": "schema:MedicalClinic"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "@id": "schema:AdministrativeArea"
}
},
{
- "@id": "schema:SizeSystemEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumerates common size systems for different categories of products, for example \"EN-13402\" or \"UK\" for wearables or \"Imperial\" for screws.",
- "rdfs:label": "SizeSystemEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
+ "@id": "schema:ReturnFeesCustomerResponsibility",
+ "@type": "schema:ReturnFeesEnumeration",
+ "rdfs:comment": "Specifies that product returns must be paid for, and are the responsibility of, the customer.",
+ "rdfs:label": "ReturnFeesCustomerResponsibility",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:publication",
+ "@id": "schema:audienceType",
"@type": "rdf:Property",
- "rdfs:comment": "A publication event associated with the item.",
- "rdfs:label": "publication",
+ "rdfs:comment": "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).",
+ "rdfs:label": "audienceType",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Audience"
},
"schema:rangeIncludes": {
- "@id": "schema:PublicationEvent"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:WearableSizeGroupExtraShort",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Extra Short\" for wearables.",
- "rdfs:label": "WearableSizeGroupExtraShort",
+ "@id": "schema:drugClass",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The class of drug this belongs to (e.g., statins).",
+ "rdfs:label": "drugClass",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:FurnitureStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A furniture store.",
- "rdfs:label": "FurnitureStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugClass"
}
},
{
- "@id": "schema:costOrigin",
+ "@id": "schema:code",
"@type": "rdf:Property",
- "rdfs:comment": "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.",
- "rdfs:label": "costOrigin",
+ "rdfs:comment": "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.",
+ "rdfs:label": "code",
"schema:domainIncludes": {
- "@id": "schema:DrugCost"
+ "@id": "schema:MedicalEntity"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MedicalCode"
}
},
{
- "@id": "schema:PodcastSeason",
+ "@id": "schema:NewCondition",
+ "@type": "schema:OfferItemCondition",
+ "rdfs:comment": "Indicates that the item is new.",
+ "rdfs:label": "NewCondition"
+ },
+ {
+ "@id": "schema:LeaveAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used.",
- "rdfs:label": "PodcastSeason",
+ "rdfs:comment": "An agent leaves an event / group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: The antonym of LeaveAction.\\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.",
+ "rdfs:label": "LeaveAction",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWorkSeason"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/373"
+ "@id": "schema:InteractAction"
}
},
{
- "@id": "schema:noBylinesPolicy",
+ "@id": "schema:priceSpecification",
"@type": "rdf:Property",
- "rdfs:comment": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines.",
- "rdfs:label": "noBylinesPolicy",
- "rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
- },
- "schema:domainIncludes": {
- "@id": "schema:NewsMediaOrganization"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
+ "rdfs:label": "priceSpecification",
+ "schema:domainIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
+ "@id": "schema:Offer"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:TradeAction"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:trainName",
+ "@id": "schema:mainContentOfPage",
"@type": "rdf:Property",
- "rdfs:comment": "The name of the train (e.g. The Orient Express).",
- "rdfs:label": "trainName",
+ "rdfs:comment": "Indicates if this web page element is the main subject of the page.",
+ "rdfs:label": "mainContentOfPage",
"schema:domainIncludes": {
- "@id": "schema:TrainTrip"
+ "@id": "schema:WebPage"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:WebPageElement"
}
},
{
- "@id": "schema:firstPerformance",
+ "@id": "schema:copyrightYear",
"@type": "rdf:Property",
- "rdfs:comment": "The date and place the work was first performed.",
- "rdfs:label": "firstPerformance",
+ "rdfs:comment": "The year during which the claimed copyright for the CreativeWork was first asserted.",
+ "rdfs:label": "copyrightYear",
"schema:domainIncludes": {
- "@id": "schema:MusicComposition"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Event"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:MedicalObservationalStudyDesign",
- "@type": "rdfs:Class",
- "rdfs:comment": "Design models for observational medical studies. Enumerated type.",
- "rdfs:label": "MedicalObservationalStudyDesign",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
- },
+ "@id": "schema:epidemiology",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The characteristics of associated patients, such as age, gender, race etc.",
+ "rdfs:label": "epidemiology",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PhysicalActivity"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:box",
- "@type": "rdf:Property",
- "rdfs:comment": "A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.",
- "rdfs:label": "box",
- "schema:domainIncludes": {
- "@id": "schema:GeoShape"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:featureList",
- "@type": "rdf:Property",
- "rdfs:comment": "Features or modules provided by this application (and possibly required by other applications).",
- "rdfs:label": "featureList",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ]
- },
- {
- "@id": "schema:CDCPMDRecord",
+ "@id": "schema:AllocateAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A CDCPMDRecord is a data structure representing a record in a CDC tabular data format\n used for hospital data reporting. See [documentation](/docs/cdc-covid.html) for details, and the linked CDC materials for authoritative\n definitions used as the source here.\n ",
- "rdfs:label": "CDCPMDRecord",
+ "rdfs:comment": "The act of organizing tasks/objects/events by associating resources to it.",
+ "rdfs:label": "AllocateAction",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:WearableMeasurementChestOrBust",
+ "@type": "schema:WearableMeasurementTypeEnumeration",
+ "rdfs:comment": "Measurement of the chest/bust section, for example of a suit",
+ "rdfs:label": "WearableMeasurementChestOrBust",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:deliveryTime",
+ "@id": "schema:geoIntersects",
"@type": "rdf:Property",
- "rdfs:comment": "The total delay between the receipt of the order and the goods reaching the final customer.",
- "rdfs:label": "deliveryTime",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoIntersects",
"schema:domainIncludes": [
{
- "@id": "schema:DeliveryTimeSettings"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:OfferShippingDetails"
+ "@id": "schema:Place"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:ShippingDeliveryTime"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
- }
- },
- {
- "@id": "schema:HobbyShop",
- "@type": "rdfs:Class",
- "rdfs:comment": "A store that sells materials useful or necessary for various hobbies.",
- "rdfs:label": "HobbyShop",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
- }
- },
- {
- "@id": "schema:sharedContent",
- "@type": "rdf:Property",
- "rdfs:comment": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.",
- "rdfs:label": "sharedContent",
- "schema:domainIncludes": {
- "@id": "schema:SocialMediaPosting"
- },
- "schema:rangeIncludes": {
- "@id": "schema:CreativeWork"
- }
- },
- {
- "@id": "schema:dateIssued",
- "@type": "rdf:Property",
- "rdfs:comment": "The date the ticket was issued.",
- "rdfs:label": "dateIssued",
- "schema:domainIncludes": {
- "@id": "schema:Ticket"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:DateTime"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:Date"
+ "@id": "schema:Place"
}
]
},
{
- "@id": "schema:biologicalRole",
+ "@id": "schema:flightDistance",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org"
- },
- "rdfs:comment": "A role played by the BioChemEntity within a biological context.",
- "rdfs:label": "biologicalRole",
+ "rdfs:comment": "The distance of the flight.",
+ "rdfs:label": "flightDistance",
"schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Flight"
},
- "schema:rangeIncludes": {
- "@id": "schema:DefinedTerm"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ]
},
{
- "@id": "schema:mapType",
+ "@id": "schema:serviceLocation",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the kind of Map, from the MapCategoryType Enumeration.",
- "rdfs:label": "mapType",
+ "rdfs:comment": "The location (e.g. civic structure, local business, etc.) where a person can go to access the service.",
+ "rdfs:label": "serviceLocation",
"schema:domainIncludes": {
- "@id": "schema:Map"
+ "@id": "schema:ServiceChannel"
},
"schema:rangeIncludes": {
- "@id": "schema:MapCategoryType"
- }
- },
- {
- "@id": "schema:WearableSizeSystemEurope",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "European size system for wearables.",
- "rdfs:label": "WearableSizeSystemEurope",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:Mosque",
+ "@id": "schema:Property",
"@type": "rdfs:Class",
- "rdfs:comment": "A mosque.",
- "rdfs:label": "Mosque",
+ "owl:equivalentClass": {
+ "@id": "rdf:Property"
+ },
+ "rdfs:comment": "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.",
+ "rdfs:label": "Property",
"rdfs:subClassOf": {
- "@id": "schema:PlaceOfWorship"
- }
- },
- {
- "@id": "schema:Radiography",
- "@type": [
- "schema:MedicalSpecialty",
- "schema:MedicalImagingTechnique"
- ],
- "rdfs:comment": "Radiography is an imaging technique that uses electromagnetic radiation other than visible light, especially X-rays, to view the internal structure of a non-uniformly composed and opaque object such as the human body.",
- "rdfs:label": "Radiography",
+ "@id": "schema:Intangible"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://meta.schema.org"
}
},
{
- "@id": "schema:taxonRank",
- "@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/Taxon"
- },
- "rdfs:comment": "The taxonomic rank of this taxon given preferably as a URI from a controlled vocabulary – (typically the ranks from TDWG TaxonRank ontology or equivalent Wikidata URIs).",
- "rdfs:label": "taxonRank",
- "schema:domainIncludes": {
- "@id": "schema:Taxon"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:PropertyValue"
- },
+ "@id": "schema:TVSeason",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Season dedicated to TV broadcast and associated online delivery.",
+ "rdfs:label": "TVSeason",
+ "rdfs:subClassOf": [
{
- "@id": "schema:Text"
+ "@id": "schema:CreativeWorkSeason"
},
{
- "@id": "schema:URL"
+ "@id": "schema:CreativeWork"
}
]
},
{
- "@id": "schema:homeTeam",
+ "@id": "schema:WPHeader",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The header section of the page.",
+ "rdfs:label": "WPHeader",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:recipeInstructions",
"@type": "rdf:Property",
- "rdfs:comment": "The home team in a sports event.",
- "rdfs:label": "homeTeam",
+ "rdfs:comment": "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.",
+ "rdfs:label": "recipeInstructions",
"rdfs:subPropertyOf": {
- "@id": "schema:competitor"
+ "@id": "schema:step"
},
"schema:domainIncludes": {
- "@id": "schema:SportsEvent"
+ "@id": "schema:Recipe"
},
"schema:rangeIncludes": [
{
- "@id": "schema:SportsTeam"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Person"
+ "@id": "schema:ItemList"
+ },
+ {
+ "@id": "schema:CreativeWork"
}
]
},
{
- "@id": "schema:OrderReturned",
- "@type": "schema:OrderStatus",
- "rdfs:comment": "OrderStatus representing that an order has been returned.",
- "rdfs:label": "OrderReturned"
- },
- {
- "@id": "schema:returnMethod",
+ "@id": "schema:coverageEndTime",
"@type": "rdf:Property",
- "rdfs:comment": "The type of return method offered, specified from an enumeration.",
- "rdfs:label": "returnMethod",
+ "rdfs:comment": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.",
+ "rdfs:label": "coverageEndTime",
"schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:LiveBlogPosting"
},
"schema:rangeIncludes": {
- "@id": "schema:ReturnMethodEnumeration"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "schema:DateTime"
}
},
{
- "@id": "schema:speechToTextMarkup",
- "@type": "rdf:Property",
- "rdfs:comment": "Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898).",
- "rdfs:label": "speechToTextMarkup",
- "schema:domainIncludes": {
- "@id": "schema:PronounceableText"
- },
+ "@id": "schema:Nonprofit501c26",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c26: Non-profit type referring to State-Sponsored Organizations Providing Health Coverage for High-Risk Individuals.",
+ "rdfs:label": "Nonprofit501c26",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:PaintAction",
+ "@id": "schema:CreativeWorkSeason",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of producing a painting, typically with paint and canvas as instruments.",
- "rdfs:label": "PaintAction",
+ "rdfs:comment": "A media season, e.g. TV, radio, video game etc.",
+ "rdfs:label": "CreativeWorkSeason",
"rdfs:subClassOf": {
- "@id": "schema:CreateAction"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:Midwifery",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A nurse-like health profession that deals with pregnancy, childbirth, and the postpartum period (including care of the newborn), besides sexual and reproductive health of women throughout their lives.",
- "rdfs:label": "Midwifery",
+ "@id": "schema:ShoppingCenter",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shopping center or mall.",
+ "rdfs:label": "ShoppingCenter",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:transitTimeLabel",
+ "@id": "schema:partOfSeries",
"@type": "rdf:Property",
- "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).",
- "rdfs:label": "transitTimeLabel",
+ "rdfs:comment": "The series to which this episode or season belongs.",
+ "rdfs:label": "partOfSeries",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:isPartOf"
+ },
"schema:domainIncludes": [
{
- "@id": "schema:OfferShippingDetails"
+ "@id": "schema:Episode"
},
{
- "@id": "schema:DeliveryTimeSettings"
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "schema:CreativeWorkSeries"
}
},
{
- "@id": "schema:closes",
+ "@id": "schema:inProductGroupWithID",
"@type": "rdf:Property",
- "rdfs:comment": "The closing hour of the place or service on the given day(s) of the week.",
- "rdfs:label": "closes",
+ "rdfs:comment": "Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. ",
+ "rdfs:label": "inProductGroupWithID",
"schema:domainIncludes": {
- "@id": "schema:OpeningHoursSpecification"
+ "@id": "schema:Product"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Time"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
}
},
{
- "@id": "schema:healthPlanCostSharing",
- "@type": "rdf:Property",
- "rdfs:comment": "Whether The costs to the patient for services under this network or formulary.",
- "rdfs:label": "healthPlanCostSharing",
- "schema:domainIncludes": [
+ "@id": "schema:MedicalCode",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A code for a medical entity.",
+ "rdfs:label": "MedicalCode",
+ "rdfs:subClassOf": [
{
- "@id": "schema:HealthPlanNetwork"
+ "@id": "schema:MedicalIntangible"
},
{
- "@id": "schema:HealthPlanFormulary"
+ "@id": "schema:CategoryCode"
}
],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:valueMaxLength",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the allowed range for number of characters in a literal value.",
+ "rdfs:label": "valueMaxLength",
+ "schema:domainIncludes": {
+ "@id": "schema:PropertyValueSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:WearableMeasurementInseam",
- "@type": "schema:WearableMeasurementTypeEnumeration",
- "rdfs:comment": "Measurement of the inseam, for example of pants",
- "rdfs:label": "WearableMeasurementInseam",
+ "@id": "schema:PronounceableText",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: PronounceableText.",
+ "rdfs:label": "PronounceableText",
+ "rdfs:subClassOf": {
+ "@id": "schema:Text"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
}
},
{
- "@id": "schema:targetDescription",
+ "@id": "schema:serviceOutput",
"@type": "rdf:Property",
- "rdfs:comment": "The description of a node in an established educational framework.",
- "rdfs:label": "targetDescription",
+ "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.",
+ "rdfs:label": "serviceOutput",
"schema:domainIncludes": {
- "@id": "schema:AlignmentObject"
+ "@id": "schema:Service"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:OnSitePickup",
- "@type": "schema:DeliveryMethod",
- "rdfs:comment": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.",
- "rdfs:label": "OnSitePickup"
+ "@id": "schema:TransformedContent",
+ "@type": "schema:MediaManipulationRatingEnumeration",
+ "rdfs:comment": "Content coded 'transformed content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'transformed content': or all of the video has been manipulated to transform the footage itself. This category includes using tools like the Adobe Suite to change the speed of the video, add or remove visual elements or dub audio. Deepfakes are also a subset of transformation.\n\nFor an [[ImageObject]] to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[ImageObject]] with embedded text to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[AudioObject]] to be 'transformed content': Part or all of the audio has been manipulated to alter the words or sounds, or the audio has been synthetically generated, such as to create a sound-alike voice.\n",
+ "rdfs:label": "TransformedContent",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ }
},
{
- "@id": "schema:percentile90",
+ "@id": "schema:distance",
"@type": "rdf:Property",
- "rdfs:comment": "The 90th percentile value.",
- "rdfs:label": "percentile90",
- "schema:domainIncludes": {
- "@id": "schema:QuantitativeValueDistribution"
- },
+ "rdfs:comment": "The distance travelled, e.g. exercising or travelling.",
+ "rdfs:label": "distance",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ExerciseAction"
+ },
+ {
+ "@id": "schema:TravelAction"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "@id": "schema:Distance"
}
},
{
- "@id": "schema:Completed",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Completed.",
- "rdfs:label": "Completed",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:inBroadcastLineup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The CableOrSatelliteService offering the channel.",
+ "rdfs:label": "inBroadcastLineup",
+ "schema:domainIncludes": {
+ "@id": "schema:BroadcastChannel"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CableOrSatelliteService"
}
},
{
- "@id": "schema:Review",
- "@type": "rdfs:Class",
- "rdfs:comment": "A review of an item - for example, of a restaurant, movie, or store.",
- "rdfs:label": "Review",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:scheduledPaymentDate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date the invoice is scheduled to be paid.",
+ "rdfs:label": "scheduledPaymentDate",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Date"
}
},
{
- "@id": "schema:hasMenu",
+ "@id": "schema:dateRead",
"@type": "rdf:Property",
- "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
- "rdfs:label": "hasMenu",
+ "rdfs:comment": "The date/time at which the message has been read by the recipient if a single recipient exists.",
+ "rdfs:label": "dateRead",
"schema:domainIncludes": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:Message"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Menu"
- },
- {
- "@id": "schema:URL"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Date"
}
]
},
{
- "@id": "schema:SinglePlayer",
- "@type": "schema:GamePlayMode",
- "rdfs:comment": "Play mode: SinglePlayer. Which is played by a lone player.",
- "rdfs:label": "SinglePlayer"
+ "@id": "schema:MotorcycleRepair",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A motorcycle repair shop.",
+ "rdfs:label": "MotorcycleRepair",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
},
{
- "@id": "schema:OnlineEventAttendanceMode",
- "@type": "schema:EventAttendanceModeEnumeration",
- "rdfs:comment": "OnlineEventAttendanceMode - an event that is primarily conducted online. ",
- "rdfs:label": "OnlineEventAttendanceMode",
+ "@id": "schema:ActiveActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "An in-progress action (e.g., while watching the movie, or driving to a location).",
+ "rdfs:label": "ActiveActionStatus"
+ },
+ {
+ "@id": "schema:WorkBasedProgram",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs.",
+ "rdfs:label": "WorkBasedProgram",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
},
{
- "@id": "schema:ReportedDoseSchedule",
+ "@id": "schema:MedicalCondition",
"@type": "rdfs:Class",
- "rdfs:comment": "A patient-reported or observed dosing schedule for a drug or supplement.",
- "rdfs:label": "ReportedDoseSchedule",
+ "rdfs:comment": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.",
+ "rdfs:label": "MedicalCondition",
"rdfs:subClassOf": {
- "@id": "schema:DoseSchedule"
+ "@id": "schema:MedicalEntity"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:termsPerYear",
+ "@id": "schema:entertainmentBusiness",
"@type": "rdf:Property",
- "rdfs:comment": "The number of times terms of study are offered per year. Semesters and quarters are common units for term. For example, if the student can only take 2 semesters for the program in one year, then termsPerYear should be 2.",
- "rdfs:label": "termsPerYear",
- "schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
+ "rdfs:comment": "A sub property of location. The entertainment business where the action occurred.",
+ "rdfs:label": "entertainmentBusiness",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:domainIncludes": {
+ "@id": "schema:PerformAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
+ "@id": "schema:EntertainmentBusiness"
}
},
{
- "@id": "schema:pathophysiology",
+ "@id": "schema:inCodeSet",
"@type": "rdf:Property",
- "rdfs:comment": "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.",
- "rdfs:label": "pathophysiology",
- "schema:domainIncludes": [
+ "rdfs:comment": "A [[CategoryCodeSet]] that contains this category code.",
+ "rdfs:label": "inCodeSet",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:inDefinedTermSet"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CategoryCode"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:PhysicalActivity"
+ "@id": "schema:URL"
},
{
- "@id": "schema:MedicalCondition"
+ "@id": "schema:CategoryCodeSet"
}
],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:encodingFormat",
+ "@id": "schema:homeLocation",
"@type": "rdf:Property",
- "rdfs:comment": "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).\n\nIn cases where a [[CreativeWork]] has several media type representations, [[encoding]] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.",
- "rdfs:label": "encodingFormat",
- "schema:domainIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:MediaObject"
- }
- ],
+ "rdfs:comment": "A contact location for a person's residence.",
+ "rdfs:label": "homeLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:ContactPoint"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Place"
}
]
},
{
- "@id": "schema:comprisedOf",
- "@type": "rdf:Property",
- "rdfs:comment": "Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system.",
- "rdfs:label": "comprisedOf",
- "schema:domainIncludes": {
- "@id": "schema:AnatomicalSystem"
+ "@id": "schema:DefinedRegion",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A DefinedRegion is a geographic area defined by potentially arbitrary (rather than political, administrative or natural geographical) criteria. Properties are provided for defining a region by reference to sets of postal codes.\n\nExamples: a delivery destination when shopping. Region where regional pricing is configured.\n\nRequirement 1:\nCountry: US\nStates: \"NY\", \"CA\"\n\nRequirement 2:\nCountry: US\nPostalCode Set: { [94000-94585], [97000, 97999], [13000, 13599]}\n{ [12345, 12345], [78945, 78945], }\nRegion = state, canton, prefecture, autonomous community...\n",
+ "rdfs:label": "DefinedRegion",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:AnatomicalSystem"
- },
- {
- "@id": "schema:AnatomicalStructure"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
},
{
- "@id": "schema:offerCount",
+ "@id": "schema:Distillery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A distillery.",
+ "rdfs:label": "Distillery",
+ "rdfs:subClassOf": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/743"
+ }
+ },
+ {
+ "@id": "schema:downvoteCount",
"@type": "rdf:Property",
- "rdfs:comment": "The number of offers for the product.",
- "rdfs:label": "offerCount",
+ "rdfs:comment": "The number of downvotes this question, answer or comment has received from the community.",
+ "rdfs:label": "downvoteCount",
"schema:domainIncludes": {
- "@id": "schema:AggregateOffer"
+ "@id": "schema:Comment"
},
"schema:rangeIncludes": {
"@id": "schema:Integer"
}
},
{
- "@id": "schema:MusicAlbumReleaseType",
- "@type": "rdfs:Class",
- "rdfs:comment": "The kind of release which this album is: single, EP or album.",
- "rdfs:label": "MusicAlbumReleaseType",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:weightTotal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "weightTotal",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
- }
- },
- {
- "@id": "schema:FullRefund",
- "@type": "schema:RefundTypeEnumeration",
- "rdfs:comment": "Specifies that a refund can be done in the full amount the customer paid for the product",
- "rdfs:label": "FullRefund",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:PropertyValueSpecification",
+ "@id": "schema:BusOrCoach",
"@type": "rdfs:Class",
- "rdfs:comment": "A Property value specification.",
- "rdfs:label": "PropertyValueSpecification",
+ "rdfs:comment": "A bus (also omnibus or autobus) is a road vehicle designed to carry passengers. Coaches are luxury busses, usually in service for long distance travel.",
+ "rdfs:label": "BusOrCoach",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:False",
- "@type": "schema:Boolean",
- "rdfs:comment": "The boolean value false.",
- "rdfs:label": "False"
+ "@id": "schema:includedRiskFactor",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.",
+ "rdfs:label": "includedRiskFactor",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalRiskEstimator"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalRiskFactor"
+ }
},
{
- "@id": "schema:ownedFrom",
+ "@id": "schema:recourseLoan",
"@type": "rdf:Property",
- "rdfs:comment": "The date and time of obtaining the product.",
- "rdfs:label": "ownedFrom",
+ "rdfs:comment": "The only way you get the money back in the event of default is the security. Recourse is where you still have the opportunity to go back to the borrower for the rest of the money.",
+ "rdfs:label": "recourseLoan",
"schema:domainIncludes": {
- "@id": "schema:OwnershipInfo"
+ "@id": "schema:LoanOrCredit"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "@id": "schema:Boolean"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
},
{
- "@id": "schema:ElectronicsStore",
+ "@id": "schema:TransferAction",
"@type": "rdfs:Class",
- "rdfs:comment": "An electronics store.",
- "rdfs:label": "ElectronicsStore",
+ "rdfs:comment": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.",
+ "rdfs:label": "TransferAction",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:Language",
- "@type": "rdfs:Class",
- "rdfs:comment": "Natural languages such as Spanish, Tamil, Hindi, English, etc. Formal language code tags expressed in [BCP 47](https://en.wikipedia.org/wiki/IETF_language_tag) can be used via the [[alternateName]] property. The Language type previously also covered programming languages such as Scheme and Lisp, which are now best represented using [[ComputerLanguage]].",
- "rdfs:label": "Language",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:applicationContact",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Contact details for further information relevant to this job posting.",
+ "rdfs:label": "applicationContact",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ContactPoint"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2396"
}
},
{
- "@id": "schema:InStock",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item is in stock.",
- "rdfs:label": "InStock"
- },
- {
- "@id": "schema:ReactAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of responding instinctively and emotionally to an object, expressing a sentiment.",
- "rdfs:label": "ReactAction",
- "rdfs:subClassOf": {
- "@id": "schema:AssessAction"
+ "@id": "schema:isPlanForApartment",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates some accommodation that this floor plan describes.",
+ "rdfs:label": "isPlanForApartment",
+ "schema:domainIncludes": {
+ "@id": "schema:FloorPlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:engineDisplacement",
+ "@id": "schema:experienceInPlaceOfEducation",
"@type": "rdf:Property",
- "rdfs:comment": "The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \\n\\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "engineDisplacement",
+ "rdfs:comment": "Indicates whether a [[JobPosting]] will accept experience (as indicated by [[OccupationalExperienceRequirements]]) in place of its formal educational qualifications (as indicated by [[educationRequirements]]). If true, indicates that satisfying one of these requirements is sufficient.",
+ "rdfs:label": "experienceInPlaceOfEducation",
"schema:domainIncludes": {
- "@id": "schema:EngineSpecification"
+ "@id": "schema:JobPosting"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Boolean"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2681"
}
},
{
- "@id": "schema:AccountingService",
- "@type": "rdfs:Class",
- "rdfs:comment": "Accountancy business.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).\n ",
- "rdfs:label": "AccountingService",
- "rdfs:subClassOf": {
- "@id": "schema:FinancialService"
+ "@id": "schema:customerRemorseReturnLabelSource",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned due to customer remorse.",
+ "rdfs:label": "customerRemorseReturnLabelSource",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:ReturnLabelSourceEnumeration"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:hoursAvailable",
+ "@id": "schema:performTime",
"@type": "rdf:Property",
- "rdfs:comment": "The hours during which this service or contact is available.",
- "rdfs:label": "hoursAvailable",
+ "rdfs:comment": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "performTime",
"schema:domainIncludes": [
{
- "@id": "schema:ContactPoint"
- },
- {
- "@id": "schema:LocationFeatureSpecification"
+ "@id": "schema:HowTo"
},
{
- "@id": "schema:Service"
+ "@id": "schema:HowToDirection"
}
],
"schema:rangeIncludes": {
- "@id": "schema:OpeningHoursSpecification"
- }
- },
- {
- "@id": "schema:founder",
- "@type": "rdf:Property",
- "rdfs:comment": "A person who founded this organization.",
- "rdfs:label": "founder",
- "schema:domainIncludes": {
- "@id": "schema:Organization"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Duration"
}
},
{
- "@id": "schema:WearableSizeGroupBig",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Big\" for wearables.",
- "rdfs:label": "WearableSizeGroupBig",
+ "@id": "schema:BodyMeasurementHips",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of hips (measured around the buttocks). Used, for example, to fit skirts.",
+ "rdfs:label": "BodyMeasurementHips",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
@@ -32604,10 +32458,10 @@
},
"schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Person"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Organization"
}
],
"schema:supersededBy": {
@@ -32615,1028 +32469,1040 @@
}
},
{
- "@id": "schema:ParcelService",
- "@type": "schema:DeliveryMethod",
- "rdfs:comment": "A private parcel service as the delivery mode available for a certain offer.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
- "rdfs:label": "ParcelService",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "schema:Researcher",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Researchers.",
+ "rdfs:label": "Researcher",
+ "rdfs:subClassOf": {
+ "@id": "schema:Audience"
}
},
{
- "@id": "schema:MerchantReturnUnlimitedWindow",
- "@type": "schema:MerchantReturnEnumeration",
- "rdfs:comment": "Specifies that there is an unlimited window for product returns.",
- "rdfs:label": "MerchantReturnUnlimitedWindow",
+ "@id": "schema:costCategory",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The category of cost, such as wholesale, retail, reimbursement cap, etc.",
+ "rdfs:label": "costCategory",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
+ },
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "schema:rangeIncludes": {
+ "@id": "schema:DrugCostCategory"
}
},
{
- "@id": "schema:ExchangeRateSpecification",
- "@type": "rdfs:Class",
- "rdfs:comment": "A structured value representing exchange rate.",
- "rdfs:label": "ExchangeRateSpecification",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
+ "@id": "schema:IOSPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of iOS-based operating systems.",
+ "rdfs:label": "IOSPlatform",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
+ }
+ },
+ {
+ "@id": "schema:transitTimeLabel",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).",
+ "rdfs:label": "transitTimeLabel",
+ "schema:domainIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "schema:OfferShippingDetails"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:DeliveryTimeSettings"
}
- ]
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
},
{
- "@id": "schema:ResultsNotAvailable",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Results are not available.",
- "rdfs:label": "ResultsNotAvailable",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:referencesOrder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice.",
+ "rdfs:label": "referencesOrder",
+ "schema:domainIncludes": {
+ "@id": "schema:Invoice"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Order"
}
},
{
- "@id": "schema:PoliceStation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A police station.",
- "rdfs:label": "PoliceStation",
- "rdfs:subClassOf": [
+ "@id": "schema:validFrom",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The date when the item becomes valid.",
+ "rdfs:label": "validFrom",
+ "schema:domainIncludes": [
{
- "@id": "schema:CivicStructure"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:EmergencyService"
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:LocationFeatureSpecification"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:OpeningHoursSpecification"
+ },
+ {
+ "@id": "schema:Permit"
+ },
+ {
+ "@id": "schema:Offer"
}
- ]
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Date"
+ },
+ {
+ "@id": "schema:DateTime"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:Otolaryngologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.",
- "rdfs:label": "Otolaryngologic",
+ "@id": "schema:Quiz",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Quiz: A test of knowledge, skills and abilities.",
+ "rdfs:label": "Quiz",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:LearningResource"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2611"
}
},
{
- "@id": "schema:partOfTVSeries",
+ "@id": "schema:latitude",
"@type": "rdf:Property",
- "rdfs:comment": "The TV series to which this episode or season belongs.",
- "rdfs:label": "partOfTVSeries",
- "rdfs:subPropertyOf": {
- "@id": "schema:isPartOf"
- },
+ "rdfs:comment": "The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).",
+ "rdfs:label": "latitude",
"schema:domainIncludes": [
{
- "@id": "schema:TVClip"
+ "@id": "schema:Place"
},
{
- "@id": "schema:TVSeason"
+ "@id": "schema:GeoCoordinates"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
},
{
- "@id": "schema:TVEpisode"
+ "@id": "schema:Text"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:TVSeries"
- },
- "schema:supersededBy": {
- "@id": "schema:partOfSeries"
- }
+ ]
},
{
- "@id": "schema:observedNode",
+ "@id": "schema:valueRequired",
"@type": "rdf:Property",
- "rdfs:comment": "The observedNode of an [[Observation]], often a [[StatisticalPopulation]].",
- "rdfs:label": "observedNode",
+ "rdfs:comment": "Whether the property must be filled in to complete the action. Default is false.",
+ "rdfs:label": "valueRequired",
"schema:domainIncludes": {
- "@id": "schema:Observation"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:PropertyValueSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:StatisticalPopulation"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:Longitudinal",
- "@type": "schema:MedicalObservationalStudyDesign",
- "rdfs:comment": "Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.",
- "rdfs:label": "Longitudinal",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "schema:LowFatDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced fat and cholesterol intake.",
+ "rdfs:label": "LowFatDiet"
},
{
- "@id": "schema:ComputerLanguage",
+ "@id": "schema:Airline",
"@type": "rdfs:Class",
- "rdfs:comment": "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the [[Language]] type.",
- "rdfs:label": "ComputerLanguage",
+ "rdfs:comment": "An organization that provides flights for passengers.",
+ "rdfs:label": "Airline",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:DepartAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.",
- "rdfs:label": "DepartAction",
- "rdfs:subClassOf": {
- "@id": "schema:MoveAction"
+ "@id": "schema:eligibleTransactionVolume",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.",
+ "rdfs:label": "eligibleTransactionVolume",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:PriceSpecification"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:PET",
- "@type": "schema:MedicalImagingTechnique",
- "rdfs:comment": "Positron emission tomography imaging.",
- "rdfs:label": "PET",
+ "@id": "schema:Chiropractic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.",
+ "rdfs:label": "Chiropractic",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Neuro",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Neurological system clinical examination.",
- "rdfs:label": "Neuro",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:surface",
+ "@id": "schema:hasDigitalDocumentPermission",
"@type": "rdf:Property",
- "rdfs:comment": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.",
- "rdfs:label": "surface",
- "rdfs:subPropertyOf": {
- "@id": "schema:material"
- },
+ "rdfs:comment": "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".",
+ "rdfs:label": "hasDigitalDocumentPermission",
"schema:domainIncludes": {
- "@id": "schema:VisualArtwork"
+ "@id": "schema:DigitalDocument"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
- }
- ],
- "schema:supersededBy": {
- "@id": "schema:artworkSurface"
+ "schema:rangeIncludes": {
+ "@id": "schema:DigitalDocumentPermission"
}
},
{
- "@id": "schema:MedicalResearcher",
- "@type": "schema:MedicalAudienceType",
- "rdfs:comment": "Medical researchers.",
- "rdfs:label": "MedicalResearcher",
+ "@id": "schema:WesternConventional",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.",
+ "rdfs:label": "WesternConventional",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:cvdCollectionDate",
+ "@id": "schema:ConsumeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of ingesting information/resources/food.",
+ "rdfs:label": "ConsumeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnUnspecified",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that a product return policy is not provided.",
+ "rdfs:label": "MerchantReturnUnspecified",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:mainEntity",
"@type": "rdf:Property",
- "rdfs:comment": "collectiondate - Date for which patient counts are reported.",
- "rdfs:label": "cvdCollectionDate",
+ "rdfs:comment": "Indicates the primary entity described in some page or other CreativeWork.",
+ "rdfs:label": "mainEntity",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:about"
+ },
"schema:domainIncludes": {
- "@id": "schema:CDCPMDRecord"
+ "@id": "schema:CreativeWork"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:mainEntityOfPage"
},
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:referenceQuantity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The reference quantity for which a certain price applies, e.g. 1 EUR per 4 kWh of electricity. This property is a replacement for unitOfMeasurement for the advanced cases where the price does not relate to a standard unit.",
+ "rdfs:label": "referenceQuantity",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": [
{
- "@id": "schema:DateTime"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties"
},
{
- "@id": "schema:Text"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
- }
+ ]
},
{
- "@id": "schema:WebSite",
+ "@id": "schema:ReceiveAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.",
- "rdfs:label": "WebSite",
+ "rdfs:comment": "The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\\n\\nRelated actions:\\n\\n* [[SendAction]]: The reciprocal of ReceiveAction.\\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transferred (e.g. I can receive a package, but it does not mean the package is now mine).",
+ "rdfs:label": "ReceiveAction",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:TransferAction"
}
},
{
- "@id": "schema:numberOfFullBathrooms",
+ "@id": "schema:memoryRequirements",
"@type": "rdf:Property",
- "rdfs:comment": "Number of full bathrooms - The total number of full and ¾ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field).",
- "rdfs:label": "numberOfFullBathrooms",
- "schema:domainIncludes": [
+ "rdfs:comment": "Minimum memory requirements.",
+ "rdfs:label": "memoryRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:FloorPlan"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Accommodation"
+ "@id": "schema:URL"
}
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
- }
+ ]
},
{
- "@id": "schema:ShippingRateSettings",
+ "@id": "schema:InfectiousAgentClass",
"@type": "rdfs:Class",
- "rdfs:comment": "A ShippingRateSettings represents re-usable pieces of shipping information. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished and matched (i.e. identified/referenced) by their different values for [[shippingLabel]].",
- "rdfs:label": "ShippingRateSettings",
+ "rdfs:comment": "Classes of agents or pathogens that transmit infectious diseases. Enumerated type.",
+ "rdfs:label": "InfectiousAgentClass",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
+ "@id": "schema:MedicalEnumeration"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:EndorseAction",
+ "@id": "schema:ReplyAction",
"@type": "rdfs:Class",
- "rdfs:comment": "An agent approves/certifies/likes/supports/sanction an object.",
- "rdfs:label": "EndorseAction",
+ "rdfs:comment": "The act of responding to a question/message asked/sent by the object. Related to [[AskAction]].\\n\\nRelated actions:\\n\\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.",
+ "rdfs:label": "ReplyAction",
"rdfs:subClassOf": {
- "@id": "schema:ReactAction"
- }
- },
- {
- "@id": "schema:actionStatus",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the current disposition of the Action.",
- "rdfs:label": "actionStatus",
- "schema:domainIncludes": {
- "@id": "schema:Action"
- },
- "schema:rangeIncludes": {
- "@id": "schema:ActionStatusType"
+ "@id": "schema:CommunicateAction"
}
},
{
- "@id": "schema:Tuesday",
- "@type": "schema:DayOfWeek",
- "rdfs:comment": "The day of the week between Monday and Wednesday.",
- "rdfs:label": "Tuesday",
- "schema:sameAs": {
- "@id": "http://www.wikidata.org/entity/Q127"
+ "@id": "schema:RightHandDriving",
+ "@type": "schema:SteeringPositionValue",
+ "rdfs:comment": "The steering position is on the right side of the vehicle (viewed from the main direction of driving).",
+ "rdfs:label": "RightHandDriving",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:WPFooter",
+ "@id": "schema:SearchAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The footer section of the page.",
- "rdfs:label": "WPFooter",
+ "rdfs:comment": "The act of searching for an object.\\n\\nRelated actions:\\n\\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.",
+ "rdfs:label": "SearchAction",
"rdfs:subClassOf": {
- "@id": "schema:WebPageElement"
+ "@id": "schema:Action"
}
},
{
- "@id": "schema:mediaItemAppearance",
- "@type": "rdf:Property",
- "rdfs:comment": "In the context of a [[MediaReview]], indicates specific media item(s) that are grouped using a [[MediaReviewItem]].",
- "rdfs:label": "mediaItemAppearance",
- "schema:domainIncludes": {
- "@id": "schema:MediaReviewItem"
- },
+ "@id": "schema:InternationalTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "An international trial.",
+ "rdfs:label": "InternationalTrial",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MediaObject"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:busName",
+ "@id": "schema:maximumAttendeeCapacity",
"@type": "rdf:Property",
- "rdfs:comment": "The name of the bus (e.g. Bolt Express).",
- "rdfs:label": "busName",
- "schema:domainIncludes": {
- "@id": "schema:BusTrip"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:Patient",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/116154003"
- },
- "rdfs:comment": "A patient is any person recipient of health care services.",
- "rdfs:label": "Patient",
- "rdfs:subClassOf": [
+ "rdfs:comment": "The total number of individuals that may attend an event or venue.",
+ "rdfs:label": "maximumAttendeeCapacity",
+ "schema:domainIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Place"
},
{
- "@id": "schema:MedicalAudience"
+ "@id": "schema:Event"
}
],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:FMRadioChannel",
+ "@id": "schema:MedicalRiskCalculator",
"@type": "rdfs:Class",
- "rdfs:comment": "A radio channel that uses FM.",
- "rdfs:label": "FMRadioChannel",
+ "rdfs:comment": "A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.",
+ "rdfs:label": "MedicalRiskCalculator",
"rdfs:subClassOf": {
- "@id": "schema:RadioChannel"
+ "@id": "schema:MedicalRiskEstimator"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
- }
- },
- {
- "@id": "schema:HealthCare",
- "@type": "schema:GovernmentBenefitsType",
- "rdfs:comment": "HealthCare: this is a benefit for health care.",
- "rdfs:label": "HealthCare",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Female",
- "@type": "schema:GenderType",
- "rdfs:comment": "The female gender.",
- "rdfs:label": "Female"
+ "@id": "schema:MovieTheater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A movie theater.",
+ "rdfs:label": "MovieTheater",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:CivicStructure"
+ },
+ {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ ]
},
{
- "@id": "schema:verificationFactCheckingPolicy",
+ "@id": "schema:dateSent",
"@type": "rdf:Property",
- "rdfs:comment": "Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].",
- "rdfs:label": "verificationFactCheckingPolicy",
- "rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
- },
+ "rdfs:comment": "The date/time at which the message was sent.",
+ "rdfs:label": "dateSent",
"schema:domainIncludes": {
- "@id": "schema:NewsMediaOrganization"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Message"
},
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:creator",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork.",
+ "rdfs:label": "creator",
+ "schema:domainIncludes": [
{
"@id": "schema:CreativeWork"
},
{
- "@id": "schema:URL"
+ "@id": "schema:UserComments"
}
],
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:Person"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:Organization"
}
]
},
{
- "@id": "schema:InvestmentOrDeposit",
- "@type": "rdfs:Class",
- "rdfs:comment": "A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.",
- "rdfs:label": "InvestmentOrDeposit",
- "rdfs:subClassOf": {
- "@id": "schema:FinancialProduct"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- }
- },
- {
- "@id": "schema:affectedBy",
+ "@id": "schema:speakable",
"@type": "rdf:Property",
- "rdfs:comment": "Drugs that affect the test's results.",
- "rdfs:label": "affectedBy",
- "schema:domainIncludes": {
- "@id": "schema:MedicalTest"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Drug"
+ "rdfs:comment": "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use the [[cssSelector]] property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.\n\n\nFor more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this\nwe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.\n ",
+ "rdfs:label": "speakable",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Article"
+ },
+ {
+ "@id": "schema:WebPage"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
}
},
{
- "@id": "schema:InsuranceAgency",
+ "@id": "schema:ShippingRateSettings",
"@type": "rdfs:Class",
- "rdfs:comment": "An Insurance agency.",
- "rdfs:label": "InsuranceAgency",
+ "rdfs:comment": "A ShippingRateSettings represents re-usable pieces of shipping information. It is designed for publication on an URL that may be referenced via the [[shippingSettingsLink]] property of an [[OfferShippingDetails]]. Several occurrences can be published, distinguished and matched (i.e. identified/referenced) by their different values for [[shippingLabel]].",
+ "rdfs:label": "ShippingRateSettings",
"rdfs:subClassOf": {
- "@id": "schema:FinancialService"
- }
- },
- {
- "@id": "schema:ReturnLabelCustomerResponsibility",
- "@type": "schema:ReturnLabelSourceEnumeration",
- "rdfs:comment": "Indicated that creating a return label is the responsibility of the customer.",
- "rdfs:label": "ReturnLabelCustomerResponsibility",
+ "@id": "schema:StructuredValue"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:acceptedOffer",
- "@type": "rdf:Property",
- "rdfs:comment": "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.",
- "rdfs:label": "acceptedOffer",
- "schema:domainIncludes": {
- "@id": "schema:Order"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Offer"
- }
+ "@id": "schema:RsvpResponseMaybe",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee may or may not attend.",
+ "rdfs:label": "RsvpResponseMaybe"
},
{
- "@id": "schema:recordingOf",
+ "@id": "schema:discountCode",
"@type": "rdf:Property",
- "rdfs:comment": "The composition this track is a recording of.",
- "rdfs:label": "recordingOf",
+ "rdfs:comment": "Code used to redeem a discount.",
+ "rdfs:label": "discountCode",
"schema:domainIncludes": {
- "@id": "schema:MusicRecording"
- },
- "schema:inverseOf": {
- "@id": "schema:recordedAs"
+ "@id": "schema:Order"
},
"schema:rangeIncludes": {
- "@id": "schema:MusicComposition"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:image",
+ "@id": "schema:description",
"@type": "rdf:Property",
- "rdfs:comment": "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].",
- "rdfs:label": "image",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:description"
+ },
+ "rdfs:comment": "A description of the item.",
+ "rdfs:label": "description",
"schema:domainIncludes": {
"@id": "schema:Thing"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:ImageObject"
- },
- {
- "@id": "schema:URL"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:DanceGroup",
- "@type": "rdfs:Class",
- "rdfs:comment": "A dance group—for example, the Alvin Ailey Dance Theater or Riverdance.",
- "rdfs:label": "DanceGroup",
- "rdfs:subClassOf": {
- "@id": "schema:PerformingGroup"
+ "@id": "schema:Ear",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Ear function assessment with clinical examination.",
+ "rdfs:label": "Ear",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:AutomotiveBusiness",
+ "@id": "schema:WearAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Car repair, sales, or parts.",
- "rdfs:label": "AutomotiveBusiness",
+ "rdfs:comment": "The act of dressing oneself in clothing.",
+ "rdfs:label": "WearAction",
"rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "@id": "schema:UseAction"
}
},
{
- "@id": "schema:vehicleTransmission",
+ "@id": "schema:endOffset",
"@type": "rdf:Property",
- "rdfs:comment": "The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) (\"gearbox\" for cars).",
- "rdfs:label": "vehicleTransmission",
+ "rdfs:comment": "The end time of the clip expressed as the number of seconds from the beginning of the work.",
+ "rdfs:label": "endOffset",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:Clip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:QualitativeValue"
- },
- {
- "@id": "schema:URL"
+ "@id": "schema:Number"
},
{
- "@id": "schema:Text"
+ "@id": "schema:HyperTocEntry"
}
],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2021"
}
},
{
- "@id": "schema:MedicalDevice",
+ "@id": "schema:BusReservation",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/63653004"
- },
- "rdfs:comment": "Any object used in a medical capacity, such as to diagnose or treat a patient.",
- "rdfs:label": "MedicalDevice",
+ "rdfs:comment": "A reservation for bus travel. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "BusReservation",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:Reservation"
+ }
+ },
+ {
+ "@id": "schema:cvdNumVent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "numvent - MECHANICAL VENTILATORS: Total number of ventilators available.",
+ "rdfs:label": "cvdNumVent",
+ "schema:domainIncludes": {
+ "@id": "schema:CDCPMDRecord"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:occupationalCredentialAwarded",
+ "@id": "schema:underName",
"@type": "rdf:Property",
- "rdfs:comment": "A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.",
- "rdfs:label": "occupationalCredentialAwarded",
+ "rdfs:comment": "The person or organization the reservation or ticket is for.",
+ "rdfs:label": "underName",
"schema:domainIncludes": [
{
- "@id": "schema:Course"
+ "@id": "schema:Ticket"
},
{
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:Reservation"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
- },
- {
- "@id": "schema:URL"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:EducationalOccupationalCredential"
+ "@id": "schema:Person"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
- }
+ ]
},
{
- "@id": "schema:BodyMeasurementFoot",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Foot length (measured between end of the most prominent toe and the most prominent part of the heel). Used, for example, to measure socks.",
- "rdfs:label": "BodyMeasurementFoot",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:ArchiveComponent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections."
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "ArchiveComponent"
+ },
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1758"
}
},
{
- "@id": "schema:maximumVirtualAttendeeCapacity",
+ "@id": "schema:loanMortgageMandateAmount",
"@type": "rdf:Property",
- "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). ",
- "rdfs:label": "maximumVirtualAttendeeCapacity",
+ "rdfs:comment": "Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.",
+ "rdfs:label": "loanMortgageMandateAmount",
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:MortgageLoan"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:durationOfWarranty",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.",
+ "rdfs:label": "durationOfWarranty",
+ "schema:domainIncludes": {
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:DDxElement",
+ "@id": "schema:Library",
"@type": "rdfs:Class",
- "rdfs:comment": "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.",
- "rdfs:label": "DDxElement",
+ "rdfs:comment": "A library.",
+ "rdfs:label": "Library",
"rdfs:subClassOf": {
- "@id": "schema:MedicalIntangible"
- },
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:MerchantReturnFiniteReturnWindow",
+ "@type": "schema:MerchantReturnEnumeration",
+ "rdfs:comment": "Specifies that there is a finite window for product returns.",
+ "rdfs:label": "MerchantReturnFiniteReturnWindow",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:addOn",
+ "@id": "schema:ItemListOrderType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.",
+ "rdfs:label": "ItemListOrderType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ }
+ },
+ {
+ "@id": "schema:ratingCount",
"@type": "rdf:Property",
- "rdfs:comment": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).",
- "rdfs:label": "addOn",
+ "rdfs:comment": "The count of total number of ratings.",
+ "rdfs:label": "ratingCount",
"schema:domainIncludes": {
- "@id": "schema:Offer"
+ "@id": "schema:AggregateRating"
},
"schema:rangeIncludes": {
- "@id": "schema:Offer"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:TaxiStand",
+ "@id": "schema:SpecialAnnouncement",
"@type": "rdfs:Class",
- "rdfs:comment": "A taxi stand.",
- "rdfs:label": "TaxiStand",
+ "rdfs:comment": "A SpecialAnnouncement combines a simple date-stamped textual information update\n with contextualized Web links and other structured data. It represents an information update made by a\n locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police,\n local government.\n\nFor work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#).\n\nThe motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.org\nexpect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to our\nusual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#).\n\n\nWhile this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to cover\nthe kinds of everyday practical information being posted to existing websites during an emergency situation.\n\nSeveral kinds of information can be provided:\n\nWe encourage the provision of \"name\", \"text\", \"datePosted\", \"expires\" (if appropriate), \"category\" and\n\"url\" as a simple baseline. It is important to provide a value for \"category\" where possible, most ideally as a well known\nURL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be \"https://en.wikipedia.org/w/index.php?title=2019-20\\_coronavirus\\_pandemic\" or \"https://www.wikidata.org/wiki/Q81068910\".\n\nFor many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple \"[[text]]\" summary of the page. It is\nunlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously.\n\nWe expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]].\n\nMany [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructure]]s. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]].\n\nThe [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] only\nfor representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of [[about]] for locations too.\n\nThe basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting\n[[SpecialAnnouncement]] updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feed\nwith the [[webFeed]] property. This can be a simple URL, or an inline [[DataFeed]] object, with [[encodingFormat]] providing\nmedia type information, e.g. \"application/rss+xml\" or \"application/atom+xml\".\n",
+ "rdfs:label": "SpecialAnnouncement",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
}
},
{
- "@id": "schema:FloorPlan",
+ "@id": "schema:EmployerReview",
"@type": "rdfs:Class",
- "rdfs:comment": "A FloorPlan is an explicit representation of a collection of similar accommodations, allowing the provision of common information (room counts, sizes, layout diagrams) and offers for rental or sale. In typical use, some [[ApartmentComplex]] has an [[accommodationFloorPlan]] which is a [[FloorPlan]]. A FloorPlan is always in the context of a particular place, either a larger [[ApartmentComplex]] or a single [[Apartment]]. The visual/spatial aspects of a floor plan (i.e. room layout, [see wikipedia](https://en.wikipedia.org/wiki/Floor_plan)) can be indicated using [[image]]. ",
- "rdfs:label": "FloorPlan",
+ "rdfs:comment": "An [[EmployerReview]] is a review of an [[Organization]] regarding its role as an employer, written by a current or former employee of that organization.",
+ "rdfs:label": "EmployerReview",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Review"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
}
},
{
- "@id": "schema:regionDrained",
+ "@id": "schema:datePosted",
"@type": "rdf:Property",
- "rdfs:comment": "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.",
- "rdfs:label": "regionDrained",
+ "rdfs:comment": "Publication date of an online listing.",
+ "rdfs:label": "datePosted",
"schema:domainIncludes": [
{
- "@id": "schema:Vein"
+ "@id": "schema:SpecialAnnouncement"
},
{
- "@id": "schema:LymphaticVessel"
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:CDCPMDRecord"
+ },
+ {
+ "@id": "schema:RealEstateListing"
}
],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:AnatomicalSystem"
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
]
},
{
- "@id": "schema:InviteAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of asking someone to attend an event. Reciprocal of RsvpAction.",
- "rdfs:label": "InviteAction",
- "rdfs:subClassOf": {
- "@id": "schema:CommunicateAction"
- }
- },
- {
- "@id": "schema:Genitourinary",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Genitourinary system function assessment with clinical examination.",
- "rdfs:label": "Genitourinary",
+ "@id": "schema:strengthUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The units of an active ingredient's strength, e.g. mg.",
+ "rdfs:label": "strengthUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugStrength"
+ },
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:startDate",
+ "@id": "schema:gender",
"@type": "rdf:Property",
- "rdfs:comment": "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).",
- "rdfs:label": "startDate",
+ "rdfs:comment": "Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/Male and https://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of \"Mixed\".",
+ "rdfs:label": "gender",
"schema:domainIncludes": [
{
- "@id": "schema:CreativeWorkSeason"
- },
- {
- "@id": "schema:DatedMoneySpecification"
- },
- {
- "@id": "schema:Role"
- },
- {
- "@id": "schema:Event"
- },
- {
- "@id": "schema:EducationalOccupationalProgram"
- },
- {
- "@id": "schema:CreativeWorkSeries"
- },
- {
- "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ "@id": "schema:SportsTeam"
},
{
- "@id": "schema:Schedule"
+ "@id": "schema:Person"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Date"
+ "@id": "schema:GenderType"
},
{
- "@id": "schema:DateTime"
+ "@id": "schema:Text"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2486"
- }
- },
- {
- "@id": "schema:EmployeeRole",
- "@type": "rdfs:Class",
- "rdfs:comment": "A subclass of OrganizationRole used to describe employee relationships.",
- "rdfs:label": "EmployeeRole",
- "rdfs:subClassOf": {
- "@id": "schema:OrganizationRole"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2341"
}
},
{
- "@id": "schema:PregnancyHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Content discussing pregnancy-related aspects of a health topic.",
- "rdfs:label": "PregnancyHealthAspect",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:produces",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The tangible thing generated by the service, e.g. a passport, permit, etc.",
+ "rdfs:label": "produces",
+ "schema:domainIncludes": {
+ "@id": "schema:Service"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:serviceOutput"
}
},
{
- "@id": "schema:replacer",
+ "@id": "schema:drainsTo",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. The object that replaces.",
- "rdfs:label": "replacer",
- "rdfs:subPropertyOf": {
- "@id": "schema:object"
- },
+ "rdfs:comment": "The vasculature that the vein drains into.",
+ "rdfs:label": "drainsTo",
"schema:domainIncludes": {
- "@id": "schema:ReplaceAction"
+ "@id": "schema:Vein"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Vessel"
}
},
{
- "@id": "schema:applicationCategory",
+ "@id": "schema:hasOfferCatalog",
"@type": "rdf:Property",
- "rdfs:comment": "Type of software application, e.g. 'Game, Multimedia'.",
- "rdfs:label": "applicationCategory",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
+ "rdfs:label": "hasOfferCatalog",
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Service"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:OfferCatalog"
+ }
},
{
- "@id": "schema:HealthPlanCostSharingSpecification",
+ "@id": "schema:WebContent",
"@type": "rdfs:Class",
- "rdfs:comment": "A description of costs to the patient under a given network or formulary.",
- "rdfs:label": "HealthPlanCostSharingSpecification",
+ "rdfs:comment": "WebContent is a type representing all [[WebPage]], [[WebSite]] and [[WebPageElement]] content. It is sometimes the case that detailed distinctions between Web pages, sites and their parts are not always important or obvious. The [[WebContent]] type makes it easier to describe Web-addressable content without requiring such distinctions to always be stated. (The intent is that the existing types [[WebPage]], [[WebSite]] and [[WebPageElement]] will eventually be declared as subtypes of [[WebContent]].)",
+ "rdfs:label": "WebContent",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2358"
}
},
{
- "@id": "schema:servesCuisine",
- "@type": "rdf:Property",
- "rdfs:comment": "The cuisine of the restaurant.",
- "rdfs:label": "servesCuisine",
- "schema:domainIncludes": {
- "@id": "schema:FoodEstablishment"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "@id": "schema:RsvpResponseNo",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee will not attend.",
+ "rdfs:label": "RsvpResponseNo"
},
{
- "@id": "schema:worksFor",
+ "@id": "schema:programmingLanguage",
"@type": "rdf:Property",
- "rdfs:comment": "Organizations that the person works for.",
- "rdfs:label": "worksFor",
+ "rdfs:comment": "The computer programming language.",
+ "rdfs:label": "programmingLanguage",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:SoftwareSourceCode"
},
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:ComputerLanguage"
+ }
+ ]
},
{
- "@id": "schema:httpMethod",
+ "@id": "schema:follows",
"@type": "rdf:Property",
- "rdfs:comment": "An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.",
- "rdfs:label": "httpMethod",
+ "rdfs:comment": "The most generic uni-directional social relation.",
+ "rdfs:label": "follows",
"schema:domainIncludes": {
- "@id": "schema:EntryPoint"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:Eye",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Eye or ophtalmological function assessment with clinical examination.",
- "rdfs:label": "Eye",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:interactingDrug",
+ "@id": "schema:shippingRate",
"@type": "rdf:Property",
- "rdfs:comment": "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.",
- "rdfs:label": "interactingDrug",
- "schema:domainIncludes": {
- "@id": "schema:Drug"
- },
+ "rdfs:comment": "The shipping rate is the cost of shipping to the specified destination. Typically, the maxValue and currency values (of the [[MonetaryAmount]]) are most appropriate.",
+ "rdfs:label": "shippingRate",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:ShippingRateSettings"
+ },
+ {
+ "@id": "schema:OfferShippingDetails"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:MonetaryAmount"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:monthlyMinimumRepaymentAmount",
+ "@id": "schema:healthPlanDrugTier",
"@type": "rdf:Property",
- "rdfs:comment": "The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month.",
- "rdfs:label": "monthlyMinimumRepaymentAmount",
- "schema:domainIncludes": {
- "@id": "schema:PaymentCard"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The tier(s) of drugs offered by this formulary or insurance plan.",
+ "rdfs:label": "healthPlanDrugTier",
+ "schema:domainIncludes": [
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:HealthInsurancePlan"
},
{
- "@id": "schema:Number"
+ "@id": "schema:HealthPlanFormulary"
}
],
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- }
- ]
- },
- {
- "@id": "schema:MerchantReturnPolicySeasonalOverride",
- "@type": "rdfs:Class",
- "rdfs:comment": "A seasonal override of a return policy, for example used for holidays.",
- "rdfs:label": "MerchantReturnPolicySeasonalOverride",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
- }
- },
- {
- "@id": "schema:Homeopathic",
- "@type": "schema:MedicineSystem",
- "rdfs:comment": "A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.",
- "rdfs:label": "Homeopathic",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:HomeAndConstructionBusiness",
- "@type": "rdfs:Class",
- "rdfs:comment": "A construction business.\\n\\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s).",
- "rdfs:label": "HomeAndConstructionBusiness",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
- }
- },
- {
- "@id": "schema:dropoffTime",
- "@type": "rdf:Property",
- "rdfs:comment": "When a rental car can be dropped off.",
- "rdfs:label": "dropoffTime",
- "schema:domainIncludes": {
- "@id": "schema:RentalCarReservation"
- },
"schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:DeleteAction",
+ "@id": "schema:Reservation",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of editing a recipient by removing one of its objects.",
- "rdfs:label": "DeleteAction",
+ "rdfs:comment": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]].",
+ "rdfs:label": "Reservation",
"rdfs:subClassOf": {
- "@id": "schema:UpdateAction"
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:Attorney",
+ "@id": "schema:HyperTocEntry",
"@type": "rdfs:Class",
- "rdfs:comment": "Professional service: Attorney. \\n\\nThis type is deprecated - [[LegalService]] is more inclusive and less ambiguous.",
- "rdfs:label": "Attorney",
+ "rdfs:comment": "A HyperToEntry is an item within a [[HyperToc]], which represents a hypertext table of contents for complex media objects, such as [[VideoObject]], [[AudioObject]]. The media object itself is indicated using [[associatedMedia]]. Each section of interest within that content can be described with a [[HyperTocEntry]], with associated [[startOffset]] and [[endOffset]]. When several entries are all from the same file, [[associatedMedia]] is used on the overarching [[HyperTocEntry]]; if the content has been split into multiple files, they can be referenced using [[associatedMedia]] on each [[HyperTocEntry]].",
+ "rdfs:label": "HyperTocEntry",
"rdfs:subClassOf": {
- "@id": "schema:LegalService"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
}
},
{
- "@id": "schema:MensClothingStore",
+ "@id": "schema:MedicalTest",
"@type": "rdfs:Class",
- "rdfs:comment": "A men's clothing store.",
- "rdfs:label": "MensClothingStore",
+ "rdfs:comment": "Any medical test, typically performed for diagnostic purposes.",
+ "rdfs:label": "MedicalTest",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:programName",
+ "@id": "schema:backstory",
"@type": "rdf:Property",
- "rdfs:comment": "The program providing the membership.",
- "rdfs:label": "programName",
+ "rdfs:comment": "For an [[Article]], typically a [[NewsArticle]], the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.",
+ "rdfs:label": "backstory",
"schema:domainIncludes": {
- "@id": "schema:ProgramMembership"
+ "@id": "schema:Article"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:addressCountry",
- "@type": "rdf:Property",
- "rdfs:comment": "The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1).",
- "rdfs:label": "addressCountry",
- "schema:domainIncludes": [
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:DefinedRegion"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:GeoShape"
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
},
{
- "@id": "schema:GeoCoordinates"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
+ },
+ {
+ "@id": "schema:supply",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
+ "rdfs:label": "supply",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:instrument"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:HowTo"
},
{
- "@id": "schema:PostalAddress"
+ "@id": "schema:HowToDirection"
}
],
"schema:rangeIncludes": [
@@ -33644,681 +33510,618 @@
"@id": "schema:Text"
},
{
- "@id": "schema:Country"
+ "@id": "schema:HowToSupply"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
- }
+ ]
},
{
- "@id": "schema:connectedTo",
+ "@id": "schema:ratingValue",
"@type": "rdf:Property",
- "rdfs:comment": "Other anatomical structures to which this structure is connected.",
- "rdfs:label": "connectedTo",
+ "rdfs:comment": "The rating for the content.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "ratingValue",
"schema:domainIncludes": {
- "@id": "schema:AnatomicalStructure"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Rating"
},
- "schema:rangeIncludes": {
- "@id": "schema:AnatomicalStructure"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:inLanguage",
+ "@id": "schema:teaches",
"@type": "rdf:Property",
- "rdfs:comment": "The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].",
- "rdfs:label": "inLanguage",
+ "rdfs:comment": "The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.",
+ "rdfs:label": "teaches",
"schema:domainIncludes": [
- {
- "@id": "schema:Event"
- },
{
"@id": "schema:CreativeWork"
},
{
- "@id": "schema:BroadcastService"
- },
- {
- "@id": "schema:WriteAction"
- },
- {
- "@id": "schema:LinkRole"
- },
- {
- "@id": "schema:PronounceableText"
+ "@id": "schema:EducationEvent"
},
{
- "@id": "schema:CommunicateAction"
+ "@id": "schema:LearningResource"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:DefinedTerm"
},
{
- "@id": "schema:Language"
+ "@id": "schema:Text"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2382"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2427"
}
},
{
- "@id": "schema:AutoWash",
+ "@id": "schema:SurgicalProcedure",
"@type": "rdfs:Class",
- "rdfs:comment": "A car wash business.",
- "rdfs:label": "AutoWash",
+ "owl:equivalentClass": {
+ "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/387713003"
+ },
+ "rdfs:comment": "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.",
+ "rdfs:label": "SurgicalProcedure",
"rdfs:subClassOf": {
- "@id": "schema:AutomotiveBusiness"
+ "@id": "schema:MedicalProcedure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:targetCollection",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. The collection target of the action.",
- "rdfs:label": "targetCollection",
- "rdfs:subPropertyOf": {
- "@id": "schema:object"
- },
- "schema:domainIncludes": {
- "@id": "schema:UpdateAction"
+ "@id": "schema:GettingAccessHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content that discusses practical and policy aspects for getting access to specific kinds of healthcare (e.g. distribution mechanisms for vaccines).",
+ "rdfs:label": "GettingAccessHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
}
},
{
- "@id": "schema:dateModified",
- "@type": "rdf:Property",
- "rdfs:comment": "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed.",
- "rdfs:label": "dateModified",
- "schema:domainIncludes": [
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:DataFeedItem"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Date"
- },
- {
- "@id": "schema:DateTime"
- }
- ]
- },
- {
- "@id": "schema:ReceiveAction",
+ "@id": "schema:DataType",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of physically/electronically taking delivery of an object that has been transferred from an origin to a destination. Reciprocal of SendAction.\\n\\nRelated actions:\\n\\n* [[SendAction]]: The reciprocal of ReceiveAction.\\n* [[TakeAction]]: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine).",
- "rdfs:label": "ReceiveAction",
+ "rdfs:comment": "The basic data types such as Integers, Strings, etc.",
+ "rdfs:label": "DataType",
"rdfs:subClassOf": {
- "@id": "schema:TransferAction"
+ "@id": "rdfs:Class"
}
},
{
- "@id": "schema:reviews",
+ "@id": "schema:commentTime",
"@type": "rdf:Property",
- "rdfs:comment": "Review of the item.",
- "rdfs:label": "reviews",
- "schema:domainIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:CreativeWork"
- },
- {
- "@id": "schema:Product"
- },
+ "rdfs:comment": "The time at which the UserComment was made.",
+ "rdfs:label": "commentTime",
+ "schema:domainIncludes": {
+ "@id": "schema:UserComments"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Offer"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:Place"
+ "@id": "schema:Date"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Review"
- },
- "schema:supersededBy": {
- "@id": "schema:review"
- }
+ ]
},
{
- "@id": "schema:EUEnergyEfficiencyCategoryF",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class F as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryF",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "schema:VideoGallery",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Web page type: Video gallery page.",
+ "rdfs:label": "VideoGallery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MediaGallery"
}
},
{
- "@id": "schema:permitAudience",
+ "@id": "schema:departureGate",
"@type": "rdf:Property",
- "rdfs:comment": "The target audience for this permit.",
- "rdfs:label": "permitAudience",
+ "rdfs:comment": "Identifier of the flight's departure gate.",
+ "rdfs:label": "departureGate",
"schema:domainIncludes": {
- "@id": "schema:Permit"
+ "@id": "schema:Flight"
},
"schema:rangeIncludes": {
- "@id": "schema:Audience"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:durationOfWarranty",
- "@type": "rdf:Property",
- "rdfs:comment": "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.",
- "rdfs:label": "durationOfWarranty",
- "schema:domainIncludes": {
- "@id": "schema:WarrantyPromise"
- },
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:Quantity",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 kg' or '4 milligrams'.",
+ "rdfs:label": "Quantity",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:NotInForce",
- "@type": "schema:LegalForceStatus",
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#InForce-notInForce"
- },
- "rdfs:comment": "Indicates that a legislation is currently not in force.",
- "rdfs:label": "NotInForce",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
- },
- {
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
- }
- ]
+ "@id": "schema:Series",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Series in schema.org is a group of related items, typically but not necessarily of the same kind. See also [[CreativeWorkSeries]], [[EventSeries]].",
+ "rdfs:label": "Series",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
},
{
- "@id": "schema:dateCreated",
+ "@id": "schema:orderDelivery",
"@type": "rdf:Property",
- "rdfs:comment": "The date on which the CreativeWork was created or the item was added to a DataFeed.",
- "rdfs:label": "dateCreated",
+ "rdfs:comment": "The delivery of the parcel related to this order or order item.",
+ "rdfs:label": "orderDelivery",
"schema:domainIncludes": [
{
- "@id": "schema:DataFeedItem"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Date"
+ "@id": "schema:Order"
},
{
- "@id": "schema:DateTime"
+ "@id": "schema:OrderItem"
}
- ]
- },
- {
- "@id": "schema:Boolean",
- "@type": [
- "rdfs:Class",
- "schema:DataType"
],
- "rdfs:comment": "Boolean: True or False.",
- "rdfs:label": "Boolean"
+ "schema:rangeIncludes": {
+ "@id": "schema:ParcelDelivery"
+ }
},
{
- "@id": "schema:MovieSeries",
+ "@id": "schema:ScreeningEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "A series of movies. Included movies can be indicated with the hasPart property.",
- "rdfs:label": "MovieSeries",
+ "rdfs:comment": "A screening of a movie or other video.",
+ "rdfs:label": "ScreeningEvent",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWorkSeries"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:performer",
+ "@id": "schema:geographicArea",
"@type": "rdf:Property",
- "rdfs:comment": "A performer at the event—for example, a presenter, musician, musical group or actor.",
- "rdfs:label": "performer",
+ "rdfs:comment": "The geographic area associated with the audience.",
+ "rdfs:label": "geographicArea",
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:Audience"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ }
},
{
- "@id": "schema:sodiumContent",
+ "@id": "schema:representativeOfPage",
"@type": "rdf:Property",
- "rdfs:comment": "The number of milligrams of sodium.",
- "rdfs:label": "sodiumContent",
+ "rdfs:comment": "Indicates whether this image is representative of the content of the page.",
+ "rdfs:label": "representativeOfPage",
"schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
+ "@id": "schema:ImageObject"
},
"schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:sku",
- "@type": "rdf:Property",
- "rdfs:comment": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
- "rdfs:label": "sku",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:Demand"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:AndroidPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of Android-based operating systems.",
+ "rdfs:label": "AndroidPlatform",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:Discontinued",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item has been discontinued.",
- "rdfs:label": "Discontinued"
- },
- {
- "@id": "schema:telephone",
- "@type": "rdf:Property",
- "rdfs:comment": "The telephone number.",
- "rdfs:label": "telephone",
- "schema:domainIncludes": [
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:ContactPoint"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
}
},
{
- "@id": "schema:parentService",
- "@type": "rdf:Property",
- "rdfs:comment": "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.",
- "rdfs:label": "parentService",
- "schema:domainIncludes": {
- "@id": "schema:BroadcastService"
+ "@id": "schema:Claim",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.\n\n Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholarlyArticle]] or [[Question]] might be [[about]] some [[Claim]].\n\n At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.\n ",
+ "rdfs:label": "Claim",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
},
- "schema:rangeIncludes": {
- "@id": "schema:BroadcastService"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
}
},
{
- "@id": "schema:greater",
+ "@id": "schema:firstPerformance",
"@type": "rdf:Property",
- "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is greater than the object.",
- "rdfs:label": "greater",
+ "rdfs:comment": "The date and place the work was first performed.",
+ "rdfs:label": "firstPerformance",
"schema:domainIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:MusicComposition"
},
"schema:rangeIncludes": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:Event"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:openingHoursSpecification",
+ "@id": "schema:healthPlanPharmacyCategory",
"@type": "rdf:Property",
- "rdfs:comment": "The opening hours of a certain place.",
- "rdfs:label": "openingHoursSpecification",
+ "rdfs:comment": "The category or type of pharmacy associated with this cost sharing.",
+ "rdfs:label": "healthPlanPharmacyCategory",
"schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:HealthPlanCostSharingSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:OpeningHoursSpecification"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:LodgingReservation",
- "@type": "rdfs:Class",
- "rdfs:comment": "A reservation for lodging at a hotel, motel, inn, etc.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
- "rdfs:label": "LodgingReservation",
- "rdfs:subClassOf": {
- "@id": "schema:Reservation"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:webCheckinTime",
+ "@id": "schema:numberOfAirbags",
"@type": "rdf:Property",
- "rdfs:comment": "The time when a passenger can check into the flight online.",
- "rdfs:label": "webCheckinTime",
+ "rdfs:comment": "The number or type of airbags in the vehicle.",
+ "rdfs:label": "numberOfAirbags",
"schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:Vehicle"
},
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:originAddress",
+ "@id": "schema:deliveryStatus",
"@type": "rdf:Property",
- "rdfs:comment": "Shipper's address.",
- "rdfs:label": "originAddress",
+ "rdfs:comment": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).",
+ "rdfs:label": "deliveryStatus",
"schema:domainIncludes": {
"@id": "schema:ParcelDelivery"
},
"schema:rangeIncludes": {
- "@id": "schema:PostalAddress"
+ "@id": "schema:DeliveryEvent"
}
},
{
- "@id": "schema:LiveAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "LiveAlbum.",
- "rdfs:label": "LiveAlbum",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:DigitalDocumentPermissionType",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of permission which can be granted for accessing a digital document.",
+ "rdfs:label": "DigitalDocumentPermissionType",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
}
},
{
- "@id": "schema:referenceQuantity",
+ "@id": "schema:Mosque",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A mosque.",
+ "rdfs:label": "Mosque",
+ "rdfs:subClassOf": {
+ "@id": "schema:PlaceOfWorship"
+ }
+ },
+ {
+ "@id": "schema:percentile10",
"@type": "rdf:Property",
- "rdfs:comment": "The reference quantity for which a certain price applies, e.g. 1 EUR per 4 kWh of electricity. This property is a replacement for unitOfMeasurement for the advanced cases where the price does not relate to a standard unit.",
- "rdfs:label": "referenceQuantity",
+ "rdfs:comment": "The 10th percentile value.",
+ "rdfs:label": "percentile10",
"schema:domainIncludes": {
- "@id": "schema:UnitPriceSpecification"
+ "@id": "schema:QuantitativeValueDistribution"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Number"
},
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ }
},
{
- "@id": "schema:Invoice",
+ "@id": "schema:LibrarySystem",
"@type": "rdfs:Class",
- "rdfs:comment": "A statement of the money due for goods or services; a bill.",
- "rdfs:label": "Invoice",
+ "rdfs:comment": "A [[LibrarySystem]] is a collaborative system amongst several libraries.",
+ "rdfs:label": "LibrarySystem",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1495"
}
},
{
- "@id": "schema:SportingGoodsStore",
+ "@id": "schema:Nerve",
"@type": "rdfs:Class",
- "rdfs:comment": "A sporting goods store.",
- "rdfs:label": "SportingGoodsStore",
+ "rdfs:comment": "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.",
+ "rdfs:label": "Nerve",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:AnatomicalStructure"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:hasPOS",
+ "@id": "schema:temporal",
"@type": "rdf:Property",
- "rdfs:comment": "Points-of-Sales operated by the organization or person.",
- "rdfs:label": "hasPOS",
- "schema:domainIncludes": [
+ "rdfs:comment": "The \"temporal\" property can be used in cases where more specific properties\n(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate.",
+ "rdfs:label": "temporal",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Text"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Place"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
+ ]
},
{
- "@id": "schema:associatedMedia",
+ "@id": "schema:size",
"@type": "rdf:Property",
- "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for encoding.",
- "rdfs:label": "associatedMedia",
+ "rdfs:comment": "A standardized size of a product or creative work, specified either through a simple textual string (for example 'XL', '32Wx34L'), a QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable. ",
+ "rdfs:label": "size",
"schema:domainIncludes": [
{
- "@id": "schema:HyperTocEntry"
- },
- {
- "@id": "schema:HyperToc"
+ "@id": "schema:Product"
},
{
"@id": "schema:CreativeWork"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:MediaObject"
- }
- },
- {
- "@id": "schema:jobBenefits",
- "@type": "rdf:Property",
- "rdfs:comment": "Description of benefits associated with the job.",
- "rdfs:label": "jobBenefits",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:SizeSpecification"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
}
},
{
- "@id": "schema:CafeOrCoffeeShop",
+ "@id": "schema:Notary",
"@type": "rdfs:Class",
- "rdfs:comment": "A cafe or coffee shop.",
- "rdfs:label": "CafeOrCoffeeShop",
+ "rdfs:comment": "A notary.",
+ "rdfs:label": "Notary",
"rdfs:subClassOf": {
- "@id": "schema:FoodEstablishment"
+ "@id": "schema:LegalService"
}
},
{
- "@id": "schema:isConsumableFor",
+ "@id": "schema:mpn",
"@type": "rdf:Property",
- "rdfs:comment": "A pointer to another product (or multiple products) for which this product is a consumable.",
- "rdfs:label": "isConsumableFor",
- "schema:domainIncludes": {
- "@id": "schema:Product"
- },
+ "rdfs:comment": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
+ "rdfs:label": "mpn",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:Text"
},
"schema:source": {
"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:WearableSizeSystemIT",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "Italian size system for wearables.",
- "rdfs:label": "WearableSizeSystemIT",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "schema:WatchAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming dynamic/moving visual content.",
+ "rdfs:label": "WatchAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
}
},
{
- "@id": "schema:AlbumRelease",
- "@type": "schema:MusicAlbumReleaseType",
- "rdfs:comment": "AlbumRelease.",
- "rdfs:label": "AlbumRelease",
+ "@id": "schema:AutoWash",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A car wash business.",
+ "rdfs:label": "AutoWash",
+ "rdfs:subClassOf": {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ },
+ {
+ "@id": "schema:UsageOrScheduleHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about how, when, frequency and dosage of a topic.",
+ "rdfs:label": "UsageOrScheduleHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:dataFeedElement",
+ "@id": "schema:menu",
"@type": "rdf:Property",
- "rdfs:comment": "An item within in a data feed. Data feeds may have many elements.",
- "rdfs:label": "dataFeedElement",
+ "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
+ "rdfs:label": "menu",
"schema:domainIncludes": {
- "@id": "schema:DataFeed"
+ "@id": "schema:FoodEstablishment"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Menu"
},
{
- "@id": "schema:Thing"
+ "@id": "schema:Text"
},
{
- "@id": "schema:DataFeedItem"
+ "@id": "schema:URL"
}
- ]
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:hasMenu"
+ }
},
{
- "@id": "schema:educationalFramework",
- "@type": "rdf:Property",
- "rdfs:comment": "The framework to which the resource being described is aligned.",
- "rdfs:label": "educationalFramework",
- "schema:domainIncludes": {
- "@id": "schema:AlignmentObject"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:CommentAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of generating a comment about a subject.",
+ "rdfs:label": "CommentAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CommunicateAction"
}
},
{
- "@id": "schema:EnergyStarCertified",
- "@type": "schema:EnergyStarEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EnergyStar certification.",
- "rdfs:label": "EnergyStarCertified",
+ "@id": "schema:ReturnMethodEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates several types of product return methods.",
+ "rdfs:label": "ReturnMethodEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
- }
- },
- {
- "@id": "schema:ReservationPackage",
- "@type": "rdfs:Class",
- "rdfs:comment": "A group of multiple reservations with common values for all sub-reservations.",
- "rdfs:label": "ReservationPackage",
- "rdfs:subClassOf": {
- "@id": "schema:Reservation"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:departureTerminal",
+ "@id": "schema:cssSelector",
"@type": "rdf:Property",
- "rdfs:comment": "Identifier of the flight's departure terminal.",
- "rdfs:label": "departureTerminal",
- "schema:domainIncludes": {
- "@id": "schema:Flight"
- },
+ "rdfs:comment": "A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".",
+ "rdfs:label": "cssSelector",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpeakableSpecification"
+ },
+ {
+ "@id": "schema:WebPageElement"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:BodyMeasurementNeck",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Girth of neck. Used, for example, to fit shirts.",
- "rdfs:label": "BodyMeasurementNeck",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:CssSelectorType"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1389"
}
},
{
- "@id": "schema:GeoCircle",
+ "@id": "schema:JewelryStore",
"@type": "rdfs:Class",
- "rdfs:comment": "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.\n ",
- "rdfs:label": "GeoCircle",
+ "rdfs:comment": "A jewelry store.",
+ "rdfs:label": "JewelryStore",
"rdfs:subClassOf": {
- "@id": "schema:GeoShape"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:Consortium",
- "@type": "rdfs:Class",
- "rdfs:comment": "A Consortium is a membership [[Organization]] whose members are typically Organizations.",
- "rdfs:label": "Consortium",
- "rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "schema:Skin",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Skin assessment with clinical examination.",
+ "rdfs:label": "Skin",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:antagonist",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The muscle whose action counteracts the specified muscle.",
+ "rdfs:label": "antagonist",
+ "schema:domainIncludes": {
+ "@id": "schema:Muscle"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1559"
+ "schema:rangeIncludes": {
+ "@id": "schema:Muscle"
}
},
{
- "@id": "schema:WarrantyPromise",
+ "@id": "schema:members",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A member of this organization.",
+ "rdfs:label": "members",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ProgramMembership"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:member"
+ }
+ },
+ {
+ "@id": "schema:ReviewAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.",
- "rdfs:label": "WarrantyPromise",
+ "rdfs:comment": "The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.",
+ "rdfs:label": "ReviewAction",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "schema:AssessAction"
}
},
{
- "@id": "schema:currentExchangeRate",
+ "@id": "schema:exchangeRateSpread",
"@type": "rdf:Property",
- "rdfs:comment": "The current price of a currency.",
- "rdfs:label": "currentExchangeRate",
+ "rdfs:comment": "The difference between the price at which a broker or other intermediary buys and sells foreign currency.",
+ "rdfs:label": "exchangeRateSpread",
"schema:domainIncludes": {
"@id": "schema:ExchangeRateSpecification"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:UnitPriceSpecification"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MonetaryAmount"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ],
"schema:source": [
{
"@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
@@ -34329,158 +34132,127 @@
]
},
{
- "@id": "schema:newsUpdatesAndGuidelines",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates a page with news updates and guidelines. This could often be (but is not required to be) the main page containing [[SpecialAnnouncement]] markup on a site.",
- "rdfs:label": "newsUpdatesAndGuidelines",
- "schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
+ "@id": "schema:EUEnergyEfficiencyEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerates the EU energy efficiency classes A-G as well as A+, A++, and A+++ as defined in EU directive 2017/1369.",
+ "rdfs:label": "EUEnergyEfficiencyEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:EnergyEfficiencyEnumeration"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:WebContent"
- }
- ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:SocialEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: Social event.",
- "rdfs:label": "SocialEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:WearableSizeGroupMisses",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Misses\" (also known as \"Missy\") for wearables.",
+ "rdfs:label": "WearableSizeGroupMisses",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:relatedDrug",
+ "@id": "schema:bookingTime",
"@type": "rdf:Property",
- "rdfs:comment": "Any other drug related to this one, for example commonly-prescribed alternatives.",
- "rdfs:label": "relatedDrug",
+ "rdfs:comment": "The date and time the reservation was booked.",
+ "rdfs:label": "bookingTime",
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:Reservation"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:MusculoskeletalExam",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Musculoskeletal system clinical examination.",
+ "rdfs:label": "MusculoskeletalExam",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Drug"
}
},
{
- "@id": "schema:includesAttraction",
+ "@id": "schema:lowPrice",
"@type": "rdf:Property",
- "rdfs:comment": "Attraction located at destination.",
- "rdfs:label": "includesAttraction",
+ "rdfs:comment": "The lowest price of all offers available.\\n\\nUsage guidelines:\\n\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.",
+ "rdfs:label": "lowPrice",
"schema:domainIncludes": {
- "@id": "schema:TouristDestination"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:TouristAttraction"
+ "@id": "schema:AggregateOffer"
},
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
- },
+ "schema:rangeIncludes": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ "@id": "schema:Number"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:HighSchool",
+ "@id": "schema:AnimalShelter",
"@type": "rdfs:Class",
- "rdfs:comment": "A high school.",
- "rdfs:label": "HighSchool",
+ "rdfs:comment": "Animal shelter.",
+ "rdfs:label": "AnimalShelter",
"rdfs:subClassOf": {
- "@id": "schema:EducationalOrganization"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:colleague",
- "@type": "rdf:Property",
- "rdfs:comment": "A colleague of the person.",
- "rdfs:label": "colleague",
- "schema:domainIncludes": {
- "@id": "schema:Person"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:URL"
- }
- ]
- },
- {
- "@id": "schema:gtin",
+ "@id": "schema:totalTime",
"@type": "rdf:Property",
- "rdfs:comment": "A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin)). GTINs identify trade items, including products and services, using numeric identification codes. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties. The GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) express GTINs as URLs. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a \"GS1 Digital Link\" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged.\n ",
- "rdfs:label": "gtin",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
- },
+ "rdfs:comment": "The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
+ "rdfs:label": "totalTime",
"schema:domainIncludes": [
{
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:Offer"
+ "@id": "schema:HowToDirection"
},
{
- "@id": "schema:Product"
+ "@id": "schema:HowTo"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Duration"
+ }
+ },
+ {
+ "@id": "schema:Emergency",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.",
+ "rdfs:label": "Emergency",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:unitCode",
+ "@id": "schema:typeOfGood",
"@type": "rdf:Property",
- "rdfs:comment": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.",
- "rdfs:label": "unitCode",
+ "rdfs:comment": "The product that this structured value is referring to.",
+ "rdfs:label": "typeOfGood",
"schema:domainIncludes": [
- {
- "@id": "schema:UnitPriceSpecification"
- },
- {
- "@id": "schema:QuantitativeValue"
- },
{
"@id": "schema:TypeAndQuantityNode"
},
{
- "@id": "schema:PropertyValue"
+ "@id": "schema:OwnershipInfo"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:Product"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Service"
}
],
"schema:source": {
@@ -34488,227 +34260,403 @@
}
},
{
- "@id": "schema:Museum",
+ "@id": "schema:ImageGallery",
"@type": "rdfs:Class",
- "rdfs:comment": "A museum.",
- "rdfs:label": "Museum",
+ "rdfs:comment": "Web page type: Image gallery page.",
+ "rdfs:label": "ImageGallery",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:MediaGallery"
}
},
{
- "@id": "schema:GeoShape",
+ "@id": "schema:LiveBlogPosting",
"@type": "rdfs:Class",
- "rdfs:comment": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points.",
- "rdfs:label": "GeoShape",
+ "rdfs:comment": "A [[LiveBlogPosting]] is a [[BlogPosting]] intended to provide a rolling textual coverage of an ongoing event through continuous updates.",
+ "rdfs:label": "LiveBlogPosting",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ "@id": "schema:BlogPosting"
}
},
{
- "@id": "schema:Date",
- "@type": [
- "rdfs:Class",
- "schema:DataType"
- ],
- "rdfs:comment": "A date value in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
- "rdfs:label": "Date"
- },
- {
- "@id": "schema:geographicArea",
+ "@id": "schema:cvdNumICUBeds",
"@type": "rdf:Property",
- "rdfs:comment": "The geographic area associated with the audience.",
- "rdfs:label": "geographicArea",
+ "rdfs:comment": "numicubeds - ICU BEDS: Total number of staffed inpatient intensive care unit (ICU) beds.",
+ "rdfs:label": "cvdNumICUBeds",
"schema:domainIncludes": {
- "@id": "schema:Audience"
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:interpretedAsClaim",
+ "@id": "schema:translator",
"@type": "rdf:Property",
- "rdfs:comment": "Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].",
- "rdfs:label": "interpretedAsClaim",
- "rdfs:subPropertyOf": {
- "@id": "schema:description"
- },
+ "rdfs:comment": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
+ "rdfs:label": "translator",
"schema:domainIncludes": [
{
- "@id": "schema:MediaObject"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Event"
}
],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:WearableSizeGroupInfants",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Infants\" for wearables.",
+ "rdfs:label": "WearableSizeGroupInfants",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Claim"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:DoseSchedule",
- "@type": "rdfs:Class",
- "rdfs:comment": "A specific dosing schedule for a drug or supplement.",
- "rdfs:label": "DoseSchedule",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalIntangible"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "schema:category",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
+ "rdfs:label": "category",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ {
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:ActionAccessSpecification"
+ },
+ {
+ "@id": "schema:Invoice"
+ },
+ {
+ "@id": "schema:Recommendation"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:PhysicalActivity"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:CategoryCode"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Thing"
+ },
+ {
+ "@id": "schema:PhysicalActivityCategory"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1741"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
+ ]
},
{
- "@id": "schema:BrokerageAccount",
+ "@id": "schema:PublicToilet",
"@type": "rdfs:Class",
- "rdfs:comment": "An account that allows an investor to deposit funds and place investment orders with a licensed broker or brokerage firm.",
- "rdfs:label": "BrokerageAccount",
+ "rdfs:comment": "A public toilet is a room or small building containing one or more toilets (and possibly also urinals) which is available for use by the general public, or by customers or employees of certain businesses.",
+ "rdfs:label": "PublicToilet",
"rdfs:subClassOf": {
- "@id": "schema:InvestmentOrDeposit"
+ "@id": "schema:CivicStructure"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1624"
+ }
+ },
+ {
+ "@id": "schema:merchantReturnLink",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies a Web page or service by URL, for product returns.",
+ "rdfs:label": "merchantReturnLink",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ }
+ },
+ {
+ "@id": "schema:broadcastFrequency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges, e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\".",
+ "rdfs:label": "broadcastFrequency",
+ "schema:domainIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "schema:BroadcastService"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:BroadcastChannel"
}
- ]
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:BroadcastFrequencySpecification"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
+ }
},
{
- "@id": "schema:CheckoutPage",
+ "@id": "schema:FDAcategoryA",
+ "@type": "schema:DrugPregnancyCategory",
+ "rdfs:comment": "A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).",
+ "rdfs:label": "FDAcategoryA",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:MedicalContraindication",
"@type": "rdfs:Class",
- "rdfs:comment": "Web page type: Checkout page.",
- "rdfs:label": "CheckoutPage",
+ "rdfs:comment": "A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but these risks may be outweighed by other considerations or mitigated by other measures).",
+ "rdfs:label": "MedicalContraindication",
"rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:PublicationIssue",
+ "@id": "schema:ComedyEvent",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.org/ontology/bibo/Issue"
- },
- "rdfs:comment": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
- "rdfs:label": "PublicationIssue",
+ "rdfs:comment": "Event type: Comedy event.",
+ "rdfs:label": "ComedyEvent",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Event"
+ }
+ },
+ {
+ "@id": "schema:SuspendAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).",
+ "rdfs:label": "SuspendAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ControlAction"
+ }
+ },
+ {
+ "@id": "schema:Pathology",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.",
+ "rdfs:label": "Pathology",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ParentalSupport",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "ParentalSupport: this is a benefit for parental support.",
+ "rdfs:label": "ParentalSupport",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
}
},
{
- "@id": "schema:LoseAction",
+ "@id": "schema:LendAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of being defeated in a competitive activity.",
- "rdfs:label": "LoseAction",
+ "rdfs:comment": "The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\\n\\nRelated actions:\\n\\n* [[BorrowAction]]: Reciprocal of LendAction.",
+ "rdfs:label": "LendAction",
"rdfs:subClassOf": {
- "@id": "schema:AchieveAction"
+ "@id": "schema:TransferAction"
}
},
{
- "@id": "schema:departureAirport",
+ "@id": "schema:issuedThrough",
"@type": "rdf:Property",
- "rdfs:comment": "The airport where the flight originates.",
- "rdfs:label": "departureAirport",
+ "rdfs:comment": "The service through which the permit was granted.",
+ "rdfs:label": "issuedThrough",
"schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:Permit"
},
"schema:rangeIncludes": {
- "@id": "schema:Airport"
+ "@id": "schema:Service"
}
},
{
- "@id": "schema:targetName",
+ "@id": "schema:Hardcover",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Hardcover.",
+ "rdfs:label": "Hardcover"
+ },
+ {
+ "@id": "schema:FundingScheme",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A FundingScheme combines organizational, project and policy aspects of grant-based funding\n that sets guidelines, principles and mechanisms to support other kinds of projects and activities.\n Funding is typically organized via [[Grant]] funding. Examples of funding schemes: Swiss Priority Programmes (SPPs); EU Framework 7 (FP7); Horizon 2020; the NIH-R01 Grant Program; Wellcome institutional strategic support fund. For large scale public sector funding, the management and administration of grant awards is often handled by other, dedicated, organizations - [[FundingAgency]]s such as ERC, REA, ...",
+ "rdfs:label": "FundingScheme",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PatientExperienceHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the real life experience of patients or people that have lived a similar experience about the topic. May be forums, topics, Q-and-A and related material.",
+ "rdfs:label": "PatientExperienceHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ }
+ },
+ {
+ "@id": "schema:stepValue",
"@type": "rdf:Property",
- "rdfs:comment": "The name of a node in an established educational framework.",
- "rdfs:label": "targetName",
+ "rdfs:comment": "The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.",
+ "rdfs:label": "stepValue",
"schema:domainIncludes": {
- "@id": "schema:AlignmentObject"
+ "@id": "schema:PropertyValueSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:Comment",
+ "@id": "schema:TelevisionStation",
"@type": "rdfs:Class",
- "rdfs:comment": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.",
- "rdfs:label": "Comment",
+ "rdfs:comment": "A television station.",
+ "rdfs:label": "TelevisionStation",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:LocalBusiness"
}
},
{
- "@id": "schema:identifyingTest",
- "@type": "rdf:Property",
- "rdfs:comment": "A diagnostic test that can identify this sign.",
- "rdfs:label": "identifyingTest",
- "schema:domainIncludes": {
- "@id": "schema:MedicalSign"
- },
+ "@id": "schema:MRI",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Magnetic resonance imaging.",
+ "rdfs:label": "MRI",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalTest"
}
},
{
- "@id": "schema:AnatomicalSystem",
+ "@id": "schema:MotorizedBicycle",
"@type": "rdfs:Class",
- "rdfs:comment": "An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.",
- "rdfs:label": "AnatomicalSystem",
+ "rdfs:comment": "A motorized bicycle is a bicycle with an attached motor used to power the vehicle, or to assist with pedaling.",
+ "rdfs:label": "MotorizedBicycle",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:Vehicle"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://auto.schema.org"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:LowFatDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet focused on reduced fat and cholesterol intake.",
- "rdfs:label": "LowFatDiet"
+ "@id": "schema:creditedTo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga.",
+ "rdfs:label": "creditedTo",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRelease"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Person"
+ },
+ {
+ "@id": "schema:Organization"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
},
{
- "@id": "schema:SpreadsheetDigitalDocument",
- "@type": "rdfs:Class",
- "rdfs:comment": "A spreadsheet file.",
- "rdfs:label": "SpreadsheetDigitalDocument",
- "rdfs:subClassOf": {
- "@id": "schema:DigitalDocument"
+ "@id": "schema:permittedUsage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indications regarding the permitted usage of the accommodation.",
+ "rdfs:label": "permittedUsage",
+ "schema:domainIncludes": {
+ "@id": "schema:Accommodation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:review",
+ "@id": "schema:aggregateRating",
"@type": "rdf:Property",
- "rdfs:comment": "A review of the item.",
- "rdfs:label": "review",
+ "rdfs:comment": "The overall rating, based on a collection of reviews or ratings, of the item.",
+ "rdfs:label": "aggregateRating",
"schema:domainIncludes": [
{
- "@id": "schema:Service"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Brand"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Event"
},
{
"@id": "schema:Place"
@@ -34717,571 +34665,408 @@
"@id": "schema:Product"
},
{
- "@id": "schema:Brand"
+ "@id": "schema:Service"
},
{
- "@id": "schema:Event"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:Offer"
+ "@id": "schema:Organization"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Review"
+ "@id": "schema:AggregateRating"
}
},
{
- "@id": "schema:ZoneBoardingPolicy",
- "@type": "schema:BoardingPolicyType",
- "rdfs:comment": "The airline boards by zones of the plane.",
- "rdfs:label": "ZoneBoardingPolicy"
+ "@id": "schema:Poster",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A large, usually printed placard, bill, or announcement, often illustrated, that is posted to advertise or publicize something.",
+ "rdfs:label": "Poster",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1448"
+ }
},
{
- "@id": "schema:reservationStatus",
+ "@id": "schema:preparation",
"@type": "rdf:Property",
- "rdfs:comment": "The current status of the reservation.",
- "rdfs:label": "reservationStatus",
+ "rdfs:comment": "Typical preparation that a patient must undergo before having the procedure performed.",
+ "rdfs:label": "preparation",
"schema:domainIncludes": {
- "@id": "schema:Reservation"
+ "@id": "schema:MedicalProcedure"
},
- "schema:rangeIncludes": {
- "@id": "schema:ReservationStatusType"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalEntity"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DayOfWeek",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from [GoodRelations](http://purl.org/goodrelations/v1) were used (for [[Monday]], [[Tuesday]], [[Wednesday]], [[Thursday]], [[Friday]], [[Saturday]], [[Sunday]] plus a special entry for [[PublicHolidays]]); these have now been integrated directly into schema.org.\n ",
+ "rdfs:label": "DayOfWeek",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:measuredValue",
+ "@id": "schema:cvdNumC19OverflowPats",
"@type": "rdf:Property",
- "rdfs:comment": "The measuredValue of an [[Observation]].",
- "rdfs:label": "measuredValue",
+ "rdfs:comment": "numc19overflowpats - ED/OVERFLOW: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed.",
+ "rdfs:label": "cvdNumC19OverflowPats",
"schema:domainIncludes": {
- "@id": "schema:Observation"
+ "@id": "schema:CDCPMDRecord"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:DataType"
+ "@id": "schema:Number"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:performerIn",
+ "@id": "schema:Intangible",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
+ "rdfs:label": "Intangible",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
+ }
+ },
+ {
+ "@id": "schema:successorOf",
"@type": "rdf:Property",
- "rdfs:comment": "Event that this person is a performer or participant in.",
- "rdfs:label": "performerIn",
+ "rdfs:comment": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.",
+ "rdfs:label": "successorOf",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:ProductModel"
},
"schema:rangeIncludes": {
- "@id": "schema:Event"
- }
- },
- {
- "@id": "schema:Nonprofit501e",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501e: Non-profit type referring to Cooperative Hospital Service Organizations.",
- "rdfs:label": "Nonprofit501e",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:ProductModel"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:vehicleEngine",
+ "@id": "schema:cvdNumC19HOPats",
"@type": "rdf:Property",
- "rdfs:comment": "Information about the engine or engines of the vehicle.",
- "rdfs:label": "vehicleEngine",
+ "rdfs:comment": "numc19hopats - HOSPITAL ONSET: Patients hospitalized in an NHSN inpatient care location with onset of suspected or confirmed COVID-19 14 or more days after hospitalization.",
+ "rdfs:label": "cvdNumC19HOPats",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:EngineSpecification"
+ "@id": "schema:Number"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:maxValue",
+ "@id": "schema:RsvpResponseYes",
+ "@type": "schema:RsvpResponseType",
+ "rdfs:comment": "The invitee will attend.",
+ "rdfs:label": "RsvpResponseYes"
+ },
+ {
+ "@id": "schema:orderedItem",
"@type": "rdf:Property",
- "rdfs:comment": "The upper value of some characteristic or property.",
- "rdfs:label": "maxValue",
+ "rdfs:comment": "The item ordered.",
+ "rdfs:label": "orderedItem",
"schema:domainIncludes": [
{
- "@id": "schema:MonetaryAmount"
- },
- {
- "@id": "schema:PropertyValueSpecification"
- },
- {
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:OrderItem"
},
{
- "@id": "schema:PropertyValue"
+ "@id": "schema:Order"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:inDefinedTermSet",
- "@type": "rdf:Property",
- "rdfs:comment": "A [[DefinedTermSet]] that contains this term.",
- "rdfs:label": "inDefinedTermSet",
- "rdfs:subPropertyOf": {
- "@id": "schema:isPartOf"
- },
- "schema:domainIncludes": {
- "@id": "schema:DefinedTerm"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Product"
},
{
- "@id": "schema:DefinedTermSet"
+ "@id": "schema:Service"
+ },
+ {
+ "@id": "schema:OrderItem"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
- }
+ ]
},
{
- "@id": "schema:screenCount",
+ "@id": "schema:userInteractionCount",
"@type": "rdf:Property",
- "rdfs:comment": "The number of screens in the movie theater.",
- "rdfs:label": "screenCount",
+ "rdfs:comment": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication.",
+ "rdfs:label": "userInteractionCount",
"schema:domainIncludes": {
- "@id": "schema:MovieTheater"
+ "@id": "schema:InteractionCounter"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:subEvents",
+ "@id": "schema:birthPlace",
"@type": "rdf:Property",
- "rdfs:comment": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.",
- "rdfs:label": "subEvents",
+ "rdfs:comment": "The place where the person was born.",
+ "rdfs:label": "birthPlace",
"schema:domainIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:Event"
- },
- "schema:supersededBy": {
- "@id": "schema:subEvent"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:ToyStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A toy store.",
- "rdfs:label": "ToyStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
- }
+ "@id": "schema:EventRescheduled",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated.)",
+ "rdfs:label": "EventRescheduled"
},
{
- "@id": "schema:fiberContent",
+ "@id": "schema:trackingUrl",
"@type": "rdf:Property",
- "rdfs:comment": "The number of grams of fiber.",
- "rdfs:label": "fiberContent",
+ "rdfs:comment": "Tracking url for the parcel delivery.",
+ "rdfs:label": "trackingUrl",
"schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
+ "@id": "schema:ParcelDelivery"
},
"schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:IgnoreAction",
+ "@id": "schema:LifestyleModification",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of intentionally disregarding the object. An agent ignores an object.",
- "rdfs:label": "IgnoreAction",
+ "rdfs:comment": "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.",
+ "rdfs:label": "LifestyleModification",
"rdfs:subClassOf": {
- "@id": "schema:AssessAction"
- }
- },
- {
- "@id": "schema:requiredGender",
- "@type": "rdf:Property",
- "rdfs:comment": "Audiences defined by a person's gender.",
- "rdfs:label": "requiredGender",
- "schema:domainIncludes": {
- "@id": "schema:PeopleAudience"
+ "@id": "schema:MedicalEntity"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:HowOrWhereHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Information about how or where to find a topic. Also may contain location data that can be used for where to look for help if the topic is observed.",
- "rdfs:label": "HowOrWhereHealthAspect",
+ "@id": "schema:BodyMeasurementHead",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of head above the ears. Used, for example, to fit hats.",
+ "rdfs:label": "BodyMeasurementHead",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:OfferCatalog",
+ "@id": "schema:UserPlays",
"@type": "rdfs:Class",
- "rdfs:comment": "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.",
- "rdfs:label": "OfferCatalog",
+ "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
+ "rdfs:label": "UserPlays",
"rdfs:subClassOf": {
- "@id": "schema:ItemList"
- }
- },
- {
- "@id": "schema:penciler",
- "@type": "rdf:Property",
- "rdfs:comment": "The individual who draws the primary narrative artwork.",
- "rdfs:label": "penciler",
- "schema:domainIncludes": [
- {
- "@id": "schema:ComicIssue"
- },
- {
- "@id": "schema:VisualArtwork"
- },
- {
- "@id": "schema:ComicStory"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
- }
- },
- {
- "@id": "schema:EUEnergyEfficiencyCategoryC",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class C as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryC",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:UserInteraction"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "schema:supersededBy": {
+ "@id": "schema:InteractionCounter"
}
},
{
- "@id": "schema:SubscribeAction",
+ "@id": "schema:MiddleSchool",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.\\n\\nRelated actions:\\n\\n* [[FollowAction]]: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.",
- "rdfs:label": "SubscribeAction",
+ "rdfs:comment": "A middle school (typically for children aged around 11-14, although this varies somewhat).",
+ "rdfs:label": "MiddleSchool",
"rdfs:subClassOf": {
- "@id": "schema:InteractAction"
- }
- },
- {
- "@id": "schema:CrossSectional",
- "@type": "schema:MedicalObservationalStudyDesign",
- "rdfs:comment": "Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.",
- "rdfs:label": "CrossSectional",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:EducationalOrganization"
}
},
{
- "@id": "schema:episode",
- "@type": "rdf:Property",
- "rdfs:comment": "An episode of a tv, radio or game media within a series or season.",
- "rdfs:label": "episode",
- "rdfs:subPropertyOf": {
- "@id": "schema:hasPart"
+ "@id": "schema:ComicStory",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The term \"story\" is any indivisible, re-printable\n \tunit of a comic, including the interior stories, covers, and backmatter. Most\n \tcomics have at least two stories: a cover (ComicCoverArt) and an interior story.",
+ "rdfs:label": "ComicStory",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:CreativeWorkSeason"
- },
- {
- "@id": "schema:TVSeries"
- },
- {
- "@id": "schema:RadioSeries"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Episode"
+ "schema:isPartOf": {
+ "@id": "https://bib.schema.org"
}
},
{
- "@id": "schema:PathologyTest",
+ "@id": "schema:LakeBodyOfWater",
"@type": "rdfs:Class",
- "rdfs:comment": "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.",
- "rdfs:label": "PathologyTest",
+ "rdfs:comment": "A lake (for example, Lake Pontrachain).",
+ "rdfs:label": "LakeBodyOfWater",
"rdfs:subClassOf": {
- "@id": "schema:MedicalTest"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:BodyOfWater"
}
},
{
- "@id": "schema:readBy",
+ "@id": "schema:disambiguatingDescription",
"@type": "rdf:Property",
- "rdfs:comment": "A person who reads (performs) the audiobook.",
- "rdfs:label": "readBy",
+ "rdfs:comment": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
+ "rdfs:label": "disambiguatingDescription",
"rdfs:subPropertyOf": {
- "@id": "schema:actor"
+ "@id": "schema:description"
},
"schema:domainIncludes": {
- "@id": "schema:Audiobook"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "schema:Thing"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:bookEdition",
+ "@id": "schema:nonEqual",
"@type": "rdf:Property",
- "rdfs:comment": "The edition of the book.",
- "rdfs:label": "bookEdition",
+ "rdfs:comment": "This ordering relation for qualitative values indicates that the subject is not equal to the object.",
+ "rdfs:label": "nonEqual",
"schema:domainIncludes": {
- "@id": "schema:Book"
+ "@id": "schema:QualitativeValue"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:QualitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:BodyOfWater",
- "@type": "rdfs:Class",
- "rdfs:comment": "A body of water, such as a sea, ocean, or lake.",
- "rdfs:label": "BodyOfWater",
- "rdfs:subClassOf": {
- "@id": "schema:Landform"
+ "@id": "schema:Monday",
+ "@type": "schema:DayOfWeek",
+ "rdfs:comment": "The day of the week between Sunday and Tuesday.",
+ "rdfs:label": "Monday",
+ "schema:sameAs": {
+ "@id": "http://www.wikidata.org/entity/Q105"
}
},
{
- "@id": "schema:antagonist",
+ "@id": "schema:offeredBy",
"@type": "rdf:Property",
- "rdfs:comment": "The muscle whose action counteracts the specified muscle.",
- "rdfs:label": "antagonist",
+ "rdfs:comment": "A pointer to the organization or person making the offer.",
+ "rdfs:label": "offeredBy",
"schema:domainIncludes": {
- "@id": "schema:Muscle"
+ "@id": "schema:Offer"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:makesOffer"
},
- "schema:rangeIncludes": {
- "@id": "schema:Muscle"
- }
- },
- {
- "@id": "schema:healthCondition",
- "@type": "rdf:Property",
- "rdfs:comment": "Specifying the health condition(s) of a patient, medical study, or other target audience.",
- "rdfs:label": "healthCondition",
- "schema:domainIncludes": [
- {
- "@id": "schema:PeopleAudience"
- },
+ "schema:rangeIncludes": [
{
- "@id": "schema:MedicalStudy"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Patient"
+ "@id": "schema:Person"
}
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:MedicalCondition"
- }
+ ]
},
{
- "@id": "schema:WearableSizeSystemFR",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "French size system for wearables.",
- "rdfs:label": "WearableSizeSystemFR",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:termCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]",
+ "rdfs:label": "termCode",
+ "schema:domainIncludes": {
+ "@id": "schema:DefinedTerm"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:WearableSizeGroupPetite",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Petite\" for wearables.",
- "rdfs:label": "WearableSizeGroupPetite",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:WearableSizeGroupMisses",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Misses\" (also known as \"Missy\") for wearables.",
- "rdfs:label": "WearableSizeGroupMisses",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:Mountain",
+ "@id": "schema:AboutPage",
"@type": "rdfs:Class",
- "rdfs:comment": "A mountain, like Mount Whitney or Mount Everest.",
- "rdfs:label": "Mountain",
+ "rdfs:comment": "Web page type: About page.",
+ "rdfs:label": "AboutPage",
"rdfs:subClassOf": {
- "@id": "schema:Landform"
- }
- },
- {
- "@id": "schema:RentalVehicleUsage",
- "@type": "schema:CarUsageType",
- "rdfs:comment": "Indicates the usage of the vehicle as a rental car.",
- "rdfs:label": "RentalVehicleUsage",
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:WebPage"
}
},
{
- "@id": "schema:includesHealthPlanFormulary",
+ "@id": "schema:billingAddress",
"@type": "rdf:Property",
- "rdfs:comment": "Formularies covered by this plan.",
- "rdfs:label": "includesHealthPlanFormulary",
+ "rdfs:comment": "The billing address for the order.",
+ "rdfs:label": "billingAddress",
"schema:domainIncludes": {
- "@id": "schema:HealthInsurancePlan"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Order"
},
"schema:rangeIncludes": {
- "@id": "schema:HealthPlanFormulary"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "schema:PostalAddress"
}
},
{
- "@id": "schema:merchant",
+ "@id": "schema:seatingType",
"@type": "rdf:Property",
- "rdfs:comment": "'merchant' is an out-dated term for 'seller'.",
- "rdfs:label": "merchant",
+ "rdfs:comment": "The type/class of the seat.",
+ "rdfs:label": "seatingType",
"schema:domainIncludes": {
- "@id": "schema:Order"
+ "@id": "schema:Seat"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:QualitativeValue"
}
- ],
- "schema:supersededBy": {
- "@id": "schema:seller"
- }
+ ]
},
{
- "@id": "schema:publisherImprint",
+ "@id": "schema:fuelEfficiency",
"@type": "rdf:Property",
- "rdfs:comment": "The publishing division which published the comic.",
- "rdfs:label": "publisherImprint",
+ "rdfs:comment": "The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\\n\\n* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.\\n* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.\\n* Note 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use [[valueReference]] to link the value for the fuel economy to another value.",
+ "rdfs:label": "fuelEfficiency",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "schema:Vehicle"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
- }
- },
- {
- "@id": "schema:APIReference",
- "@type": "rdfs:Class",
- "rdfs:comment": "Reference documentation for application programming interfaces (APIs).",
- "rdfs:label": "APIReference",
- "rdfs:subClassOf": {
- "@id": "schema:TechArticle"
- }
- },
- {
- "@id": "schema:Nonprofit501c7",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs.",
- "rdfs:label": "Nonprofit501c7",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
- }
- },
- {
- "@id": "schema:LandmarksOrHistoricalBuildings",
- "@type": "rdfs:Class",
- "rdfs:comment": "An historical landmark or building.",
- "rdfs:label": "LandmarksOrHistoricalBuildings",
- "rdfs:subClassOf": {
- "@id": "schema:Place"
- }
- },
- {
- "@id": "schema:Diet",
- "@type": "rdfs:Class",
- "rdfs:comment": "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.",
- "rdfs:label": "Diet",
- "rdfs:subClassOf": [
- {
- "@id": "schema:LifestyleModification"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:bioChemInteraction",
+ "@id": "schema:encodesBioChemEntity",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org"
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
},
- "rdfs:comment": "A BioChemEntity that is known to interact with this item.",
- "rdfs:label": "bioChemInteraction",
+ "rdfs:comment": "Another BioChemEntity encoded by this one. ",
+ "rdfs:label": "encodesBioChemEntity",
"schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
+ "@id": "schema:Gene"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isEncodedByBioChemEntity"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
@@ -35291,18 +35076,39 @@
}
},
{
- "@id": "schema:secondaryPrevention",
+ "@id": "schema:line",
"@type": "rdf:Property",
- "rdfs:comment": "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.",
- "rdfs:label": "secondaryPrevention",
+ "rdfs:comment": "A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.",
+ "rdfs:label": "line",
"schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
+ "@id": "schema:GeoShape"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:QualitativeValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.",
+ "rdfs:label": "QualitativeValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:departureTerminal",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's departure terminal.",
+ "rdfs:label": "departureTerminal",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalTherapy"
+ "@id": "schema:Text"
}
},
{
@@ -35326,1140 +35132,999 @@
}
},
{
- "@id": "schema:CableOrSatelliteService",
+ "@id": "schema:GameServer",
"@type": "rdfs:Class",
- "rdfs:comment": "A service which provides access to media programming like TV or radio. Access may be via cable or satellite.",
- "rdfs:label": "CableOrSatelliteService",
+ "rdfs:comment": "Server that provides game interaction in a multiplayer game.",
+ "rdfs:label": "GameServer",
"rdfs:subClassOf": {
- "@id": "schema:Service"
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:itemCondition",
- "@type": "rdf:Property",
- "rdfs:comment": "A predefined value from OfferItemCondition specifying the condition of the product or service, or the products or services included in the offer. Also used for product return policies to specify the condition of products accepted for returns.",
- "rdfs:label": "itemCondition",
- "schema:domainIncludes": [
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:MerchantReturnPolicy"
- },
- {
- "@id": "schema:Offer"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:OfferItemCondition"
+ "@id": "schema:StructuredValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.",
+ "rdfs:label": "StructuredValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:MedicalCondition",
+ "@id": "schema:PreOrderAction",
"@type": "rdfs:Class",
- "rdfs:comment": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.",
- "rdfs:label": "MedicalCondition",
+ "rdfs:comment": "An agent orders a (not yet released) object/product/service to be delivered/sent.",
+ "rdfs:label": "PreOrderAction",
"rdfs:subClassOf": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:TradeAction"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1125"
}
},
{
- "@id": "schema:BusStop",
+ "@id": "schema:Duration",
"@type": "rdfs:Class",
- "rdfs:comment": "A bus stop.",
- "rdfs:label": "BusStop",
+ "rdfs:comment": "Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "Duration",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:Quantity"
}
},
{
- "@id": "schema:Offer",
+ "@id": "schema:BroadcastEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "An offer to transfer some rights to an item or to provide a service — for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\\n\\nNote: As the [[businessFunction]] property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\\n\\nFor [GTIN](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/).",
- "rdfs:label": "Offer",
+ "rdfs:comment": "An over the air or online broadcast event.",
+ "rdfs:label": "BroadcastEvent",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskFactor",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.",
+ "rdfs:label": "MedicalRiskFactor",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:seeks",
+ "@id": "schema:upvoteCount",
"@type": "rdf:Property",
- "rdfs:comment": "A pointer to products or services sought by the organization or person (demand).",
- "rdfs:label": "seeks",
- "schema:domainIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Demand"
+ "rdfs:comment": "The number of upvotes this question, answer or comment has received from the community.",
+ "rdfs:label": "upvoteCount",
+ "schema:domainIncludes": {
+ "@id": "schema:Comment"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:Cemetery",
- "@type": "rdfs:Class",
- "rdfs:comment": "A graveyard.",
- "rdfs:label": "Cemetery",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:BusinessEvent",
- "@type": "rdfs:Class",
- "rdfs:comment": "Event type: Business event.",
- "rdfs:label": "BusinessEvent",
- "rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:map",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A URL to a map of the place.",
+ "rdfs:label": "map",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:hasMap"
}
},
{
- "@id": "schema:relatedCondition",
+ "@id": "schema:byMonth",
"@type": "rdf:Property",
- "rdfs:comment": "A medical condition associated with this anatomy.",
- "rdfs:label": "relatedCondition",
- "schema:domainIncludes": [
- {
- "@id": "schema:AnatomicalSystem"
- },
- {
- "@id": "schema:AnatomicalStructure"
- },
- {
- "@id": "schema:SuperficialAnatomy"
- }
- ],
+ "rdfs:comment": "Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1.",
+ "rdfs:label": "byMonth",
+ "schema:domainIncludes": {
+ "@id": "schema:Schedule"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalCondition"
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
}
},
{
- "@id": "schema:CookAction",
+ "@id": "schema:Comment",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of producing/preparing food.",
- "rdfs:label": "CookAction",
+ "rdfs:comment": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the [[text]] property, and its topic via [[about]], properties shared with all CreativeWorks.",
+ "rdfs:label": "Comment",
"rdfs:subClassOf": {
- "@id": "schema:CreateAction"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:RemixAlbum",
- "@type": "schema:MusicAlbumProductionType",
- "rdfs:comment": "RemixAlbum.",
- "rdfs:label": "RemixAlbum",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:ConvenienceStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A convenience store.",
+ "rdfs:label": "ConvenienceStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:paymentUrl",
+ "@id": "schema:geoRadius",
"@type": "rdf:Property",
- "rdfs:comment": "The URL for sending a payment.",
- "rdfs:label": "paymentUrl",
+ "rdfs:comment": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
+ "rdfs:label": "geoRadius",
"schema:domainIncludes": {
- "@id": "schema:Order"
+ "@id": "schema:GeoCircle"
},
- "schema:rangeIncludes": {
- "@id": "schema:URL"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Distance"
+ }
+ ]
},
{
- "@id": "schema:targetPlatform",
+ "@id": "schema:announcementLocation",
"@type": "rdf:Property",
- "rdfs:comment": "Type of app development: phone, Metro style, desktop, XBox, etc.",
- "rdfs:label": "targetPlatform",
- "schema:domainIncludes": {
- "@id": "schema:APIReference"
+ "rdfs:comment": "Indicates a specific [[CivicStructure]] or [[LocalBusiness]] associated with the SpecialAnnouncement. For example, a specific testing facility or business with special opening hours. For a larger geographic region like a quarantine of an entire region, use [[spatialCoverage]].",
+ "rdfs:label": "announcementLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:spatialCoverage"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:sourcedFrom",
- "@type": "rdf:Property",
- "rdfs:comment": "The neurological pathway that originates the neurons.",
- "rdfs:label": "sourcedFrom",
"schema:domainIncludes": {
- "@id": "schema:Nerve"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:SpecialAnnouncement"
},
- "schema:rangeIncludes": {
- "@id": "schema:BrainStructure"
- }
- },
- {
- "@id": "schema:Nonprofit501c21",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c21: Non-profit type referring to Black Lung Benefit Trusts.",
- "rdfs:label": "Nonprofit501c21",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
- }
- },
- {
- "@id": "schema:inker",
- "@type": "rdf:Property",
- "rdfs:comment": "The individual who traces over the pencil drawings in ink after pencils are complete.",
- "rdfs:label": "inker",
- "schema:domainIncludes": [
- {
- "@id": "schema:VisualArtwork"
- },
+ "schema:rangeIncludes": [
{
- "@id": "schema:ComicIssue"
+ "@id": "schema:CivicStructure"
},
{
- "@id": "schema:ComicStory"
+ "@id": "schema:LocalBusiness"
}
],
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2514"
}
},
{
- "@id": "schema:Recipe",
- "@type": "rdfs:Class",
- "rdfs:comment": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via [[suitableForDiet]]. The [[keywords]] property can also be used to add more detail.",
- "rdfs:label": "Recipe",
- "rdfs:subClassOf": {
- "@id": "schema:HowTo"
+ "@id": "schema:accountablePerson",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specifies the Person that is legally accountable for the CreativeWork.",
+ "rdfs:label": "accountablePerson",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:AllocateAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of organizing tasks/objects/events by associating resources to it.",
- "rdfs:label": "AllocateAction",
- "rdfs:subClassOf": {
- "@id": "schema:OrganizeAction"
+ "@id": "schema:AlbumRelease",
+ "@type": "schema:MusicAlbumReleaseType",
+ "rdfs:comment": "AlbumRelease.",
+ "rdfs:label": "AlbumRelease",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:contactPoints",
+ "@id": "schema:downPayment",
"@type": "rdf:Property",
- "rdfs:comment": "A contact point for a person or organization.",
- "rdfs:label": "contactPoints",
- "schema:domainIncludes": [
+ "rdfs:comment": "a type of payment made in cash during the onset of the purchase of an expensive good/service. The payment typically represents only a percentage of the full purchase price.",
+ "rdfs:label": "downPayment",
+ "schema:domainIncludes": {
+ "@id": "schema:RepaymentSpecification"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Number"
},
{
- "@id": "schema:Person"
+ "@id": "schema:MonetaryAmount"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:ContactPoint"
- },
- "schema:supersededBy": {
- "@id": "schema:contactPoint"
- }
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ }
+ ]
},
{
- "@id": "schema:ticketedSeat",
+ "@id": "schema:worstRating",
"@type": "rdf:Property",
- "rdfs:comment": "The seat associated with the ticket.",
- "rdfs:label": "ticketedSeat",
+ "rdfs:comment": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.",
+ "rdfs:label": "worstRating",
"schema:domainIncludes": {
- "@id": "schema:Ticket"
+ "@id": "schema:Rating"
},
- "schema:rangeIncludes": {
- "@id": "schema:Seat"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Number"
+ }
+ ]
},
{
- "@id": "schema:accessibilityAPI",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates that the resource is compatible with the referenced accessibility API ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).",
- "rdfs:label": "accessibilityAPI",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:SingleFamilyResidence",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Residence type: Single-family home.",
+ "rdfs:label": "SingleFamilyResidence",
+ "rdfs:subClassOf": {
+ "@id": "schema:House"
}
},
{
- "@id": "schema:departureStation",
+ "@id": "schema:discusses",
"@type": "rdf:Property",
- "rdfs:comment": "The station from which the train departs.",
- "rdfs:label": "departureStation",
+ "rdfs:comment": "Specifies the CreativeWork associated with the UserComment.",
+ "rdfs:label": "discusses",
"schema:domainIncludes": {
- "@id": "schema:TrainTrip"
+ "@id": "schema:UserComments"
},
"schema:rangeIncludes": {
- "@id": "schema:TrainStation"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:map",
+ "@id": "schema:vehicleModelDate",
"@type": "rdf:Property",
- "rdfs:comment": "A URL to a map of the place.",
- "rdfs:label": "map",
+ "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
+ "rdfs:label": "vehicleModelDate",
"schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Vehicle"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:Date"
},
- "schema:supersededBy": {
- "@id": "schema:hasMap"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:MedicalGuidelineContraindication",
+ "@id": "schema:MusicRelease",
"@type": "rdfs:Class",
- "rdfs:comment": "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.",
- "rdfs:label": "MedicalGuidelineContraindication",
+ "rdfs:comment": "A MusicRelease is a specific release of a music album.",
+ "rdfs:label": "MusicRelease",
"rdfs:subClassOf": {
- "@id": "schema:MedicalGuideline"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:legalName",
- "@type": "rdf:Property",
- "rdfs:comment": "The official name of the organization, e.g. the registered company name.",
- "rdfs:label": "legalName",
- "schema:domainIncludes": {
- "@id": "schema:Organization"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MusicPlaylist"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:OriginalShippingFees",
- "@type": "schema:ReturnFeesEnumeration",
- "rdfs:comment": "Specifies that the customer must pay the original shipping costs when returning a product.",
- "rdfs:label": "OriginalShippingFees",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:EmployerAggregateRating",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An aggregate rating of an Organization related to its role as an employer.",
+ "rdfs:label": "EmployerAggregateRating",
+ "rdfs:subClassOf": {
+ "@id": "schema:AggregateRating"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1689"
}
},
{
- "@id": "schema:Nonprofit501c27",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c27: Non-profit type referring to State-Sponsored Workers' Compensation Reinsurance Organizations.",
- "rdfs:label": "Nonprofit501c27",
+ "@id": "schema:associatedAnatomy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The anatomy of the underlying organ system or structures associated with this entity.",
+ "rdfs:label": "associatedAnatomy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PhysicalActivity"
+ },
+ {
+ "@id": "schema:MedicalCondition"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SuperficialAnatomy"
+ },
+ {
+ "@id": "schema:AnatomicalSystem"
+ },
+ {
+ "@id": "schema:AnatomicalStructure"
+ }
+ ]
},
{
- "@id": "schema:targetProduct",
+ "@id": "schema:accessibilityHazard",
"@type": "rdf:Property",
- "rdfs:comment": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.",
- "rdfs:label": "targetProduct",
+ "rdfs:comment": "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should be drawn from the [approved vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).",
+ "rdfs:label": "accessibilityHazard",
"schema:domainIncludes": {
- "@id": "schema:SoftwareSourceCode"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:relatedStructure",
- "@type": "rdf:Property",
- "rdfs:comment": "Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.",
- "rdfs:label": "relatedStructure",
- "schema:domainIncludes": {
- "@id": "schema:AnatomicalSystem"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:AnatomicalStructure"
- }
+ "@id": "schema:Female",
+ "@type": "schema:GenderType",
+ "rdfs:comment": "The female gender.",
+ "rdfs:label": "Female"
},
{
- "@id": "schema:Menu",
+ "@id": "schema:Episode",
"@type": "rdfs:Class",
- "rdfs:comment": "A structured representation of food or drink items available from a FoodEstablishment.",
- "rdfs:label": "Menu",
+ "rdfs:comment": "A media episode (e.g. TV, radio, video game) which can be part of a series or season.",
+ "rdfs:label": "Episode",
"rdfs:subClassOf": {
"@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:inventoryLevel",
- "@type": "rdf:Property",
- "rdfs:comment": "The current approximate inventory level for the item or items.",
- "rdfs:label": "inventoryLevel",
- "schema:domainIncludes": [
- {
- "@id": "schema:Offer"
- },
+ "@id": "schema:ReviewNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[NewsArticle]] and [[CriticReview]] providing a professional critic's assessment of a service, product, performance, or artistic or literary work.",
+ "rdfs:label": "ReviewNewsArticle",
+ "rdfs:subClassOf": [
{
- "@id": "schema:Demand"
+ "@id": "schema:NewsArticle"
},
{
- "@id": "schema:SomeProducts"
+ "@id": "schema:CriticReview"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:LowSaltDiet",
- "@type": "schema:RestrictedDiet",
- "rdfs:comment": "A diet focused on reduced sodium intake.",
- "rdfs:label": "LowSaltDiet"
- },
- {
- "@id": "schema:ElementarySchool",
- "@type": "rdfs:Class",
- "rdfs:comment": "An elementary school.",
- "rdfs:label": "ElementarySchool",
- "rdfs:subClassOf": {
- "@id": "schema:EducationalOrganization"
- }
- },
- {
- "@id": "schema:version",
- "@type": "rdf:Property",
- "rdfs:comment": "The version of the CreativeWork embodied by a specified resource.",
- "rdfs:label": "version",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:source": [
{
- "@id": "schema:Text"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
},
{
- "@id": "schema:Number"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
}
]
},
{
- "@id": "schema:ParentAudience",
- "@type": "rdfs:Class",
- "rdfs:comment": "A set of characteristics describing parents, who can be interested in viewing some content.",
- "rdfs:label": "ParentAudience",
- "rdfs:subClassOf": {
- "@id": "schema:PeopleAudience"
- }
+ "@id": "schema:SeatingMap",
+ "@type": "schema:MapCategoryType",
+ "rdfs:comment": "A seating map.",
+ "rdfs:label": "SeatingMap"
},
{
- "@id": "schema:educationalRole",
+ "@id": "schema:legislationDateVersion",
"@type": "rdf:Property",
- "rdfs:comment": "An educationalRole of an EducationalAudience.",
- "rdfs:label": "educationalRole",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#version_date"
+ },
+ "rdfs:comment": "The point-in-time at which the provided description of the legislation is valid (e.g.: when looking at the law on the 2016-04-07 (= dateVersion), I get the consolidation of 2015-04-12 of the \"National Insurance Contributions Act 2015\")",
+ "rdfs:label": "legislationDateVersion",
"schema:domainIncludes": {
- "@id": "schema:EducationalAudience"
+ "@id": "schema:Legislation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Date"
+ },
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#version_date"
}
},
{
- "@id": "schema:eventSchedule",
+ "@id": "schema:color",
"@type": "rdf:Property",
- "rdfs:comment": "Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of\n repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly\n gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that\n is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated\n [[Schedule]], this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months\n or seasons.",
- "rdfs:label": "eventSchedule",
+ "rdfs:comment": "The color of the product.",
+ "rdfs:label": "color",
"schema:domainIncludes": {
- "@id": "schema:Event"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Product"
},
"schema:rangeIncludes": {
- "@id": "schema:Schedule"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:Dataset",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": [
+ "@id": "schema:checkinTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The earliest someone may check into a lodging establishment.",
+ "rdfs:label": "checkinTime",
+ "schema:domainIncludes": [
{
- "@id": "http://rdfs.org/ns/void#Dataset"
+ "@id": "schema:LodgingBusiness"
},
{
- "@id": "http://www.w3.org/ns/dcat#Dataset"
+ "@id": "schema:LodgingReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
},
{
- "@id": "http://purl.org/dc/dcmitype/Dataset"
+ "@id": "schema:Time"
}
- ],
- "rdfs:comment": "A body of structured information describing some topic(s) of interest.",
- "rdfs:label": "Dataset",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass"
- }
+ ]
},
{
- "@id": "schema:Fungus",
- "@type": "schema:InfectiousAgentClass",
- "rdfs:comment": "Pathogenic fungus.",
- "rdfs:label": "Fungus",
+ "@id": "schema:PriceSpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value representing a price or price range. Typically, only the subclasses of this type are used for markup. It is recommended to use [[MonetaryAmount]] to describe independent amounts of money such as a salary, credit card limits, etc.",
+ "rdfs:label": "PriceSpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:EvidenceLevelB",
+ "@type": "schema:MedicalEvidenceLevel",
+ "rdfs:comment": "Data derived from a single randomized trial, or nonrandomized studies.",
+ "rdfs:label": "EvidenceLevelB",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:course",
- "@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The course where this action was taken.",
- "rdfs:label": "course",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
- "schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:BodyMeasurementBust",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of bust. Used, for example, to fit women's suits.",
+ "rdfs:label": "BodyMeasurementBust",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:supersededBy": {
- "@id": "schema:exerciseCourse"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:Courthouse",
+ "@id": "schema:Person",
"@type": "rdfs:Class",
- "rdfs:comment": "A courthouse.",
- "rdfs:label": "Courthouse",
+ "owl:equivalentClass": {
+ "@id": "foaf:Person"
+ },
+ "rdfs:comment": "A person (alive, dead, undead, or fictional).",
+ "rdfs:label": "Person",
"rdfs:subClassOf": {
- "@id": "schema:GovernmentBuilding"
+ "@id": "schema:Thing"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
}
},
{
- "@id": "schema:RearWheelDriveConfiguration",
- "@type": "schema:DriveWheelConfigurationValue",
- "rdfs:comment": "Real-wheel drive is a transmission layout where the engine drives the rear wheels.",
- "rdfs:label": "RearWheelDriveConfiguration",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:HomeGoodsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A home goods store.",
+ "rdfs:label": "HomeGoodsStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:restockingFee",
+ "@id": "schema:comprisedOf",
"@type": "rdf:Property",
- "rdfs:comment": "Use [[MonetaryAmount]] to specify a fixed restocking fee for product returns, or use [[Number]] to specify a percentage of the product price paid by the customer.",
- "rdfs:label": "restockingFee",
+ "rdfs:comment": "Specifying something physically contained by something else. Typically used here for the underlying anatomical structures, such as organs, that comprise the anatomical system.",
+ "rdfs:label": "comprisedOf",
"schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
+ "@id": "schema:AnatomicalSystem"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:AnatomicalStructure"
},
{
- "@id": "schema:Number"
+ "@id": "schema:AnatomicalSystem"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
- }
- },
- {
- "@id": "schema:RadioSeason",
- "@type": "rdfs:Class",
- "rdfs:comment": "Season dedicated to radio broadcast and associated online delivery.",
- "rdfs:label": "RadioSeason",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWorkSeason"
- }
+ ]
},
{
- "@id": "schema:icaoCode",
+ "@id": "schema:doseUnit",
"@type": "rdf:Property",
- "rdfs:comment": "ICAO identifier for an airport.",
- "rdfs:label": "icaoCode",
+ "rdfs:comment": "The unit of the dose, e.g. 'mg'.",
+ "rdfs:label": "doseUnit",
"schema:domainIncludes": {
- "@id": "schema:Airport"
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:cookingMethod",
+ "@id": "schema:artform",
"@type": "rdf:Property",
- "rdfs:comment": "The method of cooking, such as Frying, Steaming, ...",
- "rdfs:label": "cookingMethod",
+ "rdfs:comment": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.",
+ "rdfs:label": "artform",
"schema:domainIncludes": {
- "@id": "schema:Recipe"
+ "@id": "schema:VisualArtwork"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:warrantyPromise",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The warranty promise(s) included in the offer.",
+ "rdfs:label": "warrantyPromise",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SellAction"
+ },
+ {
+ "@id": "schema:BuyAction"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:WarrantyPromise"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:warranty"
}
},
{
- "@id": "schema:Nonprofit501c24",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c24: Non-profit type referring to Section 4049 ERISA Trusts.",
- "rdfs:label": "Nonprofit501c24",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:lodgingUnitDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A full description of the lodging unit.",
+ "rdfs:label": "lodgingUnitDescription",
+ "schema:domainIncludes": {
+ "@id": "schema:LodgingReservation"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:NLNonprofitType",
- "@type": "rdfs:Class",
- "rdfs:comment": "NLNonprofitType: Non-profit organization type originating from the Netherlands.",
- "rdfs:label": "NLNonprofitType",
- "rdfs:subClassOf": {
- "@id": "schema:NonprofitType"
+ "@id": "schema:costCurrency",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The currency (in 3-letter) of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217. ",
+ "rdfs:label": "costCurrency",
+ "schema:domainIncludes": {
+ "@id": "schema:DrugCost"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:OrderDelivered",
- "@type": "schema:OrderStatus",
- "rdfs:comment": "OrderStatus representing successful delivery of an order.",
- "rdfs:label": "OrderDelivered"
- },
- {
- "@id": "schema:financialAidEligible",
+ "@id": "schema:episode",
"@type": "rdf:Property",
- "rdfs:comment": "A financial aid type or program which students may use to pay for tuition or fees associated with the program.",
- "rdfs:label": "financialAidEligible",
- "schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "rdfs:comment": "An episode of a TV, radio or game media within a series or season.",
+ "rdfs:label": "episode",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:hasPart"
},
- "schema:rangeIncludes": [
+ "schema:domainIncludes": [
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:TVSeries"
},
{
- "@id": "schema:Text"
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2418"
- }
- },
- {
- "@id": "schema:AboutPage",
- "@type": "rdfs:Class",
- "rdfs:comment": "Web page type: About page.",
- "rdfs:label": "AboutPage",
- "rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "schema:rangeIncludes": {
+ "@id": "schema:Episode"
}
},
{
- "@id": "schema:DrugStrength",
+ "@id": "schema:ClaimReview",
"@type": "rdfs:Class",
- "rdfs:comment": "A specific strength in which a medical drug is available in a specific country.",
- "rdfs:label": "DrugStrength",
+ "rdfs:comment": "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).",
+ "rdfs:label": "ClaimReview",
"rdfs:subClassOf": {
- "@id": "schema:MedicalIntangible"
+ "@id": "schema:Review"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:Aquarium",
- "@type": "rdfs:Class",
- "rdfs:comment": "Aquarium.",
- "rdfs:label": "Aquarium",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
- }
- },
- {
- "@id": "schema:Library",
- "@type": "rdfs:Class",
- "rdfs:comment": "A library.",
- "rdfs:label": "Library",
- "rdfs:subClassOf": {
- "@id": "schema:LocalBusiness"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1061"
}
},
{
- "@id": "schema:Taxi",
+ "@id": "schema:NutritionInformation",
"@type": "rdfs:Class",
- "rdfs:comment": "A taxi.",
- "rdfs:label": "Taxi",
+ "rdfs:comment": "Nutritional information about the recipe.",
+ "rdfs:label": "NutritionInformation",
"rdfs:subClassOf": {
- "@id": "schema:Service"
- },
- "schema:supersededBy": {
- "@id": "schema:TaxiService"
+ "@id": "schema:StructuredValue"
}
},
{
- "@id": "schema:applicantLocationRequirements",
- "@type": "rdf:Property",
- "rdfs:comment": "The location(s) applicants can apply from. This is usually used for telecommuting jobs where the applicant does not need to be in a physical office. Note: This should not be used for citizenship or work visa requirements.",
- "rdfs:label": "applicantLocationRequirements",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
- },
+ "@id": "schema:CT",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "X-ray computed tomography imaging.",
+ "rdfs:label": "CT",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:AdministrativeArea"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2083"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:bodyLocation",
+ "@id": "schema:feesAndCommissionsSpecification",
"@type": "rdf:Property",
- "rdfs:comment": "Location in the body of the anatomical structure.",
- "rdfs:label": "bodyLocation",
+ "rdfs:comment": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.",
+ "rdfs:label": "feesAndCommissionsSpecification",
"schema:domainIncludes": [
{
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:FinancialService"
},
{
- "@id": "schema:MedicalProcedure"
+ "@id": "schema:FinancialProduct"
}
],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:bestRating",
- "@type": "rdf:Property",
- "rdfs:comment": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.",
- "rdfs:label": "bestRating",
- "schema:domainIncludes": {
- "@id": "schema:Rating"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:Number"
+ "@id": "schema:URL"
},
{
"@id": "schema:Text"
}
- ]
- },
- {
- "@id": "schema:CheckInAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\\n\\nRelated actions:\\n\\n* [[CheckOutAction]]: The antonym of CheckInAction.\\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.",
- "rdfs:label": "CheckInAction",
- "rdfs:subClassOf": {
- "@id": "schema:CommunicateAction"
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
}
},
{
- "@id": "schema:instrument",
+ "@id": "schema:seatRow",
"@type": "rdf:Property",
- "rdfs:comment": "The object that helped the agent perform the action. e.g. John wrote a book with *a pen*.",
- "rdfs:label": "instrument",
+ "rdfs:comment": "The row location of the reserved seat (e.g., B).",
+ "rdfs:label": "seatRow",
"schema:domainIncludes": {
- "@id": "schema:Action"
+ "@id": "schema:Seat"
},
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:learningResourceType",
+ "@id": "schema:contentRating",
"@type": "rdf:Property",
- "rdfs:comment": "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.",
- "rdfs:label": "learningResourceType",
- "schema:domainIncludes": [
- {
- "@id": "schema:LearningResource"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
+ "rdfs:comment": "Official rating of a piece of content—for example, 'MPAA PG-13'.",
+ "rdfs:label": "contentRating",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
"schema:rangeIncludes": [
{
"@id": "schema:Text"
},
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:Rating"
}
]
},
{
- "@id": "schema:postalCodeRange",
+ "@id": "schema:possibleComplication",
"@type": "rdf:Property",
- "rdfs:comment": "A defined range of postal codes.",
- "rdfs:label": "postalCodeRange",
+ "rdfs:comment": "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.",
+ "rdfs:label": "possibleComplication",
"schema:domainIncludes": {
- "@id": "schema:DefinedRegion"
+ "@id": "schema:MedicalCondition"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:PostalCodeRangeSpecification"
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:MediaManipulationRatingEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": " Codes for use with the [[mediaAuthenticityCategory]] property, indicating the authenticity of a media object (in the context of how it was published or shared). In general these codes are not mutually exclusive, although some combinations (such as 'original' versus 'transformed', 'edited' and 'staged') would be contradictory if applied in the same [[MediaReview]]. Note that the application of these codes is with regard to a piece of media shared or published in a particular context.",
+ "rdfs:label": "MediaManipulationRatingEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:MedicalClinic",
- "@type": "rdfs:Class",
- "rdfs:comment": "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well.",
- "rdfs:label": "MedicalClinic",
- "rdfs:subClassOf": [
- {
- "@id": "schema:MedicalOrganization"
- },
- {
- "@id": "schema:MedicalBusiness"
- }
- ],
+ "@id": "schema:Nonprofit527",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit527: Non-profit type referring to political organizations.",
+ "rdfs:label": "Nonprofit527",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:issuedBy",
+ "@id": "schema:isrcCode",
"@type": "rdf:Property",
- "rdfs:comment": "The organization issuing the ticket or permit.",
- "rdfs:label": "issuedBy",
- "schema:domainIncludes": [
- {
- "@id": "schema:Ticket"
- },
- {
- "@id": "schema:Permit"
- }
- ],
+ "rdfs:comment": "The International Standard Recording Code for the recording.",
+ "rdfs:label": "isrcCode",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:passengerPriorityStatus",
- "@type": "rdf:Property",
- "rdfs:comment": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).",
- "rdfs:label": "passengerPriorityStatus",
- "schema:domainIncludes": {
- "@id": "schema:FlightReservation"
+ "@id": "schema:EducationalOccupationalProgram",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A program offered by an institution which determines the learning progress to achieve an outcome, usually a credential like a degree or certificate. This would define a discrete set of opportunities (e.g., job, courses) that together constitute a program with a clear start, end, set of requirements, and transition to a new occupational opportunity (e.g., a job), or sometimes a higher educational opportunity (e.g., an advanced degree).",
+ "rdfs:label": "EducationalOccupationalProgram",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:QualitativeValue"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ }
},
{
- "@id": "schema:dateReceived",
+ "@id": "schema:MenuItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A food or drink item listed in a menu or menu section.",
+ "rdfs:label": "MenuItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:childMaxAge",
"@type": "rdf:Property",
- "rdfs:comment": "The date/time the message was received if a single recipient exists.",
- "rdfs:label": "dateReceived",
+ "rdfs:comment": "Maximal age of the child.",
+ "rdfs:label": "childMaxAge",
"schema:domainIncludes": {
- "@id": "schema:Message"
+ "@id": "schema:ParentAudience"
},
"schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:Artery",
- "@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.bioontology.org/ontology/SNOMEDCT/51114001"
- },
- "rdfs:comment": "A type of blood vessel that specifically carries blood away from the heart.",
- "rdfs:label": "Artery",
- "rdfs:subClassOf": {
- "@id": "schema:Vessel"
+ "@id": "schema:healthPlanCopay",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The copay amount.",
+ "rdfs:label": "healthPlanCopay",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PriceSpecification"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:additionalProperty",
+ "@id": "schema:jobBenefits",
"@type": "rdf:Property",
- "rdfs:comment": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\\n\\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. https://schema.org/width, https://schema.org/color, https://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.\n",
- "rdfs:label": "additionalProperty",
- "schema:domainIncludes": [
- {
- "@id": "schema:MerchantReturnPolicy"
- },
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:QuantitativeValue"
- },
- {
- "@id": "schema:QualitativeValue"
- }
- ],
+ "rdfs:comment": "Description of benefits associated with the job.",
+ "rdfs:label": "jobBenefits",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
"schema:rangeIncludes": {
- "@id": "schema:PropertyValue"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:competitor",
+ "@id": "schema:branchCode",
"@type": "rdf:Property",
- "rdfs:comment": "A competitor in a sports event.",
- "rdfs:label": "competitor",
+ "rdfs:comment": "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\\n\\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.\n ",
+ "rdfs:label": "branchCode",
"schema:domainIncludes": {
- "@id": "schema:SportsEvent"
+ "@id": "schema:Place"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:SportsTeam"
- }
- ]
- },
- {
- "@id": "schema:InteractAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of interacting with another person or organization.",
- "rdfs:label": "InteractAction",
- "rdfs:subClassOf": {
- "@id": "schema:Action"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:diversityStaffingReport",
- "@type": "rdf:Property",
- "rdfs:comment": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.",
- "rdfs:label": "diversityStaffingReport",
- "rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
- },
- "schema:domainIncludes": [
- {
- "@id": "schema:NewsMediaOrganization"
- },
- {
- "@id": "schema:Organization"
- }
- ],
+ "@id": "schema:OnlineEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "OnlineEventAttendanceMode - an event that is primarily conducted online. ",
+ "rdfs:label": "OnlineEventAttendanceMode",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Article"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
- },
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
+ }
},
{
- "@id": "schema:minimumPaymentDue",
+ "@id": "schema:sampleType",
"@type": "rdf:Property",
- "rdfs:comment": "The minimum payment required at this time.",
- "rdfs:label": "minimumPaymentDue",
+ "rdfs:comment": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
+ "rdfs:label": "sampleType",
"schema:domainIncludes": {
- "@id": "schema:Invoice"
+ "@id": "schema:SoftwareSourceCode"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:MonetaryAmount"
- },
- {
- "@id": "schema:PriceSpecification"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:codeSampleType"
+ }
},
{
- "@id": "schema:Conversation",
- "@type": "rdfs:Class",
- "rdfs:comment": "One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties.",
- "rdfs:label": "Conversation",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:SizeSystemImperial",
+ "@type": "schema:SizeSystemEnumeration",
+ "rdfs:comment": "Imperial size system.",
+ "rdfs:label": "SizeSystemImperial",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:drugClass",
+ "@id": "schema:tocContinuation",
"@type": "rdf:Property",
- "rdfs:comment": "The class of drug this belongs to (e.g., statins).",
- "rdfs:label": "drugClass",
+ "rdfs:comment": "A [[HyperTocEntry]] can have a [[tocContinuation]] indicated, which is another [[HyperTocEntry]] that would be the default next item to play or render.",
+ "rdfs:label": "tocContinuation",
"schema:domainIncludes": {
- "@id": "schema:Drug"
+ "@id": "schema:HyperTocEntry"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:DrugClass"
+ "@id": "schema:HyperTocEntry"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
}
},
{
- "@id": "schema:InvestmentFund",
- "@type": "rdfs:Class",
- "rdfs:comment": "A company or fund that gathers capital from a number of investors to create a pool of money that is then re-invested into stocks, bonds and other assets.",
- "rdfs:label": "InvestmentFund",
- "rdfs:subClassOf": {
- "@id": "schema:InvestmentOrDeposit"
- },
+ "@id": "schema:Recruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Recruiting participants.",
+ "rdfs:label": "Recruiting",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
- }
- ]
+ "@id": "https://health-lifesci.schema.org"
+ }
},
{
- "@id": "schema:urlTemplate",
+ "@id": "schema:paymentUrl",
"@type": "rdf:Property",
- "rdfs:comment": "An url template (RFC6570) that will be used to construct the target of the execution of the action.",
- "rdfs:label": "urlTemplate",
+ "rdfs:comment": "The URL for sending a payment.",
+ "rdfs:label": "paymentUrl",
"schema:domainIncludes": {
- "@id": "schema:EntryPoint"
+ "@id": "schema:Order"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:AdvertiserContentArticle",
- "@type": "rdfs:Class",
- "rdfs:comment": "An [[Article]] that an external entity has paid to place or to produce to its specifications. Includes [advertorials](https://en.wikipedia.org/wiki/Advertorial), sponsored content, native advertising and other paid content.",
- "rdfs:label": "AdvertiserContentArticle",
- "rdfs:subClassOf": {
- "@id": "schema:Article"
- },
+ "@id": "schema:Nonprofit501c23",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c23: Non-profit type referring to Veterans Organizations.",
+ "rdfs:label": "Nonprofit501c23",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": [
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- },
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
},
{
- "@id": "schema:TransformedContent",
- "@type": "schema:MediaManipulationRatingEnumeration",
- "rdfs:comment": "Content coded 'transformed content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'transformed content': or all of the video has been manipulated to transform the footage itself. This category includes using tools like the Adobe Suite to change the speed of the video, add or remove visual elements or dub audio. Deepfakes are also a subset of transformation.\n\nFor an [[ImageObject]] to be transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[ImageObject]] with embedded text to be 'transformed content': Adding or deleting visual elements to give the image a different meaning with the intention to mislead.\n\nFor an [[AudioObject]] to be 'transformed content': Part or all of the audio has been manipulated to alter the words or sounds, or the audio has been synthetically generated, such as to create a sound-alike voice.\n",
- "rdfs:label": "TransformedContent",
+ "@id": "schema:applicantLocationRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The location(s) applicants can apply from. This is usually used for telecommuting jobs where the applicant does not need to be in a physical office. Note: This should not be used for citizenship or work visa requirements.",
+ "rdfs:label": "applicantLocationRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:AdministrativeArea"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2083"
}
},
{
- "@id": "schema:Answer",
- "@type": "rdfs:Class",
- "rdfs:comment": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.",
- "rdfs:label": "Answer",
- "rdfs:subClassOf": {
- "@id": "schema:Comment"
+ "@id": "schema:PotentialActionStatus",
+ "@type": "schema:ActionStatusType",
+ "rdfs:comment": "A description of an action that is supported.",
+ "rdfs:label": "PotentialActionStatus"
+ },
+ {
+ "@id": "schema:recordedAt",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event.",
+ "rdfs:label": "recordedAt",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"
+ "schema:inverseOf": {
+ "@id": "schema:recordedIn"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:MedicalEvidenceLevel",
- "@type": "rdfs:Class",
- "rdfs:comment": "Level of evidence for a medical guideline. Enumerated type.",
- "rdfs:label": "MedicalEvidenceLevel",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:processorRequirements",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Processor architecture required to run the application (e.g. IA64).",
+ "rdfs:label": "processorRequirements",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:returnShippingFeesAmount",
+ "@id": "schema:itemDefectReturnFees",
"@type": "rdf:Property",
- "rdfs:comment": "Amount of shipping costs for product returns (for any reason). Applicable when property [[returnFees]] equals [[ReturnShippingFees]].",
- "rdfs:label": "returnShippingFeesAmount",
+ "rdfs:comment": "The type of return fees for returns of defect products.",
+ "rdfs:label": "itemDefectReturnFees",
"schema:domainIncludes": {
"@id": "schema:MerchantReturnPolicy"
},
@@ -36467,3779 +36132,4715 @@
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:ReturnFeesEnumeration"
},
"schema:source": {
"@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:DietarySupplement",
- "@type": "rdfs:Class",
- "rdfs:comment": "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.",
- "rdfs:label": "DietarySupplement",
- "rdfs:subClassOf": {
- "@id": "schema:Substance"
+ "@id": "schema:publication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A publication event associated with the item.",
+ "rdfs:label": "publication",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:PublicationEvent"
+ }
+ },
+ {
+ "@id": "schema:physiologicalBenefits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Specific physiologic benefits associated to the plan.",
+ "rdfs:label": "physiologicalBenefits",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:startTime",
+ "@id": "schema:OneTimePayments",
+ "@type": "schema:GovernmentBenefitsType",
+ "rdfs:comment": "OneTimePayments: this is a benefit for one-time payments for individuals.",
+ "rdfs:label": "OneTimePayments",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ }
+ },
+ {
+ "@id": "schema:TravelAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of traveling from a fromLocation to a destination by a specified mode of transport, optionally with participants.",
+ "rdfs:label": "TravelAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:MoveAction"
+ }
+ },
+ {
+ "@id": "schema:sdLicense",
"@type": "rdf:Property",
- "rdfs:comment": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
- "rdfs:label": "startTime",
- "schema:domainIncludes": [
- {
- "@id": "schema:InteractionCounter"
- },
- {
- "@id": "schema:Action"
- },
- {
- "@id": "schema:Schedule"
- },
- {
- "@id": "schema:FoodEstablishmentReservation"
- },
- {
- "@id": "schema:MediaObject"
- }
- ],
+ "rdfs:comment": "A license document that applies to this structured data, typically indicated by URL.",
+ "rdfs:label": "sdLicense",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:Time"
+ "@id": "schema:CreativeWork"
},
{
- "@id": "schema:DateTime"
+ "@id": "schema:URL"
}
],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2493"
- }
- },
- {
- "@id": "schema:OrderPaymentDue",
- "@type": "schema:OrderStatus",
- "rdfs:comment": "OrderStatus representing that payment is due on an order.",
- "rdfs:label": "OrderPaymentDue"
- },
- {
- "@id": "schema:Friday",
- "@type": "schema:DayOfWeek",
- "rdfs:comment": "The day of the week between Thursday and Saturday.",
- "rdfs:label": "Friday",
- "schema:sameAs": {
- "@id": "http://www.wikidata.org/entity/Q130"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1886"
}
},
{
- "@id": "schema:Role",
+ "@id": "schema:Project",
"@type": "rdfs:Class",
- "rdfs:comment": "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).",
- "rdfs:label": "Role",
+ "rdfs:comment": "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim.\nUse properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. \n ",
+ "rdfs:label": "Project",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Organization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ }
+ ]
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryD",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryD",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:TechArticle",
+ "@id": "schema:MaximumDoseSchedule",
"@type": "rdfs:Class",
- "rdfs:comment": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.",
- "rdfs:label": "TechArticle",
+ "rdfs:comment": "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
+ "rdfs:label": "MaximumDoseSchedule",
"rdfs:subClassOf": {
- "@id": "schema:Article"
+ "@id": "schema:DoseSchedule"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Genetic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.",
- "rdfs:label": "Genetic",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:printPage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).",
+ "rdfs:label": "printPage",
+ "schema:domainIncludes": {
+ "@id": "schema:NewsArticle"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:Corporation",
+ "@id": "schema:Brand",
"@type": "rdfs:Class",
- "rdfs:comment": "Organization: A business corporation.",
- "rdfs:label": "Corporation",
+ "rdfs:comment": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.",
+ "rdfs:label": "Brand",
"rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "schema:Intangible"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:CommentPermission",
- "@type": "schema:DigitalDocumentPermissionType",
- "rdfs:comment": "Permission to add comments to the document.",
- "rdfs:label": "CommentPermission"
- },
- {
- "@id": "schema:GovernmentOrganization",
- "@type": "rdfs:Class",
- "rdfs:comment": "A governmental organization or agency.",
- "rdfs:label": "GovernmentOrganization",
- "rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "schema:maximumPhysicalAttendeeCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). ",
+ "rdfs:label": "maximumPhysicalAttendeeCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Event"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
}
},
{
- "@id": "schema:discussionUrl",
+ "@id": "schema:numberOfPartialBathrooms",
"@type": "rdf:Property",
- "rdfs:comment": "A link to the page containing the comments of the CreativeWork.",
- "rdfs:label": "discussionUrl",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "rdfs:comment": "Number of partial bathrooms - The total number of half and ¼ bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsPartial field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). ",
+ "rdfs:label": "numberOfPartialBathrooms",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:FloorPlan"
+ },
+ {
+ "@id": "schema:Accommodation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:URL"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:BroadcastEvent",
+ "@id": "schema:HowToSupply",
"@type": "rdfs:Class",
- "rdfs:comment": "An over the air or online broadcast event.",
- "rdfs:label": "BroadcastEvent",
+ "rdfs:comment": "A supply consumed when performing the instructions for how to achieve a result.",
+ "rdfs:label": "HowToSupply",
"rdfs:subClassOf": {
- "@id": "schema:PublicationEvent"
+ "@id": "schema:HowToItem"
}
},
{
- "@id": "schema:StagedContent",
- "@type": "schema:MediaManipulationRatingEnumeration",
- "rdfs:comment": "Content coded 'staged content' in a [[MediaReview]], considered in the context of how it was published or shared.\n\nFor a [[VideoObject]] to be 'staged content': A video that has been created using actors or similarly contrived.\n\nFor an [[ImageObject]] to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[ImageObject]] with embedded text to be 'staged content': An image that was created using actors or similarly contrived, such as a screenshot of a fake tweet.\n\nFor an [[AudioObject]] to be 'staged content': Audio that has been created using actors or similarly contrived.\n",
- "rdfs:label": "StagedContent",
+ "@id": "schema:ZoneBoardingPolicy",
+ "@type": "schema:BoardingPolicyType",
+ "rdfs:comment": "The airline boards by zones of the plane.",
+ "rdfs:label": "ZoneBoardingPolicy"
+ },
+ {
+ "@id": "schema:Nonprofit501f",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501f: Non-profit type referring to Cooperative Service Organizations.",
+ "rdfs:label": "Nonprofit501f",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:TollFree",
- "@type": "schema:ContactPointOption",
- "rdfs:comment": "The associated telephone number is toll free.",
- "rdfs:label": "TollFree"
- },
- {
- "@id": "schema:PaymentAutomaticallyApplied",
- "@type": "schema:PaymentStatusType",
- "rdfs:comment": "An automatic payment system is in place and will be used.",
- "rdfs:label": "PaymentAutomaticallyApplied"
- },
- {
- "@id": "schema:businessDays",
+ "@id": "schema:reservationStatus",
"@type": "rdf:Property",
- "rdfs:comment": "Days of the week when the merchant typically operates, indicated via opening hours markup.",
- "rdfs:label": "businessDays",
+ "rdfs:comment": "The current status of the reservation.",
+ "rdfs:label": "reservationStatus",
"schema:domainIncludes": {
- "@id": "schema:ShippingDeliveryTime"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Reservation"
},
"schema:rangeIncludes": {
- "@id": "schema:OpeningHoursSpecification"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "schema:ReservationStatusType"
}
},
{
- "@id": "schema:Service",
+ "@id": "schema:Audience",
"@type": "rdfs:Class",
- "rdfs:comment": "A service provided by an organization, e.g. delivery service, print services, etc.",
- "rdfs:label": "Service",
+ "rdfs:comment": "Intended audience for an item, i.e. the group for whom the item was created.",
+ "rdfs:label": "Audience",
"rdfs:subClassOf": {
"@id": "schema:Intangible"
}
},
{
- "@id": "schema:Canal",
+ "@id": "schema:ParcelDelivery",
"@type": "rdfs:Class",
- "rdfs:comment": "A canal, like the Panama Canal.",
- "rdfs:label": "Canal",
+ "rdfs:comment": "The delivery of a parcel either via the postal service or a commercial service.",
+ "rdfs:label": "ParcelDelivery",
"rdfs:subClassOf": {
- "@id": "schema:BodyOfWater"
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:provider",
+ "@id": "schema:runsTo",
"@type": "rdf:Property",
- "rdfs:comment": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.",
- "rdfs:label": "provider",
- "schema:domainIncludes": [
- {
- "@id": "schema:Reservation"
- },
- {
- "@id": "schema:CreativeWork"
- },
+ "rdfs:comment": "The vasculature the lymphatic structure runs, or efferents, to.",
+ "rdfs:label": "runsTo",
+ "schema:domainIncludes": {
+ "@id": "schema:LymphaticVessel"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Vessel"
+ }
+ },
+ {
+ "@id": "schema:SeekToAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "This is the [[Action]] of navigating to a specific [[startOffset]] timestamp within a [[VideoObject]], typically represented with a URL template structure.",
+ "rdfs:label": "SeekToAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:Action"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2722"
+ }
+ },
+ {
+ "@id": "schema:Balance",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity that is engaged to help maintain posture and balance.",
+ "rdfs:label": "Balance",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:subTrip",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip.",
+ "rdfs:label": "subTrip",
+ "schema:domainIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:partOfTrip"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Trip"
+ },
+ "schema:source": [
{
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
},
{
- "@id": "schema:ParcelDelivery"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
+ },
+ {
+ "@id": "schema:headline",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Headline of the article.",
+ "rdfs:label": "headline",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:faxNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The fax number.",
+ "rdfs:label": "faxNumber",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Service"
+ "@id": "schema:ContactPoint"
},
{
- "@id": "schema:Invoice"
+ "@id": "schema:Person"
},
{
- "@id": "schema:Trip"
+ "@id": "schema:Place"
}
],
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:InForce",
+ "@type": "schema:LegalForceStatus",
+ "rdfs:comment": "Indicates that a legislation is in force.",
+ "rdfs:label": "InForce",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:Organization"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:Person"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#InForce-inForce"
}
},
{
- "@id": "schema:availableChannel",
- "@type": "rdf:Property",
- "rdfs:comment": "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).",
- "rdfs:label": "availableChannel",
- "schema:domainIncludes": {
- "@id": "schema:Service"
- },
- "schema:rangeIncludes": {
- "@id": "schema:ServiceChannel"
+ "@id": "schema:AuthorizeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of granting permission to an object.",
+ "rdfs:label": "AuthorizeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
}
},
{
- "@id": "schema:populationType",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the populationType common to all members of a [[StatisticalPopulation]].",
- "rdfs:label": "populationType",
- "schema:domainIncludes": {
- "@id": "schema:StatisticalPopulation"
- },
+ "@id": "schema:InvoicePrice",
+ "@type": "schema:PriceTypeEnumeration",
+ "rdfs:comment": "Represents the invoice price of an offered product.",
+ "rdfs:label": "InvoicePrice",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Class"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2291"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
}
},
{
- "@id": "schema:exerciseCourse",
+ "@id": "schema:carrierRequirements",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of location. The course where this action was taken.",
- "rdfs:label": "exerciseCourse",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
+ "rdfs:comment": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).",
+ "rdfs:label": "carrierRequirements",
"schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
+ "@id": "schema:MobileApplication"
},
"schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:OpeningHoursSpecification",
- "@type": "rdfs:Class",
- "rdfs:comment": "A structured value providing information about the opening hours of a place or a certain service inside a place.\\n\\n\nThe place is __open__ if the [[opens]] property is specified, and __closed__ otherwise.\\n\\nIf the value for the [[closes]] property is less than the value for the [[opens]] property then the hour range is assumed to span over the next day.\n ",
- "rdfs:label": "OpeningHoursSpecification",
- "rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "schema:Neurologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that studies the nerves and nervous system and its respective disease states.",
+ "rdfs:label": "Neurologic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:LinkRole",
- "@type": "rdfs:Class",
- "rdfs:comment": "A Role that represents a Web link e.g. as expressed via the 'url' property. Its linkRelationship property can indicate URL-based and plain textual link types e.g. those in IANA link registry or others such as 'amphtml'. This structure provides a placeholder where details from HTML's link element can be represented outside of HTML, e.g. in JSON-LD feeds.",
- "rdfs:label": "LinkRole",
- "rdfs:subClassOf": {
- "@id": "schema:Role"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
+ "@id": "schema:CassetteFormat",
+ "@type": "schema:MusicReleaseFormatType",
+ "rdfs:comment": "CassetteFormat.",
+ "rdfs:label": "CassetteFormat",
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1045"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:PlaceboControlledTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "A placebo-controlled trial design.",
- "rdfs:label": "PlaceboControlledTrial",
+ "@id": "schema:TraditionalChinese",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.",
+ "rdfs:label": "TraditionalChinese",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Appearance",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Appearance assessment with clinical examination.",
- "rdfs:label": "Appearance",
+ "@id": "schema:Homeopathic",
+ "@type": "schema:MedicineSystem",
+ "rdfs:comment": "A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.",
+ "rdfs:label": "Homeopathic",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:EUEnergyEfficiencyCategoryG",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class G as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryG",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:trainNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for the train.",
+ "rdfs:label": "trainNumber",
+ "schema:domainIncludes": {
+ "@id": "schema:TrainTrip"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:recognizedBy",
+ "@id": "schema:membershipPointsEarned",
"@type": "rdf:Property",
- "rdfs:comment": "An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation.",
- "rdfs:label": "recognizedBy",
+ "rdfs:comment": "The number of membership points earned by the member. If necessary, the unitText can be used to express the units the points are issued in. (E.g. stars, miles, etc.)",
+ "rdfs:label": "membershipPointsEarned",
"schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalCredential"
+ "@id": "schema:ProgramMembership"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Organization"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2085"
}
},
{
- "@id": "schema:loser",
+ "@id": "schema:query",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The loser of the action.",
- "rdfs:label": "loser",
+ "rdfs:comment": "A sub property of instrument. The query used on this action.",
+ "rdfs:label": "query",
"rdfs:subPropertyOf": {
- "@id": "schema:participant"
+ "@id": "schema:instrument"
},
"schema:domainIncludes": {
- "@id": "schema:WinAction"
+ "@id": "schema:SearchAction"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
- }
- },
- {
- "@id": "schema:InstallAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of installing an application.",
- "rdfs:label": "InstallAction",
- "rdfs:subClassOf": {
- "@id": "schema:ConsumeAction"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:relatedTherapy",
+ "@id": "schema:merchantReturnDays",
"@type": "rdf:Property",
- "rdfs:comment": "A medical therapy related to this anatomy.",
- "rdfs:label": "relatedTherapy",
+ "rdfs:comment": "Specifies either a fixed return date or the number of days (from the delivery date) that a product can be returned. Used when the [[returnPolicyCategory]] property is specified as [[MerchantReturnFiniteReturnWindow]].",
+ "rdfs:label": "merchantReturnDays",
"schema:domainIncludes": [
{
- "@id": "schema:AnatomicalStructure"
- },
- {
- "@id": "schema:SuperficialAnatomy"
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
},
{
- "@id": "schema:AnatomicalSystem"
+ "@id": "schema:MerchantReturnPolicy"
}
],
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalTherapy"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Integer"
+ },
+ {
+ "@id": "schema:Date"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2288"
}
},
{
- "@id": "schema:BuyAction",
+ "@id": "schema:TouristAttraction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.",
- "rdfs:label": "BuyAction",
+ "rdfs:comment": "A tourist attraction. In principle any Thing can be a [[TouristAttraction]], from a [[Mountain]] and [[LandmarksOrHistoricalBuildings]] to a [[LocalBusiness]]. This Type can be used on its own to describe a general [[TouristAttraction]], or be used as an [[additionalType]] to add tourist attraction properties to any other type. (See examples below)",
+ "rdfs:label": "TouristAttraction",
"rdfs:subClassOf": {
- "@id": "schema:TradeAction"
- }
+ "@id": "schema:Place"
+ },
+ "schema:source": [
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ }
+ ]
},
{
- "@id": "schema:DriveWheelConfigurationValue",
+ "@id": "schema:Energy",
"@type": "rdfs:Class",
- "rdfs:comment": "A value indicating which roadwheels will receive torque.",
- "rdfs:label": "DriveWheelConfigurationValue",
+ "rdfs:comment": "Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.",
+ "rdfs:label": "Energy",
"rdfs:subClassOf": {
- "@id": "schema:QualitativeValue"
+ "@id": "schema:Quantity"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c19",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c19: Non-profit type referring to Post or Organization of Past or Present Members of the Armed Forces.",
+ "rdfs:label": "Nonprofit501c19",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:deliveryMethod",
+ "@id": "schema:director",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of instrument. The method of delivery.",
- "rdfs:label": "deliveryMethod",
- "rdfs:subPropertyOf": {
- "@id": "schema:instrument"
- },
+ "rdfs:comment": "A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "director",
"schema:domainIncludes": [
{
- "@id": "schema:TrackAction"
+ "@id": "schema:TVSeries"
},
{
- "@id": "schema:ReceiveAction"
+ "@id": "schema:Clip"
},
{
- "@id": "schema:SendAction"
+ "@id": "schema:Event"
},
{
- "@id": "schema:OrderAction"
+ "@id": "schema:CreativeWorkSeason"
+ },
+ {
+ "@id": "schema:Movie"
+ },
+ {
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:RadioSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoObject"
}
],
"schema:rangeIncludes": {
- "@id": "schema:DeliveryMethod"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:OceanBodyOfWater",
+ "@id": "schema:GovernmentBuilding",
"@type": "rdfs:Class",
- "rdfs:comment": "An ocean (for example, the Pacific).",
- "rdfs:label": "OceanBodyOfWater",
+ "rdfs:comment": "A government building.",
+ "rdfs:label": "GovernmentBuilding",
"rdfs:subClassOf": {
- "@id": "schema:BodyOfWater"
+ "@id": "schema:CivicStructure"
}
},
{
- "@id": "schema:Bone",
+ "@id": "schema:OfferForPurchase",
"@type": "rdfs:Class",
- "rdfs:comment": "Rigid connective tissue that comprises up the skeletal structure of the human body.",
- "rdfs:label": "Bone",
+ "rdfs:comment": "An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose\n [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
+ "rdfs:label": "OfferForPurchase",
"rdfs:subClassOf": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:Offer"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
}
},
{
- "@id": "schema:SizeGroupEnumeration",
+ "@id": "schema:EntryPoint",
"@type": "rdfs:Class",
- "rdfs:comment": "Enumerates common size groups for various product categories.",
- "rdfs:label": "SizeGroupEnumeration",
+ "rdfs:comment": "An entry point, within some Web-based protocol.",
+ "rdfs:label": "EntryPoint",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Intangible"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
}
},
{
- "@id": "schema:paymentMethod",
- "@type": "rdf:Property",
- "rdfs:comment": "The name of the credit card or other method of payment for the order.",
- "rdfs:label": "paymentMethod",
- "schema:domainIncludes": [
+ "@id": "schema:OfficialLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "All the documents published by an official publisher should have at least the legal value level \"OfficialLegalValue\". This indicates that the document was published by an organisation with the public task of making it available (e.g. a consolidated version of an EU directive published by the EU Office of Publications).",
+ "rdfs:label": "OfficialLegalValue",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:Invoice"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:Order"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:PaymentMethod"
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-official"
}
},
{
- "@id": "schema:ViewAction",
+ "@id": "schema:HowItWorksHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content that discusses and explains how a particular health-related topic works, e.g. in terms of mechanisms and underlying science.",
+ "rdfs:label": "HowItWorksHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:Table",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of consuming static visual content.",
- "rdfs:label": "ViewAction",
+ "rdfs:comment": "A table on a Web page.",
+ "rdfs:label": "Table",
"rdfs:subClassOf": {
- "@id": "schema:ConsumeAction"
+ "@id": "schema:WebPageElement"
}
},
{
- "@id": "schema:homeLocation",
+ "@id": "schema:isAcceptingNewPatients",
"@type": "rdf:Property",
- "rdfs:comment": "A contact location for a person's residence.",
- "rdfs:label": "homeLocation",
- "rdfs:subPropertyOf": {
- "@id": "schema:location"
- },
+ "rdfs:comment": "Whether the provider is accepting new patients.",
+ "rdfs:label": "isAcceptingNewPatients",
"schema:domainIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:MedicalOrganization"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Place"
- },
- {
- "@id": "schema:ContactPoint"
- }
- ]
- },
- {
- "@id": "schema:acceptedAnswer",
- "@type": "rdf:Property",
- "rdfs:comment": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.",
- "rdfs:label": "acceptedAnswer",
- "rdfs:subPropertyOf": {
- "@id": "schema:suggestedAnswer"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:domainIncludes": {
- "@id": "schema:Question"
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:ItemList"
- },
- {
- "@id": "schema:Answer"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
},
{
- "@id": "schema:PercutaneousProcedure",
- "@type": "schema:MedicalProcedureType",
- "rdfs:comment": "A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.",
- "rdfs:label": "PercutaneousProcedure",
+ "@id": "schema:EnrollingByInvitation",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Enrolling participants by invitation only.",
+ "rdfs:label": "EnrollingByInvitation",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:signDetected",
- "@type": "rdf:Property",
- "rdfs:comment": "A sign detected by the test.",
- "rdfs:label": "signDetected",
- "schema:domainIncludes": {
- "@id": "schema:MedicalTest"
- },
+ "@id": "schema:MayTreatHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Related topics may be treated by a Topic.",
+ "rdfs:label": "MayTreatHealthAspect",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalSign"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:bookingTime",
+ "@id": "schema:occupationalCategory",
"@type": "rdf:Property",
- "rdfs:comment": "The date and time the reservation was booked.",
- "rdfs:label": "bookingTime",
- "schema:domainIncludes": {
- "@id": "schema:Reservation"
- },
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
- }
+ "rdfs:comment": "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.",
+ "rdfs:label": "occupationalCategory",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:JobPosting"
+ },
+ {
+ "@id": "schema:WorkBasedProgram"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:Occupation"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:CategoryCode"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
+ }
+ ]
},
{
- "@id": "schema:publicTransportClosuresInfo",
+ "@id": "schema:addOn",
"@type": "rdf:Property",
- "rdfs:comment": "Information about public transport closures.",
- "rdfs:label": "publicTransportClosuresInfo",
+ "rdfs:comment": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).",
+ "rdfs:label": "addOn",
"schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
+ "@id": "schema:Offer"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Offer"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:identifier",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:identifier"
+ },
+ "rdfs:comment": "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n ",
+ "rdfs:label": "identifier",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
},
"schema:rangeIncludes": [
{
- "@id": "schema:WebContent"
+ "@id": "schema:PropertyValue"
},
{
"@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:OrderReturned",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing that an order has been returned.",
+ "rdfs:label": "OrderReturned"
+ },
+ {
+ "@id": "schema:DefinedTermSet",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A set of defined terms, for example a set of categories or a classification scheme, a glossary, dictionary or enumeration.",
+ "rdfs:label": "DefinedTermSet",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:DigitalDocumentPermission",
+ "@id": "schema:usesDevice",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Device used to perform the test.",
+ "rdfs:label": "usesDevice",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalTest"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalDevice"
+ }
+ },
+ {
+ "@id": "schema:FoodEvent",
"@type": "rdfs:Class",
- "rdfs:comment": "A permission for a particular person or group to access a particular file.",
- "rdfs:label": "DigitalDocumentPermission",
+ "rdfs:comment": "Event type: Food event.",
+ "rdfs:label": "FoodEvent",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:WearableSizeGroupTall",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Tall\" for wearables.",
- "rdfs:label": "WearableSizeGroupTall",
+ "@id": "schema:CrossSectional",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.",
+ "rdfs:label": "CrossSectional",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:ClaimReview",
+ "@id": "schema:OrganizeAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).",
- "rdfs:label": "ClaimReview",
+ "rdfs:comment": "The act of manipulating/administering/supervising/controlling one or more objects.",
+ "rdfs:label": "OrganizeAction",
"rdfs:subClassOf": {
- "@id": "schema:Review"
+ "@id": "schema:Action"
+ }
+ },
+ {
+ "@id": "schema:inAlbum",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The album to which this recording belongs.",
+ "rdfs:label": "inAlbum",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicRecording"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1061"
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbum"
}
},
{
- "@id": "schema:PerformanceRole",
+ "@id": "schema:targetDescription",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The description of a node in an established educational framework.",
+ "rdfs:label": "targetDescription",
+ "schema:domainIncludes": {
+ "@id": "schema:AlignmentObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:AutoDealer",
"@type": "rdfs:Class",
- "rdfs:comment": "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.",
- "rdfs:label": "PerformanceRole",
+ "rdfs:comment": "An car dealership.",
+ "rdfs:label": "AutoDealer",
"rdfs:subClassOf": {
- "@id": "schema:Role"
+ "@id": "schema:AutomotiveBusiness"
}
},
{
- "@id": "schema:InvoicePrice",
- "@type": "schema:PriceTypeEnumeration",
- "rdfs:comment": "Represents the invoice price of an offered product.",
- "rdfs:label": "InvoicePrice",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:InsuranceAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An Insurance agency.",
+ "rdfs:label": "InsuranceAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialService"
+ }
+ },
+ {
+ "@id": "schema:MusicRecording",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A music recording (track), usually a single song.",
+ "rdfs:label": "MusicRecording",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:HalalDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet conforming to Islamic dietary practices.",
+ "rdfs:label": "HalalDiet"
+ },
+ {
+ "@id": "schema:permissionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The type of permission granted the person, organization, or audience.",
+ "rdfs:label": "permissionType",
+ "schema:domainIncludes": {
+ "@id": "schema:DigitalDocumentPermission"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DigitalDocumentPermissionType"
+ }
+ },
+ {
+ "@id": "schema:pagination",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pages"
+ },
+ "rdfs:comment": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".",
+ "rdfs:label": "pagination",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PublicationVolume"
+ },
+ {
+ "@id": "schema:PublicationIssue"
+ },
+ {
+ "@id": "schema:Chapter"
+ },
+ {
+ "@id": "schema:Article"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:SRP",
- "@type": "schema:PriceTypeEnumeration",
- "rdfs:comment": "Represents the suggested retail price (\"SRP\") of an offered product.",
- "rdfs:label": "SRP",
+ "@id": "schema:Time",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see [XML schema for details](http://www.w3.org/TR/xmlschema-2/#time)).",
+ "rdfs:label": "Time"
+ },
+ {
+ "@id": "schema:materialExtent",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "The quantity of the materials being described or an expression of the physical space they occupy."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "materialExtent"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:QuantitativeValue"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1759"
}
},
{
- "@id": "schema:lyricist",
+ "@id": "schema:mathExpression",
"@type": "rdf:Property",
- "rdfs:comment": "The person who wrote the words.",
- "rdfs:label": "lyricist",
+ "rdfs:comment": "A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.",
+ "rdfs:label": "mathExpression",
"schema:domainIncludes": {
- "@id": "schema:MusicComposition"
+ "@id": "schema:MathSolver"
},
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:SolveMathAction"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2740"
}
},
{
- "@id": "schema:UnRegisterAction",
+ "@id": "schema:WearableSizeGroupBig",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Big\" for wearables.",
+ "rdfs:label": "WearableSizeGroupBig",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:GatedResidenceCommunity",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of un-registering from a service.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: antonym of UnRegisterAction.\\n* [[LeaveAction]]: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people.",
- "rdfs:label": "UnRegisterAction",
+ "rdfs:comment": "Residence type: Gated community.",
+ "rdfs:label": "GatedResidenceCommunity",
"rdfs:subClassOf": {
- "@id": "schema:InteractAction"
+ "@id": "schema:Residence"
}
},
{
- "@id": "schema:InForce",
- "@type": "schema:LegalForceStatus",
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#InForce-inForce"
+ "@id": "schema:Diagnostic",
+ "@type": "schema:MedicalDevicePurpose",
+ "rdfs:comment": "A medical device used for diagnostic purposes.",
+ "rdfs:label": "Diagnostic",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Courthouse",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A courthouse.",
+ "rdfs:label": "Courthouse",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:ComedyClub",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A comedy club.",
+ "rdfs:label": "ComedyClub",
+ "rdfs:subClassOf": {
+ "@id": "schema:EntertainmentBusiness"
+ }
+ },
+ {
+ "@id": "schema:AerobicActivity",
+ "@type": "schema:PhysicalActivityCategory",
+ "rdfs:comment": "Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.",
+ "rdfs:label": "AerobicActivity",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:SpreadsheetDigitalDocument",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A spreadsheet file.",
+ "rdfs:label": "SpreadsheetDigitalDocument",
+ "rdfs:subClassOf": {
+ "@id": "schema:DigitalDocument"
+ }
+ },
+ {
+ "@id": "schema:Locksmith",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A locksmith.",
+ "rdfs:label": "Locksmith",
+ "rdfs:subClassOf": {
+ "@id": "schema:HomeAndConstructionBusiness"
+ }
+ },
+ {
+ "@id": "schema:MediaObject",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset, i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 [[AudioObject]]s).",
+ "rdfs:label": "MediaObject",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ }
+ },
+ {
+ "@id": "schema:True",
+ "@type": "schema:Boolean",
+ "rdfs:comment": "The boolean value true.",
+ "rdfs:label": "True"
+ },
+ {
+ "@id": "schema:albumProductionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Classification of the album by its type of content: soundtrack, live album, studio album, etc.",
+ "rdfs:label": "albumProductionType",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicAlbum"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicAlbumProductionType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:schoolClosuresInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about school closures.",
+ "rdfs:label": "schoolClosuresInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
},
- "rdfs:comment": "Indicates that a legislation is in force.",
- "rdfs:label": "InForce",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:WebContent"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:URL"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
},
{
- "@id": "schema:FDAnotEvaluated",
- "@type": "schema:DrugPregnancyCategory",
- "rdfs:comment": "A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.",
- "rdfs:label": "FDAnotEvaluated",
+ "@id": "schema:numberOfForwardGears",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The total number of forward gears available for the transmission system of the vehicle.\\n\\nTypical unit code(s): C62",
+ "rdfs:label": "numberOfForwardGears",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Number"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
+ },
+ {
+ "@id": "schema:DietarySupplement",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.",
+ "rdfs:label": "DietarySupplement",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Substance"
+ }
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:amountOfThisGood",
+ "@id": "schema:departureStation",
"@type": "rdf:Property",
- "rdfs:comment": "The quantity of the goods included in the offer.",
- "rdfs:label": "amountOfThisGood",
+ "rdfs:comment": "The station from which the train departs.",
+ "rdfs:label": "departureStation",
"schema:domainIncludes": {
- "@id": "schema:TypeAndQuantityNode"
+ "@id": "schema:TrainTrip"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:TrainStation"
}
},
{
- "@id": "schema:providesBroadcastService",
+ "@id": "schema:ticketedSeat",
"@type": "rdf:Property",
- "rdfs:comment": "The BroadcastService offered on this channel.",
- "rdfs:label": "providesBroadcastService",
+ "rdfs:comment": "The seat associated with the ticket.",
+ "rdfs:label": "ticketedSeat",
"schema:domainIncludes": {
- "@id": "schema:BroadcastChannel"
- },
- "schema:inverseOf": {
- "@id": "schema:hasBroadcastChannel"
+ "@id": "schema:Ticket"
},
"schema:rangeIncludes": {
- "@id": "schema:BroadcastService"
+ "@id": "schema:Seat"
}
},
{
- "@id": "schema:frequency",
+ "@id": "schema:WeaponConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "The item is intended to induce bodily harm, for example guns, mace, combat knives, brass knuckles, nail or other bombs, and spears.",
+ "rdfs:label": "WeaponConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
+ }
+ },
+ {
+ "@id": "schema:menuAddOn",
"@type": "rdf:Property",
- "rdfs:comment": "How often the dose is taken, e.g. 'daily'.",
- "rdfs:label": "frequency",
+ "rdfs:comment": "Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.",
+ "rdfs:label": "menuAddOn",
"schema:domainIncludes": {
- "@id": "schema:DoseSchedule"
+ "@id": "schema:MenuItem"
},
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:MenuItem"
+ },
+ {
+ "@id": "schema:MenuSection"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1541"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemUS",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "United States size system for wearables.",
+ "rdfs:label": "WearableSizeSystemUS",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:Withdrawn",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Withdrawn.",
+ "rdfs:label": "Withdrawn",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:recipeIngredient",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
+ "rdfs:label": "recipeIngredient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:supply"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Recipe"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:FDAcategoryB",
- "@type": "schema:DrugPregnancyCategory",
- "rdfs:comment": "A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.",
- "rdfs:label": "FDAcategoryB",
+ "@id": "schema:OwnershipInfo",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A structured value providing information about when a certain organization or person owned a certain product.",
+ "rdfs:label": "OwnershipInfo",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:fiberContent",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of grams of fiber.",
+ "rdfs:label": "fiberContent",
+ "schema:domainIncludes": {
+ "@id": "schema:NutritionInformation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Mass"
+ }
+ },
+ {
+ "@id": "schema:Completed",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Completed.",
+ "rdfs:label": "Completed",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:biomechnicalClass",
+ "@id": "schema:healthPlanDrugOption",
"@type": "rdf:Property",
- "rdfs:comment": "The biomechanical properties of the bone.",
- "rdfs:label": "biomechnicalClass",
+ "rdfs:comment": "TODO.",
+ "rdfs:label": "healthPlanDrugOption",
"schema:domainIncludes": {
- "@id": "schema:Joint"
+ "@id": "schema:HealthInsurancePlan"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:HealthTopicContent",
+ "@id": "schema:BioChemEntity",
"@type": "rdfs:Class",
- "rdfs:comment": "[[HealthTopicContent]] is [[WebContent]] that is about some aspect of a health topic, e.g. a condition, its symptoms or treatments. Such content may be comprised of several parts or sections and use different types of media. Multiple instances of [[WebContent]] (and hence [[HealthTopicContent]]) can be related using [[hasPart]] / [[isPartOf]] where there is some kind of content hierarchy, and their content described with [[about]] and [[mentions]] e.g. building upon the existing [[MedicalCondition]] vocabulary.\n ",
- "rdfs:label": "HealthTopicContent",
+ "dcterms:source": {
+ "@id": "http://bioschemas.org"
+ },
+ "rdfs:comment": "Any biological, chemical, or biochemical thing. For example: a protein; a gene; a chemical; a synthetic chemical.",
+ "rdfs:label": "BioChemEntity",
"rdfs:subClassOf": {
- "@id": "schema:WebContent"
+ "@id": "schema:Thing"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:OrderAction",
+ "@id": "schema:NoteDigitalDocument",
"@type": "rdfs:Class",
- "rdfs:comment": "An agent orders an object/product/service to be delivered/sent.",
- "rdfs:label": "OrderAction",
+ "rdfs:comment": "A file containing a note, primarily for the author.",
+ "rdfs:label": "NoteDigitalDocument",
"rdfs:subClassOf": {
- "@id": "schema:TradeAction"
+ "@id": "schema:DigitalDocument"
}
},
{
- "@id": "schema:Nonprofit501d",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501d: Non-profit type referring to Religious and Apostolic Associations.",
- "rdfs:label": "Nonprofit501d",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "schema:Float",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Data type: Floating number.",
+ "rdfs:label": "Float",
+ "rdfs:subClassOf": {
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:instructor",
+ "@id": "schema:industry",
"@type": "rdf:Property",
- "rdfs:comment": "A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].",
- "rdfs:label": "instructor",
+ "rdfs:comment": "The industry associated with the job position.",
+ "rdfs:label": "industry",
"schema:domainIncludes": {
- "@id": "schema:CourseInstance"
+ "@id": "schema:JobPosting"
},
- "schema:rangeIncludes": {
- "@id": "schema:Person"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DefinedTerm"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
+ },
+ {
+ "@id": "schema:inLanguage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].",
+ "rdfs:label": "inLanguage",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:PronounceableText"
+ },
+ {
+ "@id": "schema:LinkRole"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:WriteAction"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:BroadcastService"
+ },
+ {
+ "@id": "schema:CommunicateAction"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:Language"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2382"
}
},
{
- "@id": "schema:WearableSizeGroupWomens",
- "@type": "schema:WearableSizeGroupEnumeration",
- "rdfs:comment": "Size group \"Womens\" for wearables.",
- "rdfs:label": "WearableSizeGroupWomens",
+ "@id": "schema:Consortium",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A Consortium is a membership [[Organization]] whose members are typically Organizations.",
+ "rdfs:label": "Consortium",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1559"
}
},
{
- "@id": "schema:Infectious",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "Something in medical science that pertains to infectious diseases i.e caused by bacterial, viral, fungal or parasitic infections.",
- "rdfs:label": "Infectious",
+ "@id": "schema:PrescriptionOnly",
+ "@type": "schema:DrugPrescriptionStatus",
+ "rdfs:comment": "Available by prescription only.",
+ "rdfs:label": "PrescriptionOnly",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Class",
+ "@id": "schema:GovernmentOrganization",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "rdfs:Class"
- },
- "rdfs:comment": "A class, also often called a 'Type'; equivalent to rdfs:Class.",
- "rdfs:label": "Class",
+ "rdfs:comment": "A governmental organization or agency.",
+ "rdfs:label": "GovernmentOrganization",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
- },
- "schema:isPartOf": {
- "@id": "https://meta.schema.org"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:EUEnergyEfficiencyCategoryD",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class D as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryD",
+ "@id": "schema:employmentUnit",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.",
+ "rdfs:label": "employmentUnit",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Organization"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2296"
}
},
{
- "@id": "schema:Integer",
+ "@id": "schema:interactingDrug",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.",
+ "rdfs:label": "interactingDrug",
+ "schema:domainIncludes": {
+ "@id": "schema:Drug"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Drug"
+ }
+ },
+ {
+ "@id": "schema:BroadcastService",
"@type": "rdfs:Class",
- "rdfs:comment": "Data type: Integer.",
- "rdfs:label": "Integer",
+ "rdfs:comment": "A delivery service through which content is provided via broadcast over the air or online.",
+ "rdfs:label": "BroadcastService",
"rdfs:subClassOf": {
- "@id": "schema:Number"
+ "@id": "schema:Service"
}
},
{
- "@id": "schema:occupationalCategory",
+ "@id": "schema:CurrencyConversionService",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service to convert funds from one currency to another currency.",
+ "rdfs:label": "CurrencyConversionService",
+ "rdfs:subClassOf": {
+ "@id": "schema:FinancialProduct"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ },
+ {
+ "@id": "schema:startDate",
"@type": "rdf:Property",
- "rdfs:comment": "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.",
- "rdfs:label": "occupationalCategory",
+ "rdfs:comment": "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "startDate",
"schema:domainIncludes": [
{
- "@id": "schema:JobPosting"
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
},
{
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:CreativeWorkSeries"
},
{
- "@id": "schema:Occupation"
+ "@id": "schema:DatedMoneySpecification"
},
{
- "@id": "schema:WorkBasedProgram"
+ "@id": "schema:Role"
+ },
+ {
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ },
+ {
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ {
+ "@id": "schema:CreativeWorkSeason"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:CategoryCode"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Date"
}
],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
- },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2486"
+ }
+ },
+ {
+ "@id": "schema:UnincorporatedAssociationCharity",
+ "@type": "schema:UKNonprofitType",
+ "rdfs:comment": "UnincorporatedAssociationCharity: Non-profit type referring to a charitable company that is not incorporated (UK).",
+ "rdfs:label": "UnincorporatedAssociationCharity",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeGroupGirls",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Girls\" for wearables.",
+ "rdfs:label": "WearableSizeGroupGirls",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
+ },
+ {
+ "@id": "schema:AssignAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of allocating an action/event/task to some destination (someone or something).",
+ "rdfs:label": "AssignAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:AllocateAction"
+ }
+ },
+ {
+ "@id": "schema:Boolean",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "Boolean: True or False.",
+ "rdfs:label": "Boolean"
+ },
+ {
+ "@id": "schema:DigitalDocumentPermission",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A permission for a particular person or group to access a particular file.",
+ "rdfs:label": "DigitalDocumentPermission",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:hasMenu",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
+ "rdfs:label": "hasMenu",
+ "schema:domainIncludes": {
+ "@id": "schema:FoodEstablishment"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ "@id": "schema:URL"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/2192"
+ "@id": "schema:Text"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ "@id": "schema:Menu"
}
]
},
{
- "@id": "schema:isVariantOf",
+ "@id": "schema:BookmarkAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An agent bookmarks/flags/labels/tags/marks an object.",
+ "rdfs:label": "BookmarkAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:OrganizeAction"
+ }
+ },
+ {
+ "@id": "schema:dropoffTime",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.",
- "rdfs:label": "isVariantOf",
- "schema:domainIncludes": [
- {
- "@id": "schema:ProductModel"
- },
- {
- "@id": "schema:Product"
- }
- ],
- "schema:inverseOf": {
- "@id": "schema:hasVariant"
+ "rdfs:comment": "When a rental car can be dropped off.",
+ "rdfs:label": "dropoffTime",
+ "schema:domainIncludes": {
+ "@id": "schema:RentalCarReservation"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:BedDetails",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also [[BedType]] (under development).",
+ "rdfs:label": "BedDetails",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:ReturnLabelCustomerResponsibility",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Indicated that creating a return label is the responsibility of the customer.",
+ "rdfs:label": "ReturnLabelCustomerResponsibility",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:artEdition",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\").",
+ "rdfs:label": "artEdition",
+ "schema:domainIncludes": {
+ "@id": "schema:VisualArtwork"
},
"schema:rangeIncludes": [
{
- "@id": "schema:ProductModel"
+ "@id": "schema:Integer"
},
{
- "@id": "schema:ProductGroup"
+ "@id": "schema:Text"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ ]
+ },
+ {
+ "@id": "schema:EventPostponed",
+ "@type": "schema:EventStatusType",
+ "rdfs:comment": "The event has been postponed and no new date has been set. The event's previousStartDate should be set.",
+ "rdfs:label": "EventPostponed"
+ },
+ {
+ "@id": "schema:publicAccess",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value",
+ "rdfs:label": "publicAccess",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:OneTimePayments",
- "@type": "schema:GovernmentBenefitsType",
- "rdfs:comment": "OneTimePayments: this is a benefit for one-time payments for individuals.",
- "rdfs:label": "OneTimePayments",
+ "@id": "schema:Psychiatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.",
+ "rdfs:label": "Psychiatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:domiciledMortgage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether borrower is a resident of the jurisdiction where the property is located.",
+ "rdfs:label": "domiciledMortgage",
+ "schema:domainIncludes": {
+ "@id": "schema:MortgageLoan"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
- }
- },
- {
- "@id": "schema:Float",
- "@type": "rdfs:Class",
- "rdfs:comment": "Data type: Floating number.",
- "rdfs:label": "Float",
- "rdfs:subClassOf": {
- "@id": "schema:Number"
- }
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
},
{
- "@id": "schema:drug",
+ "@id": "schema:geoTouches",
"@type": "rdf:Property",
- "rdfs:comment": "Specifying a drug or medicine used in a medication procedure.",
- "rdfs:label": "drug",
+ "rdfs:comment": "Represents spatial relations in which two geometries (or the places they represent) touch: \"they have at least one boundary point in common, but no interior points.\" (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)",
+ "rdfs:label": "geoTouches",
"schema:domainIncludes": [
{
- "@id": "schema:MedicalCondition"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:TherapeuticProcedure"
- },
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
{
- "@id": "schema:Patient"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:DrugClass"
+ "@id": "schema:Place"
}
- ],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Drug"
- }
+ ]
},
{
- "@id": "schema:publishedOn",
+ "@id": "schema:box",
"@type": "rdf:Property",
- "rdfs:comment": "A broadcast service associated with the publication event.",
- "rdfs:label": "publishedOn",
+ "rdfs:comment": "A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.",
+ "rdfs:label": "box",
"schema:domainIncludes": {
- "@id": "schema:PublicationEvent"
+ "@id": "schema:GeoShape"
},
"schema:rangeIncludes": {
- "@id": "schema:BroadcastService"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:callSign",
+ "@id": "schema:lender",
"@type": "rdf:Property",
- "rdfs:comment": "A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.",
- "rdfs:label": "callSign",
+ "rdfs:comment": "A sub property of participant. The person that lends the object being borrowed.",
+ "rdfs:label": "lender",
"rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "@id": "schema:participant"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:BroadcastService"
- },
+ "schema:domainIncludes": {
+ "@id": "schema:BorrowAction"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Vehicle"
+ "@id": "schema:Organization"
},
{
"@id": "schema:Person"
}
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ ]
+ },
+ {
+ "@id": "schema:Muscle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.",
+ "rdfs:label": "Muscle",
+ "rdfs:subClassOf": {
+ "@id": "schema:AnatomicalStructure"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Ultrasound",
+ "@type": "schema:MedicalImagingTechnique",
+ "rdfs:comment": "Ultrasound imaging.",
+ "rdfs:label": "Ultrasound",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Action",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).",
+ "rdfs:label": "Action",
+ "rdfs:subClassOf": {
+ "@id": "schema:Thing"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
}
},
{
- "@id": "schema:QualitativeValue",
+ "@id": "schema:BroadcastFrequencySpecification",
"@type": "rdfs:Class",
- "rdfs:comment": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.",
- "rdfs:label": "QualitativeValue",
+ "rdfs:comment": "The frequency in MHz and the modulation used for a particular BroadcastService.",
+ "rdfs:label": "BroadcastFrequencySpecification",
"rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:Intangible"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
}
},
{
- "@id": "schema:musicCompositionForm",
+ "@id": "schema:relatedStructure",
"@type": "rdf:Property",
- "rdfs:comment": "The type of composition (e.g. overture, sonata, symphony, etc.).",
- "rdfs:label": "musicCompositionForm",
+ "rdfs:comment": "Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.",
+ "rdfs:label": "relatedStructure",
"schema:domainIncludes": {
- "@id": "schema:MusicComposition"
+ "@id": "schema:AnatomicalSystem"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "schema:rangeIncludes": {
+ "@id": "schema:AnatomicalStructure"
}
},
{
- "@id": "schema:mealService",
+ "@id": "schema:TripleBlindedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.",
+ "rdfs:label": "TripleBlindedTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:workload",
"@type": "rdf:Property",
- "rdfs:comment": "Description of the meals that will be provided or available for purchase.",
- "rdfs:label": "mealService",
+ "rdfs:comment": "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.",
+ "rdfs:label": "workload",
"schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:ExercisePlan"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Energy"
+ },
+ {
+ "@id": "schema:QuantitativeValue"
+ }
+ ]
},
{
- "@id": "schema:ReadAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of consuming written content.",
- "rdfs:label": "ReadAction",
- "rdfs:subClassOf": {
- "@id": "schema:ConsumeAction"
+ "@id": "schema:expertConsiderations",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Medical expert advice related to the plan.",
+ "rdfs:label": "expertConsiderations",
+ "schema:domainIncludes": {
+ "@id": "schema:Diet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:RelatedTopicsHealthAspect",
+ "@id": "schema:AllergiesHealthAspect",
"@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Other prominent or relevant topics tied to the main topic.",
- "rdfs:label": "RelatedTopicsHealthAspect",
+ "rdfs:comment": "Content about the allergy-related aspects of a health topic.",
+ "rdfs:label": "AllergiesHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
}
},
{
- "@id": "schema:SportsTeam",
- "@type": "rdfs:Class",
- "rdfs:comment": "Organization: Sports team.",
- "rdfs:label": "SportsTeam",
- "rdfs:subClassOf": {
- "@id": "schema:SportsOrganization"
- }
+ "@id": "schema:OfflineTemporarily",
+ "@type": "schema:GameServerStatus",
+ "rdfs:comment": "Game server status: OfflineTemporarily. Server is offline now but it can be online soon.",
+ "rdfs:label": "OfflineTemporarily"
},
{
- "@id": "schema:unnamedSourcesPolicy",
+ "@id": "schema:availableAtOrFrom",
"@type": "rdf:Property",
- "rdfs:comment": "For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.",
- "rdfs:label": "unnamedSourcesPolicy",
+ "rdfs:comment": "The place(s) from which the offer can be obtained (e.g. store locations).",
+ "rdfs:label": "availableAtOrFrom",
"rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
+ "@id": "schema:areaServed"
},
"schema:domainIncludes": [
{
- "@id": "schema:NewsMediaOrganization"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Demand"
}
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Place"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:CreativeWork"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
- },
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- }
- ]
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:memoryRequirements",
+ "@id": "schema:sportsActivityLocation",
"@type": "rdf:Property",
- "rdfs:comment": "Minimum memory requirements.",
- "rdfs:label": "memoryRequirements",
+ "rdfs:comment": "A sub property of location. The sports activity location where this action occurred.",
+ "rdfs:label": "sportsActivityLocation",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:location"
+ },
"schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
+ "@id": "schema:ExerciseAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SportsActivityLocation"
+ }
+ },
+ {
+ "@id": "schema:Nose",
+ "@type": "schema:PhysicalExam",
+ "rdfs:comment": "Nose function assessment with clinical examination.",
+ "rdfs:label": "Nose",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:newsUpdatesAndGuidelines",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates a page with news updates and guidelines. This could often be (but is not required to be) the main page containing [[SpecialAnnouncement]] markup on a site.",
+ "rdfs:label": "newsUpdatesAndGuidelines",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:WebContent"
},
{
"@id": "schema:URL"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
},
{
- "@id": "schema:grantee",
+ "@id": "schema:partySize",
"@type": "rdf:Property",
- "rdfs:comment": "The person, organization, contact point, or audience that has been granted this permission.",
- "rdfs:label": "grantee",
- "schema:domainIncludes": {
- "@id": "schema:DigitalDocumentPermission"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "Number of people the reservation should accommodate.",
+ "rdfs:label": "partySize",
+ "schema:domainIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:TaxiReservation"
},
{
- "@id": "schema:ContactPoint"
- },
+ "@id": "schema:FoodEstablishmentReservation"
+ }
+ ],
+ "schema:rangeIncludes": [
{
- "@id": "schema:Audience"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:Person"
+ "@id": "schema:Integer"
}
]
},
{
- "@id": "schema:productGroupID",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates a textual identifier for a ProductGroup.",
- "rdfs:label": "productGroupID",
- "schema:domainIncludes": {
- "@id": "schema:ProductGroup"
+ "@id": "schema:FundingAgency",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A FundingAgency is an organization that implements one or more [[FundingScheme]]s and manages\n the granting process (via [[Grant]]s, typically [[MonetaryGrant]]s).\n A funding agency is not always required for grant funding, e.g. philanthropic giving, corporate sponsorship etc.\n \nExamples of funding agencies include ERC, REA, NIH, Bill and Melinda Gates Foundation, ...\n ",
+ "rdfs:label": "FundingAgency",
+ "rdfs:subClassOf": {
+ "@id": "schema:Project"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ }
+ ]
},
{
- "@id": "schema:usedToDiagnose",
+ "@id": "schema:frequency",
"@type": "rdf:Property",
- "rdfs:comment": "A condition the test is used to diagnose.",
- "rdfs:label": "usedToDiagnose",
+ "rdfs:comment": "How often the dose is taken, e.g. 'daily'.",
+ "rdfs:label": "frequency",
"schema:domainIncludes": {
- "@id": "schema:MedicalTest"
+ "@id": "schema:DoseSchedule"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalCondition"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:code",
+ "@id": "schema:alternativeOf",
"@type": "rdf:Property",
- "rdfs:comment": "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.",
- "rdfs:label": "code",
- "schema:domainIncludes": {
- "@id": "schema:MedicalEntity"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "dcterms:source": {
+ "@id": "http://www.bioschemas.org/Gene"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalCode"
- }
- },
- {
- "@id": "schema:gameServer",
- "@type": "rdf:Property",
- "rdfs:comment": "The server on which it is possible to play the game.",
- "rdfs:label": "gameServer",
+ "rdfs:comment": "Another gene which is a variation of this one.",
+ "rdfs:label": "alternativeOf",
"schema:domainIncludes": {
- "@id": "schema:VideoGame"
+ "@id": "schema:Gene"
},
- "schema:inverseOf": {
- "@id": "schema:game"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:GameServer"
+ "@id": "schema:Gene"
}
},
{
- "@id": "schema:boardingGroup",
+ "@id": "schema:geoCoveredBy",
"@type": "rdf:Property",
- "rdfs:comment": "The airline-specific indicator of boarding order / preference.",
- "rdfs:label": "boardingGroup",
- "schema:domainIncludes": {
- "@id": "schema:FlightReservation"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoCoveredBy",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:GeospatialGeometry"
+ },
+ {
+ "@id": "schema:Place"
+ }
+ ]
},
{
- "@id": "schema:SearchResultsPage",
+ "@id": "schema:CourseInstance",
"@type": "rdfs:Class",
- "rdfs:comment": "Web page type: Search results page.",
- "rdfs:label": "SearchResultsPage",
+ "rdfs:comment": "An instance of a [[Course]] which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.",
+ "rdfs:label": "CourseInstance",
"rdfs:subClassOf": {
- "@id": "schema:WebPage"
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:numberOfAvailableAccommodationUnits",
+ "@id": "schema:numberOfCredits",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates the number of available accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAccommodationUnits]].",
- "rdfs:label": "numberOfAvailableAccommodationUnits",
+ "rdfs:comment": "The number of credits or units awarded by a Course or required to complete an EducationalOccupationalProgram.",
+ "rdfs:label": "numberOfCredits",
"schema:domainIncludes": [
{
- "@id": "schema:FloorPlan"
+ "@id": "schema:Course"
},
{
- "@id": "schema:ApartmentComplex"
+ "@id": "schema:EducationalOccupationalProgram"
}
],
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:StructuredValue"
+ },
+ {
+ "@id": "schema:Integer"
+ }
+ ],
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
}
},
{
- "@id": "schema:Registry",
- "@type": "schema:MedicalObservationalStudyDesign",
- "rdfs:comment": "A registry-based study design.",
- "rdfs:label": "Registry",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
+ "@id": "schema:material",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A material that something is made from, e.g. leather, wool, cotton, paper.",
+ "rdfs:label": "material",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:URL"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ]
},
{
- "@id": "schema:Periodical",
+ "@id": "schema:HowToItem",
"@type": "rdfs:Class",
- "http://www.w3.org/2002/07/owl#equivalentClass": {
- "@id": "http://purl.org/ontology/bibo/Periodical"
- },
- "rdfs:comment": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
- "rdfs:label": "Periodical",
+ "rdfs:comment": "An item used as either a tool or supply when performing the instructions for how to achieve a result.",
+ "rdfs:label": "HowToItem",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWorkSeries"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "@id": "schema:ListItem"
}
},
{
- "@id": "schema:CassetteFormat",
- "@type": "schema:MusicReleaseFormatType",
- "rdfs:comment": "CassetteFormat.",
- "rdfs:label": "CassetteFormat",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "schema:benefits",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Description of benefits associated with the job.",
+ "rdfs:label": "benefits",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:jobBenefits"
}
},
{
- "@id": "schema:availableFrom",
+ "@id": "schema:propertyID",
"@type": "rdf:Property",
- "rdfs:comment": "When the item is available for pickup from the store, locker, etc.",
- "rdfs:label": "availableFrom",
+ "rdfs:comment": "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific ID of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.",
+ "rdfs:label": "propertyID",
"schema:domainIncludes": {
- "@id": "schema:DeliveryEvent"
+ "@id": "schema:PropertyValue"
},
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:URL"
+ }
+ ]
+ },
+ {
+ "@id": "schema:PlasticSurgery",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.",
+ "rdfs:label": "PlasticSurgery",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:diseasePreventionInfo",
+ "@id": "schema:telephone",
"@type": "rdf:Property",
- "rdfs:comment": "Information about disease prevention.",
- "rdfs:label": "diseasePreventionInfo",
- "schema:domainIncludes": {
- "@id": "schema:SpecialAnnouncement"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The telephone number.",
+ "rdfs:label": "telephone",
+ "schema:domainIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:Place"
},
{
- "@id": "schema:WebContent"
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:ContactPoint"
+ },
+ {
+ "@id": "schema:Person"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:mechanismOfAction",
+ "@id": "schema:accommodationFloorPlan",
"@type": "rdf:Property",
- "rdfs:comment": "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.",
- "rdfs:label": "mechanismOfAction",
+ "rdfs:comment": "A floorplan of some [[Accommodation]].",
+ "rdfs:label": "accommodationFloorPlan",
"schema:domainIncludes": [
{
- "@id": "schema:Drug"
+ "@id": "schema:Accommodation"
},
{
- "@id": "schema:DietarySupplement"
+ "@id": "schema:Residence"
}
],
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:FloorPlan"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:CategoryCode",
- "@type": "rdfs:Class",
- "rdfs:comment": "A Category Code.",
- "rdfs:label": "CategoryCode",
- "rdfs:subClassOf": {
- "@id": "schema:DefinedTerm"
- },
+ "@id": "schema:Dentistry",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A branch of medicine that is involved in the dental care.",
+ "rdfs:label": "Dentistry",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/894"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:followup",
+ "@id": "schema:taxID",
"@type": "rdf:Property",
- "rdfs:comment": "Typical or recommended followup care after the procedure is performed.",
- "rdfs:label": "followup",
- "schema:domainIncludes": {
- "@id": "schema:MedicalProcedure"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "rdfs:comment": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
+ "rdfs:label": "taxID",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ],
"schema:rangeIncludes": {
"@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:coach",
+ "@id": "schema:hasCourseInstance",
"@type": "rdf:Property",
- "rdfs:comment": "A person that acts in a coaching role for a sports team.",
- "rdfs:label": "coach",
+ "rdfs:comment": "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.",
+ "rdfs:label": "hasCourseInstance",
"schema:domainIncludes": {
- "@id": "schema:SportsTeam"
+ "@id": "schema:Course"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:CourseInstance"
}
},
{
- "@id": "schema:WriteAction",
+ "@id": "schema:ExchangeRateSpecification",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of authoring written creative content.",
- "rdfs:label": "WriteAction",
+ "rdfs:comment": "A structured value representing exchange rate.",
+ "rdfs:label": "ExchangeRateSpecification",
"rdfs:subClassOf": {
- "@id": "schema:CreateAction"
+ "@id": "schema:StructuredValue"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ },
+ {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ }
+ ]
+ },
+ {
+ "@id": "schema:SportsEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Sports event.",
+ "rdfs:label": "SportsEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:coverageStartTime",
- "@type": "rdf:Property",
- "rdfs:comment": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.",
- "rdfs:label": "coverageStartTime",
- "schema:domainIncludes": {
- "@id": "schema:LiveBlogPosting"
+ "@id": "schema:Nonprofit501c17",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c17: Non-profit type referring to Supplemental Unemployment Benefit Trusts.",
+ "rdfs:label": "Nonprofit501c17",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:DateTime"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:PerformAction",
+ "@id": "schema:MedicalCause",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of participating in performance arts.",
- "rdfs:label": "PerformAction",
+ "rdfs:comment": "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.",
+ "rdfs:label": "MedicalCause",
"rdfs:subClassOf": {
- "@id": "schema:PlayAction"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:checkoutTime",
+ "@id": "schema:priceCurrency",
"@type": "rdf:Property",
- "rdfs:comment": "The latest someone may check out of a lodging establishment.",
- "rdfs:label": "checkoutTime",
+ "rdfs:comment": "The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217), e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies, e.g. \"BTC\"; well known names for [Local Exchange Trading Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types, e.g. \"Ithaca HOUR\".",
+ "rdfs:label": "priceCurrency",
"schema:domainIncludes": [
{
- "@id": "schema:LodgingBusiness"
+ "@id": "schema:TradeAction"
},
{
- "@id": "schema:LodgingReservation"
+ "@id": "schema:Offer"
+ },
+ {
+ "@id": "schema:Ticket"
+ },
+ {
+ "@id": "schema:Reservation"
+ },
+ {
+ "@id": "schema:PriceSpecification"
}
],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:restPeriods",
+ "@type": "rdf:Property",
+ "rdfs:comment": "How often one should break from the activity.",
+ "rdfs:label": "restPeriods",
+ "schema:domainIncludes": {
+ "@id": "schema:ExercisePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
"schema:rangeIncludes": [
{
- "@id": "schema:DateTime"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:Time"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:bloodSupply",
- "@type": "rdf:Property",
- "rdfs:comment": "The blood vessel that carries blood from the heart to the muscle.",
- "rdfs:label": "bloodSupply",
- "schema:domainIncludes": {
- "@id": "schema:Muscle"
+ "@id": "schema:HealthPlanFormulary",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "For a given health insurance plan, the specification for costs and coverage of prescription drugs. ",
+ "rdfs:label": "HealthPlanFormulary",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Vessel"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:Dermatology",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.",
- "rdfs:label": "Dermatology",
+ "@id": "schema:SpokenWordAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "SpokenWordAlbum.",
+ "rdfs:label": "SpokenWordAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:FilmAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of capturing sound and moving images on film, video, or digitally.",
+ "rdfs:label": "FilmAction",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:SelfStorage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A self-storage facility.",
+ "rdfs:label": "SelfStorage",
+ "rdfs:subClassOf": {
+ "@id": "schema:LocalBusiness"
+ }
+ },
+ {
+ "@id": "schema:billingIncrement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.",
+ "rdfs:label": "billingIncrement",
+ "schema:domainIncludes": {
+ "@id": "schema:UnitPriceSpecification"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:contentSize",
+ "@id": "schema:arrivalTerminal",
"@type": "rdf:Property",
- "rdfs:comment": "File size in (mega/kilo) bytes.",
- "rdfs:label": "contentSize",
+ "rdfs:comment": "Identifier of the flight's arrival terminal.",
+ "rdfs:label": "arrivalTerminal",
"schema:domainIncludes": {
- "@id": "schema:MediaObject"
+ "@id": "schema:Flight"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:Trip",
+ "@id": "schema:WPFooter",
"@type": "rdfs:Class",
- "rdfs:comment": "A trip or journey. An itinerary of visits to one or more places.",
- "rdfs:label": "Trip",
+ "rdfs:comment": "The footer section of the page.",
+ "rdfs:label": "WPFooter",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:WebPageElement"
+ }
+ },
+ {
+ "@id": "schema:DesktopWebPlatform",
+ "@type": "schema:DigitalPlatformEnumeration",
+ "rdfs:comment": "Represents the broad notion of 'desktop' browsers as a Web Platform.",
+ "rdfs:label": "DesktopWebPlatform",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/3057"
}
},
{
- "@id": "schema:fileFormat",
- "@type": "rdf:Property",
- "rdfs:comment": "Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.",
- "rdfs:label": "fileFormat",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:MulticellularParasite",
+ "@type": "schema:InfectiousAgentClass",
+ "rdfs:comment": "Multicellular parasite that causes an infection.",
+ "rdfs:label": "MulticellularParasite",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:ViolenceConsideration",
+ "@type": "schema:AdultOrientedEnumeration",
+ "rdfs:comment": "Item shows or promotes violence.",
+ "rdfs:label": "ViolenceConsideration",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- }
- ],
- "schema:supersededBy": {
- "@id": "schema:encodingFormat"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2989"
}
},
{
- "@id": "schema:SportsClub",
- "@type": "rdfs:Class",
- "rdfs:comment": "A sports club.",
- "rdfs:label": "SportsClub",
- "rdfs:subClassOf": {
- "@id": "schema:SportsActivityLocation"
+ "@id": "schema:BodyMeasurementChest",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Maximum girth of chest. Used, for example, to fit men's suits.",
+ "rdfs:label": "BodyMeasurementChest",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:partOfTrip",
+ "@id": "schema:energyEfficiencyScaleMax",
"@type": "rdf:Property",
- "rdfs:comment": "Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip.",
- "rdfs:label": "partOfTrip",
+ "rdfs:comment": "Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
+ "rdfs:label": "energyEfficiencyScaleMax",
"schema:domainIncludes": {
- "@id": "schema:Trip"
- },
- "schema:inverseOf": {
- "@id": "schema:subTrip"
+ "@id": "schema:EnergyConsumptionDetails"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Trip"
+ "@id": "schema:EUEnergyEfficiencyEnumeration"
},
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
- },
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ }
},
{
- "@id": "schema:requiredMinAge",
+ "@id": "schema:reviewCount",
"@type": "rdf:Property",
- "rdfs:comment": "Audiences defined by a person's minimum age.",
- "rdfs:label": "requiredMinAge",
+ "rdfs:comment": "The count of total number of reviews.",
+ "rdfs:label": "reviewCount",
"schema:domainIncludes": {
- "@id": "schema:PeopleAudience"
+ "@id": "schema:AggregateRating"
},
"schema:rangeIncludes": {
"@id": "schema:Integer"
}
},
{
- "@id": "schema:percentile10",
- "@type": "rdf:Property",
- "rdfs:comment": "The 10th percentile value.",
- "rdfs:label": "percentile10",
- "schema:domainIncludes": {
- "@id": "schema:QuantitativeValueDistribution"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:DataFeedItem",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A single item within a larger data feed.",
+ "rdfs:label": "DataFeedItem",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
+ }
+ },
+ {
+ "@id": "schema:Oncologic",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.",
+ "rdfs:label": "Oncologic",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:hostingOrganization",
+ "@id": "schema:area",
"@type": "rdf:Property",
- "rdfs:comment": "The organization (airline, travelers' club, etc.) the membership is made with.",
- "rdfs:label": "hostingOrganization",
+ "rdfs:comment": "The area within which users can expect to reach the broadcast service.",
+ "rdfs:label": "area",
"schema:domainIncludes": {
- "@id": "schema:ProgramMembership"
+ "@id": "schema:BroadcastService"
},
"schema:rangeIncludes": {
- "@id": "schema:Organization"
+ "@id": "schema:Place"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:serviceArea"
}
},
{
- "@id": "schema:WebAPI",
+ "@id": "schema:CompoundPriceSpecification",
"@type": "rdfs:Class",
- "rdfs:comment": "An application programming interface accessible over Web/Internet technologies.",
- "rdfs:label": "WebAPI",
+ "rdfs:comment": "A compound price specification is one that bundles multiple prices that all apply in combination for different dimensions of consumption. Use the name property of the attached unit price specification for indicating the dimension of a price component (e.g. \"electricity\" or \"final cleaning\").",
+ "rdfs:label": "CompoundPriceSpecification",
"rdfs:subClassOf": {
- "@id": "schema:Service"
+ "@id": "schema:PriceSpecification"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ }
+ },
+ {
+ "@id": "schema:QuantitativeValueDistribution",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A statistical distribution of values.",
+ "rdfs:label": "QuantitativeValueDistribution",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1423"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:producer",
+ "@id": "schema:defaultValue",
"@type": "rdf:Property",
- "rdfs:comment": "The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.).",
- "rdfs:label": "producer",
+ "rdfs:comment": "The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.",
+ "rdfs:label": "defaultValue",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:PropertyValueSpecification"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Thing"
},
{
- "@id": "schema:Organization"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:rsvpResponse",
+ "@id": "schema:browserRequirements",
"@type": "rdf:Property",
- "rdfs:comment": "The response (yes, no, maybe) to the RSVP.",
- "rdfs:label": "rsvpResponse",
+ "rdfs:comment": "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.",
+ "rdfs:label": "browserRequirements",
"schema:domainIncludes": {
- "@id": "schema:RsvpAction"
+ "@id": "schema:WebApplication"
},
"schema:rangeIncludes": {
- "@id": "schema:RsvpResponseType"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:validIn",
+ "@id": "schema:predecessorOf",
"@type": "rdf:Property",
- "rdfs:comment": "The geographic area where a permit or similar thing is valid.",
- "rdfs:label": "validIn",
- "schema:domainIncludes": [
- {
- "@id": "schema:Permit"
- },
- {
- "@id": "schema:EducationalOccupationalCredential"
- }
- ],
+ "rdfs:comment": "A pointer from a previous, often discontinued variant of the product to its newer variant.",
+ "rdfs:label": "predecessorOf",
+ "schema:domainIncludes": {
+ "@id": "schema:ProductModel"
+ },
"schema:rangeIncludes": {
- "@id": "schema:AdministrativeArea"
+ "@id": "schema:ProductModel"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:negativeNotes",
+ "@id": "schema:callSign",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates, in the context of a [[Review]] (e.g. framed as 'pro' vs 'con' considerations), negative considerations - either as unstructured text, or a list.",
- "rdfs:label": "negativeNotes",
- "schema:domainIncludes": {
- "@id": "schema:Review"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "rdfs:comment": "A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.",
+ "rdfs:label": "callSign",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:ListItem"
- },
+ "schema:domainIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:BroadcastService"
},
{
- "@id": "schema:ItemList"
+ "@id": "schema:Vehicle"
},
{
- "@id": "schema:WebContent"
+ "@id": "schema:Person"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2832"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2109"
}
},
{
- "@id": "schema:FreeReturn",
- "@type": "schema:ReturnFeesEnumeration",
- "rdfs:comment": "Specifies that product returns are free of charge for the customer.",
- "rdfs:label": "FreeReturn",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:AutoPartsStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An auto parts store.",
+ "rdfs:label": "AutoPartsStore",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Store"
+ },
+ {
+ "@id": "schema:AutomotiveBusiness"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DatedMoneySpecification",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A DatedMoneySpecification represents monetary values with optional start and end dates. For example, this could represent an employee's salary over a specific period of time. __Note:__ This type has been superseded by [[MonetaryAmount]], use of that type is recommended.",
+ "rdfs:label": "DatedMoneySpecification",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "schema:supersededBy": {
+ "@id": "schema:MonetaryAmount"
}
},
{
- "@id": "schema:citation",
- "@type": "rdf:Property",
- "rdfs:comment": "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.",
- "rdfs:label": "citation",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": [
+ "@id": "schema:Hospital",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hospital.",
+ "rdfs:label": "Hospital",
+ "rdfs:subClassOf": [
{
- "@id": "schema:Text"
+ "@id": "schema:EmergencyService"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:MedicalOrganization"
+ },
+ {
+ "@id": "schema:CivicStructure"
}
]
},
{
- "@id": "schema:NoninvasiveProcedure",
- "@type": "schema:MedicalProcedureType",
- "rdfs:comment": "A type of medical procedure that involves noninvasive techniques.",
- "rdfs:label": "NoninvasiveProcedure",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:HomeGoodsStore",
- "@type": "rdfs:Class",
- "rdfs:comment": "A home goods store.",
- "rdfs:label": "HomeGoodsStore",
- "rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:flightNumber",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.",
+ "rdfs:label": "flightNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:identifier"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:subReservation",
+ "@id": "schema:cvdNumC19OFMechVentPats",
"@type": "rdf:Property",
- "rdfs:comment": "The individual reservations included in the package. Typically a repeated property.",
- "rdfs:label": "subReservation",
+ "rdfs:comment": "numc19ofmechventpats - ED/OVERFLOW and VENTILATED: Patients with suspected or confirmed COVID-19 who are in the ED or any overflow location awaiting an inpatient bed and on a mechanical ventilator.",
+ "rdfs:label": "cvdNumC19OFMechVentPats",
"schema:domainIncludes": {
- "@id": "schema:ReservationPackage"
+ "@id": "schema:CDCPMDRecord"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Reservation"
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2521"
}
},
{
- "@id": "schema:EatAction",
+ "@id": "schema:EndorseAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of swallowing solid objects.",
- "rdfs:label": "EatAction",
+ "rdfs:comment": "An agent approves/certifies/likes/supports/sanctions an object.",
+ "rdfs:label": "EndorseAction",
"rdfs:subClassOf": {
- "@id": "schema:ConsumeAction"
+ "@id": "schema:ReactAction"
}
},
{
- "@id": "schema:claimReviewed",
- "@type": "rdf:Property",
- "rdfs:comment": "A short summary of the specific claims reviewed in a ClaimReview.",
- "rdfs:label": "claimReviewed",
- "schema:domainIncludes": {
- "@id": "schema:ClaimReview"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1061"
+ "@id": "schema:RandomizedTrial",
+ "@type": "schema:MedicalTrialDesign",
+ "rdfs:comment": "A randomized trial design.",
+ "rdfs:label": "RandomizedTrial",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:arrivalGate",
+ "@id": "schema:educationalFramework",
"@type": "rdf:Property",
- "rdfs:comment": "Identifier of the flight's arrival gate.",
- "rdfs:label": "arrivalGate",
+ "rdfs:comment": "The framework to which the resource being described is aligned.",
+ "rdfs:label": "educationalFramework",
"schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:AlignmentObject"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:Hotel",
+ "@id": "schema:MedicalSpecialty",
"@type": "rdfs:Class",
- "rdfs:comment": "A hotel is an establishment that provides lodging paid on a short-term basis (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
- "rdfs:label": "Hotel",
- "rdfs:subClassOf": {
- "@id": "schema:LodgingBusiness"
- },
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ "rdfs:comment": "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.",
+ "rdfs:label": "MedicalSpecialty",
+ "rdfs:subClassOf": [
+ {
+ "@id": "schema:Specialty"
+ },
+ {
+ "@id": "schema:MedicalEnumeration"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:MoneyTransfer",
+ "@id": "schema:InformAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of transferring money from one place to another place. This may occur electronically or physically.",
- "rdfs:label": "MoneyTransfer",
+ "rdfs:comment": "The act of notifying someone of information pertinent to them, with no expectation of a response.",
+ "rdfs:label": "InformAction",
"rdfs:subClassOf": {
- "@id": "schema:TransferAction"
+ "@id": "schema:CommunicateAction"
+ }
+ },
+ {
+ "@id": "schema:legislationLegalForce",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#in_force"
+ },
+ "rdfs:comment": "Whether the legislation is currently in force, not in force, or partially in force.",
+ "rdfs:label": "legislationLegalForce",
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:LegalForceStatus"
+ },
"schema:source": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
- ]
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#in_force"
+ }
},
{
- "@id": "schema:Code",
+ "@id": "schema:DriveWheelConfigurationValue",
"@type": "rdfs:Class",
- "rdfs:comment": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
- "rdfs:label": "Code",
+ "rdfs:comment": "A value indicating which roadwheels will receive torque.",
+ "rdfs:label": "DriveWheelConfigurationValue",
"rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:QualitativeValue"
},
- "schema:supersededBy": {
- "@id": "schema:SoftwareSourceCode"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:ImagingTest",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes.",
- "rdfs:label": "ImagingTest",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalTest"
+ "@id": "schema:partOfOrder",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The overall order the items in this delivery were included in.",
+ "rdfs:label": "partOfOrder",
+ "schema:domainIncludes": {
+ "@id": "schema:ParcelDelivery"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Order"
}
},
{
- "@id": "schema:Map",
- "@type": "rdfs:Class",
- "rdfs:comment": "A map.",
- "rdfs:label": "Map",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:softwareAddOn",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Additional content for a software application.",
+ "rdfs:label": "softwareAddOn",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:SoftwareApplication"
}
},
{
- "@id": "schema:directors",
+ "@id": "schema:aspect",
"@type": "rdf:Property",
- "rdfs:comment": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
- "rdfs:label": "directors",
- "schema:domainIncludes": [
- {
- "@id": "schema:Movie"
- },
- {
- "@id": "schema:VideoGame"
- },
- {
- "@id": "schema:Clip"
- },
- {
- "@id": "schema:RadioSeries"
- },
- {
- "@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:VideoObject"
- },
- {
- "@id": "schema:Episode"
- },
- {
- "@id": "schema:MovieSeries"
- },
- {
- "@id": "schema:TVSeries"
- }
- ],
+ "rdfs:comment": "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.",
+ "rdfs:label": "aspect",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalWebPage"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
},
"schema:supersededBy": {
- "@id": "schema:director"
+ "@id": "schema:mainContentOfPage"
}
},
{
- "@id": "schema:masthead",
+ "@id": "schema:orderDate",
"@type": "rdf:Property",
- "rdfs:comment": "For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.",
- "rdfs:label": "masthead",
- "rdfs:subPropertyOf": {
- "@id": "schema:publishingPrinciples"
- },
+ "rdfs:comment": "Date order was placed.",
+ "rdfs:label": "orderDate",
"schema:domainIncludes": {
- "@id": "schema:NewsMediaOrganization"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Order"
},
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Date"
+ }
+ ]
+ },
+ {
+ "@id": "schema:sender",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of participant. The participant who is at the sending end of the action.",
+ "rdfs:label": "sender",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:participant"
+ },
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Message"
+ },
+ {
+ "@id": "schema:ReceiveAction"
}
],
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ "@id": "schema:Audience"
},
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:Play",
- "@type": "rdfs:Class",
- "rdfs:comment": "A play is a form of literature, usually consisting of dialogue between characters, intended for theatrical performance rather than just reading. Note: A performance of a Play would be a [[TheaterEvent]] or [[BroadcastEvent]] - the *Play* being the [[workPerformed]].",
- "rdfs:label": "Play",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:healthPlanCoinsuranceOption",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?",
+ "rdfs:label": "healthPlanCoinsuranceOption",
+ "schema:domainIncludes": {
+ "@id": "schema:HealthPlanCostSharingSpecification"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1816"
- }
- },
- {
- "@id": "schema:broadcastServiceTier",
- "@type": "rdf:Property",
- "rdfs:comment": "The type of service required to have access to the channel (e.g. Standard or Premium).",
- "rdfs:label": "broadcastServiceTier",
- "schema:domainIncludes": {
- "@id": "schema:BroadcastChannel"
- },
"schema:rangeIncludes": {
"@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:broadcastFrequencyValue",
+ "@id": "schema:serviceType",
"@type": "rdf:Property",
- "rdfs:comment": "The frequency in MHz for a particular broadcast.",
- "rdfs:label": "broadcastFrequencyValue",
+ "rdfs:comment": "The type of service being offered, e.g. veterans' benefits, emergency relief, etc.",
+ "rdfs:label": "serviceType",
"schema:domainIncludes": {
- "@id": "schema:BroadcastFrequencySpecification"
+ "@id": "schema:Service"
},
"schema:rangeIncludes": [
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Number"
+ "@id": "schema:GovernmentBenefitsType"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1004"
- }
- },
- {
- "@id": "schema:WearableSizeSystemMX",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "Mexican size system for wearables.",
- "rdfs:label": "WearableSizeSystemMX",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
+ ]
},
{
- "@id": "schema:TypesHealthAspect",
- "@type": "schema:HealthAspectEnumeration",
- "rdfs:comment": "Categorization and other types related to a topic.",
- "rdfs:label": "TypesHealthAspect",
+ "@id": "schema:contraindication",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A contraindication for this therapy.",
+ "rdfs:label": "contraindication",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:MedicalDevice"
+ },
+ {
+ "@id": "schema:MedicalTherapy"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
- }
- },
- {
- "@id": "schema:FoodService",
- "@type": "rdfs:Class",
- "rdfs:comment": "A food service, like breakfast, lunch, or dinner.",
- "rdfs:label": "FoodService",
- "rdfs:subClassOf": {
- "@id": "schema:Service"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
- }
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Text"
+ },
+ {
+ "@id": "schema:MedicalContraindication"
+ }
+ ]
},
{
- "@id": "schema:tongueWeight",
+ "@id": "schema:legislationResponsible",
"@type": "rdf:Property",
- "rdfs:comment": "The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR)\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "tongueWeight",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#responsibility_of"
+ },
+ "rdfs:comment": "An individual or organization that has some kind of responsibility for the legislation. Typically the ministry who is/was in charge of elaborating the legislation, or the adressee for potential questions about the legislation once it is published.",
+ "rdfs:label": "legislationResponsible",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:Legislation"
},
"schema:isPartOf": {
- "@id": "https://auto.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
- },
- {
- "@id": "schema:GovernmentPermit",
- "@type": "rdfs:Class",
- "rdfs:comment": "A permit issued by a government agency.",
- "rdfs:label": "GovernmentPermit",
- "rdfs:subClassOf": {
- "@id": "schema:Permit"
- }
- },
- {
- "@id": "schema:vehicleSeatingCapacity",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons.",
- "rdfs:label": "vehicleSeatingCapacity",
- "schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Number"
+ "@id": "schema:Person"
}
],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#responsibility_of"
}
},
{
- "@id": "schema:OfferForPurchase",
- "@type": "rdfs:Class",
- "rdfs:comment": "An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose\n [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
- "rdfs:label": "OfferForPurchase",
- "rdfs:subClassOf": {
- "@id": "schema:Offer"
- },
+ "@id": "schema:EUEnergyEfficiencyCategoryA2Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A++ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA2Plus",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2348"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:WearableSizeSystemGS1",
- "@type": "schema:WearableSizeSystemEnumeration",
- "rdfs:comment": "GS1 (formerly NRF) size system for wearables.",
- "rdfs:label": "WearableSizeSystemGS1",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:legislationJurisdiction",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://data.europa.eu/eli/ontology#jurisdiction"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
- }
- },
- {
- "@id": "schema:CriticReview",
- "@type": "rdfs:Class",
- "rdfs:comment": "A [[CriticReview]] is a more specialized form of Review written or published by a source that is recognized for its reviewing activities. These can include online columns, travel and food guides, TV and radio shows, blogs and other independent Web sites. [[CriticReview]]s are typically more in-depth and professionally written. For simpler, casually written user/visitor/viewer/customer reviews, it is more appropriate to use the [[UserReview]] type. Review aggregator sites such as Metacritic already separate out the site's user reviews from selected critic reviews that originate from third-party sources.",
- "rdfs:label": "CriticReview",
- "rdfs:subClassOf": {
- "@id": "schema:Review"
+ "rdfs:comment": "The jurisdiction from which the legislation originates.",
+ "rdfs:label": "legislationJurisdiction",
+ "rdfs:subPropertyOf": [
+ {
+ "@id": "schema:jurisdiction"
+ },
+ {
+ "@id": "schema:spatialCoverage"
+ }
+ ],
+ "schema:domainIncludes": {
+ "@id": "schema:Legislation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:AdministrativeArea"
+ },
+ {
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": [
+ {
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ }
+ ],
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#jurisdiction"
}
},
{
- "@id": "schema:Reservoir",
- "@type": "rdfs:Class",
- "rdfs:comment": "A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.",
- "rdfs:label": "Reservoir",
- "rdfs:subClassOf": {
- "@id": "schema:BodyOfWater"
+ "@id": "schema:Renal",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.",
+ "rdfs:label": "Renal",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:MeasurementTypeEnumeration",
- "@type": "rdfs:Class",
- "rdfs:comment": "Enumeration of common measurement types (or dimensions), for example \"chest\" for a person, \"inseam\" for pants, \"gauge\" for screws, or \"wheel\" for bicycles.",
- "rdfs:label": "MeasurementTypeEnumeration",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:collectionSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": {
+ "@language": "en",
+ "@value": "The number of items in the [[Collection]]."
+ },
+ "rdfs:label": {
+ "@language": "en",
+ "@value": "collectionSize"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Collection"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1759"
}
},
{
- "@id": "schema:reservationFor",
+ "@id": "schema:insertion",
"@type": "rdf:Property",
- "rdfs:comment": "The thing -- flight, event, restaurant,etc. being reserved.",
- "rdfs:label": "reservationFor",
+ "rdfs:comment": "The place of attachment of a muscle, or what the muscle moves.",
+ "rdfs:label": "insertion",
"schema:domainIncludes": {
- "@id": "schema:Reservation"
+ "@id": "schema:Muscle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:AnatomicalStructure"
}
},
{
- "@id": "schema:activityFrequency",
- "@type": "rdf:Property",
- "rdfs:comment": "How often one should engage in the activity.",
- "rdfs:label": "activityFrequency",
- "schema:domainIncludes": {
- "@id": "schema:ExercisePlan"
+ "@id": "schema:MedicalEnumeration",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice.",
+ "rdfs:label": "MedicalEnumeration",
+ "rdfs:subClassOf": {
+ "@id": "schema:Enumeration"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:datePublished",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Date of first broadcast/publication.",
+ "rdfs:label": "datePublished",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:DateTime"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Date"
}
]
},
{
- "@id": "schema:MedicalImagingTechnique",
- "@type": "rdfs:Class",
- "rdfs:comment": "Any medical imaging modality typically used for diagnostic purposes. Enumerated type.",
- "rdfs:label": "MedicalImagingTechnique",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:engineDisplacement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The volume swept by all of the pistons inside the cylinders of an internal combustion engine in a single movement. \\n\\nTypical unit code(s): CMQ for cubic centimeter, LTR for liters, INQ for cubic inches\\n* Note 1: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 2: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "engineDisplacement",
+ "schema:domainIncludes": {
+ "@id": "schema:EngineSpecification"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:HealthPlanFormulary",
- "@type": "rdfs:Class",
- "rdfs:comment": "For a given health insurance plan, the specification for costs and coverage of prescription drugs. ",
- "rdfs:label": "HealthPlanFormulary",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "https://auto.schema.org"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:FollowAction",
+ "@id": "schema:MedicalEvidenceLevel",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\\n\\nRelated actions:\\n\\n* [[BefriendAction]]: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.\\n* [[SubscribeAction]]: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\\n* [[RegisterAction]]: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\\n* [[JoinAction]]: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\\n* [[TrackAction]]: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it).",
- "rdfs:label": "FollowAction",
+ "rdfs:comment": "Level of evidence for a medical guideline. Enumerated type.",
+ "rdfs:label": "MedicalEvidenceLevel",
"rdfs:subClassOf": {
- "@id": "schema:InteractAction"
+ "@id": "schema:MedicalEnumeration"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:TouristTrip",
- "@type": "rdfs:Class",
- "rdfs:comment": "A tourist trip. A created itinerary of visits to one or more places of interest ([[TouristAttraction]]/[[TouristDestination]]) often linked by a similar theme, geographic area, or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors.\n (See examples below).",
- "rdfs:label": "TouristTrip",
- "rdfs:subClassOf": {
- "@id": "schema:Trip"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:source": [
- {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
- },
+ "@id": "schema:hasDeliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Method used for delivery or shipping.",
+ "rdfs:label": "hasDeliveryMethod",
+ "schema:domainIncludes": [
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
+ "@id": "schema:DeliveryEvent"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1810"
+ "@id": "schema:ParcelDelivery"
}
- ]
- },
- {
- "@id": "schema:TVEpisode",
- "@type": "rdfs:Class",
- "rdfs:comment": "A TV episode which can be part of a series or season.",
- "rdfs:label": "TVEpisode",
- "rdfs:subClassOf": {
- "@id": "schema:Episode"
- }
- },
- {
- "@id": "schema:SoldOut",
- "@type": "schema:ItemAvailability",
- "rdfs:comment": "Indicates that the item has sold out.",
- "rdfs:label": "SoldOut"
- },
- {
- "@id": "schema:dependencies",
- "@type": "rdf:Property",
- "rdfs:comment": "Prerequisites needed to fulfill steps in article.",
- "rdfs:label": "dependencies",
- "schema:domainIncludes": {
- "@id": "schema:TechArticle"
- },
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:DeliveryMethod"
}
},
{
- "@id": "schema:insertion",
+ "@id": "schema:mediaItemAppearance",
"@type": "rdf:Property",
- "rdfs:comment": "The place of attachment of a muscle, or what the muscle moves.",
- "rdfs:label": "insertion",
+ "rdfs:comment": "In the context of a [[MediaReview]], indicates specific media item(s) that are grouped using a [[MediaReviewItem]].",
+ "rdfs:label": "mediaItemAppearance",
"schema:domainIncludes": {
- "@id": "schema:Muscle"
+ "@id": "schema:MediaReviewItem"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:MediaObject"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:employmentType",
+ "@id": "schema:instructor",
"@type": "rdf:Property",
- "rdfs:comment": "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).",
- "rdfs:label": "employmentType",
+ "rdfs:comment": "A person assigned to instruct or provide instructional assistance for the [[CourseInstance]].",
+ "rdfs:label": "instructor",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:CourseInstance"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:Waterfall",
- "@type": "rdfs:Class",
- "rdfs:comment": "A waterfall, like Niagara.",
- "rdfs:label": "Waterfall",
- "rdfs:subClassOf": {
- "@id": "schema:BodyOfWater"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:parentItem",
+ "@id": "schema:programName",
"@type": "rdf:Property",
- "rdfs:comment": "The parent of a question, answer or item in general.",
- "rdfs:label": "parentItem",
+ "rdfs:comment": "The program providing the membership.",
+ "rdfs:label": "programName",
"schema:domainIncludes": {
- "@id": "schema:Comment"
+ "@id": "schema:ProgramMembership"
},
"schema:rangeIncludes": {
- "@id": "schema:Comment"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:MovingCompany",
+ "@id": "schema:BoatReservation",
"@type": "rdfs:Class",
- "rdfs:comment": "A moving company.",
- "rdfs:label": "MovingCompany",
+ "rdfs:comment": "A reservation for boat travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
+ "rdfs:label": "BoatReservation",
"rdfs:subClassOf": {
- "@id": "schema:HomeAndConstructionBusiness"
- }
- },
- {
- "@id": "schema:free",
- "@type": "rdf:Property",
- "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.",
- "rdfs:label": "free",
- "schema:domainIncludes": {
- "@id": "schema:PublicationEvent"
+ "@id": "schema:Reservation"
},
- "schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:supersededBy": {
- "@id": "schema:isAccessibleForFree"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1755"
}
},
{
- "@id": "schema:ReservationPending",
- "@type": "schema:ReservationStatusType",
- "rdfs:comment": "The status of a reservation when a request has been sent, but not confirmed.",
- "rdfs:label": "ReservationPending"
- },
- {
- "@id": "schema:ApartmentComplex",
+ "@id": "schema:SuperficialAnatomy",
"@type": "rdfs:Class",
- "rdfs:comment": "Residence type: Apartment complex.",
- "rdfs:label": "ApartmentComplex",
+ "rdfs:comment": "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).",
+ "rdfs:label": "SuperficialAnatomy",
"rdfs:subClassOf": {
- "@id": "schema:Residence"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:customerRemorseReturnLabelSource",
- "@type": "rdf:Property",
- "rdfs:comment": "The method (from an enumeration) by which the customer obtains a return shipping label for a product returned due to customer remorse.",
- "rdfs:label": "customerRemorseReturnLabelSource",
- "schema:domainIncludes": {
- "@id": "schema:MerchantReturnPolicy"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:ReturnLabelSourceEnumeration"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ "@id": "schema:TheaterEvent",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Event type: Theater performance.",
+ "rdfs:label": "TheaterEvent",
+ "rdfs:subClassOf": {
+ "@id": "schema:Event"
}
},
{
- "@id": "schema:valueReference",
+ "@id": "schema:offers",
"@type": "rdf:Property",
- "rdfs:comment": "A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.",
- "rdfs:label": "valueReference",
+ "rdfs:comment": "An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use [[businessFunction]] to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a [[Demand]]. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.\n ",
+ "rdfs:label": "offers",
"schema:domainIncludes": [
{
- "@id": "schema:PropertyValue"
+ "@id": "schema:Product"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:Event"
},
{
- "@id": "schema:QualitativeValue"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:PropertyValue"
+ "@id": "schema:AggregateOffer"
},
{
- "@id": "schema:StructuredValue"
+ "@id": "schema:EducationalOccupationalProgram"
},
{
- "@id": "schema:QualitativeValue"
+ "@id": "schema:Trip"
},
{
- "@id": "schema:MeasurementTypeEnumeration"
+ "@id": "schema:Service"
},
{
- "@id": "schema:QuantitativeValue"
+ "@id": "schema:MenuItem"
},
{
- "@id": "schema:Text"
- },
+ "@id": "schema:CreativeWork"
+ }
+ ],
+ "schema:inverseOf": {
+ "@id": "schema:itemOffered"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:DefinedTerm"
+ "@id": "schema:Demand"
},
{
- "@id": "schema:Enumeration"
+ "@id": "schema:Offer"
}
],
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
}
},
{
- "@id": "schema:addressRegion",
+ "@id": "schema:InStoreOnly",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available only at physical locations.",
+ "rdfs:label": "InStoreOnly"
+ },
+ {
+ "@id": "schema:trainingSalary",
"@type": "rdf:Property",
- "rdfs:comment": "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country) ",
- "rdfs:label": "addressRegion",
+ "rdfs:comment": "The estimated salary earned while in the program.",
+ "rdfs:label": "trainingSalary",
"schema:domainIncludes": [
{
- "@id": "schema:DefinedRegion"
+ "@id": "schema:WorkBasedProgram"
},
{
- "@id": "schema:PostalAddress"
+ "@id": "schema:EducationalOccupationalProgram"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MonetaryAmountDistribution"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2289"
+ },
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2460"
+ }
+ ]
+ },
+ {
+ "@id": "schema:ReadAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of consuming written content.",
+ "rdfs:label": "ReadAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ConsumeAction"
}
},
{
- "@id": "schema:sportsTeam",
+ "@id": "schema:primaryImageOfPage",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The sports team that participated on this action.",
- "rdfs:label": "sportsTeam",
- "rdfs:subPropertyOf": {
- "@id": "schema:participant"
- },
+ "rdfs:comment": "Indicates the main image on the page.",
+ "rdfs:label": "primaryImageOfPage",
"schema:domainIncludes": {
- "@id": "schema:ExerciseAction"
+ "@id": "schema:WebPage"
},
"schema:rangeIncludes": {
- "@id": "schema:SportsTeam"
+ "@id": "schema:ImageObject"
}
},
{
- "@id": "schema:publicationType",
+ "@id": "schema:Answer",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.",
+ "rdfs:label": "Answer",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"
+ }
+ },
+ {
+ "@id": "schema:subTest",
"@type": "rdf:Property",
- "rdfs:comment": "The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html).",
- "rdfs:label": "publicationType",
+ "rdfs:comment": "A component test of the panel.",
+ "rdfs:label": "subTest",
"schema:domainIncludes": {
- "@id": "schema:MedicalScholarlyArticle"
+ "@id": "schema:MedicalTestPanel"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:MedicalTest"
}
},
{
- "@id": "schema:advanceBookingRequirement",
- "@type": "rdf:Property",
- "rdfs:comment": "The amount of time that is required between accepting the offer and the actual usage of the resource or service.",
- "rdfs:label": "advanceBookingRequirement",
- "schema:domainIncludes": [
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:Offer"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "schema:BodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A body of water, such as a sea, ocean, or lake.",
+ "rdfs:label": "BodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:Landform"
}
},
{
- "@id": "schema:partOfSystem",
- "@type": "rdf:Property",
- "rdfs:comment": "The anatomical or organ system that this structure is part of.",
- "rdfs:label": "partOfSystem",
- "schema:domainIncludes": {
- "@id": "schema:AnatomicalStructure"
- },
+ "@id": "schema:Registry",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "A registry-based study design.",
+ "rdfs:label": "Registry",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:AnatomicalSystem"
}
},
{
- "@id": "schema:priceSpecification",
- "@type": "rdf:Property",
- "rdfs:comment": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
- "rdfs:label": "priceSpecification",
- "schema:domainIncludes": [
- {
- "@id": "schema:Demand"
- },
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:TradeAction"
- }
- ],
- "schema:rangeIncludes": {
- "@id": "schema:PriceSpecification"
+ "@id": "schema:ActivationFee",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the activation fee part of the total price for an offered product, for example a cellphone contract.",
+ "rdfs:label": "ActivationFee",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
}
},
{
- "@id": "schema:Suspended",
- "@type": "schema:MedicalStudyStatus",
- "rdfs:comment": "Suspended.",
- "rdfs:label": "Suspended",
+ "@id": "schema:LaboratoryScience",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A medical science pertaining to chemical, hematological, immunologic, microscopic, or bacteriological diagnostic analyses or research.",
+ "rdfs:label": "LaboratoryScience",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:EBook",
- "@type": "schema:BookFormatType",
- "rdfs:comment": "Book format: Ebook.",
- "rdfs:label": "EBook"
+ "@id": "schema:videoFrameSize",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The frame size of the video.",
+ "rdfs:label": "videoFrameSize",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoObject"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
},
{
- "@id": "schema:Vessel",
- "@type": "rdfs:Class",
- "rdfs:comment": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.",
- "rdfs:label": "Vessel",
- "rdfs:subClassOf": {
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:boardingGroup",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The airline-specific indicator of boarding order / preference.",
+ "rdfs:label": "boardingGroup",
+ "schema:domainIncludes": {
+ "@id": "schema:FlightReservation"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:associatedPathophysiology",
+ "@id": "schema:returnPolicyCountry",
"@type": "rdf:Property",
- "rdfs:comment": "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.",
- "rdfs:label": "associatedPathophysiology",
- "schema:domainIncludes": [
+ "rdfs:comment": "The country where the product has to be sent to for returns, for example \"Ireland\" using the [[name]] property of [[Country]]. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). Note that this can be different from the country where the product was originally shipped from or sent to.",
+ "rdfs:label": "returnPolicyCountry",
+ "schema:domainIncludes": {
+ "@id": "schema:MerchantReturnPolicy"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:Country"
},
{
- "@id": "schema:SuperficialAnatomy"
+ "@id": "schema:Text"
+ }
+ ],
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
+ }
+ },
+ {
+ "@id": "schema:image",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].",
+ "rdfs:label": "image",
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:URL"
},
{
- "@id": "schema:AnatomicalSystem"
+ "@id": "schema:ImageObject"
}
- ],
+ ]
+ },
+ {
+ "@id": "schema:SafetyHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the safety-related aspects of a health topic.",
+ "rdfs:label": "SafetyHealthAspect",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2799"
+ }
+ },
+ {
+ "@id": "schema:Map",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A map.",
+ "rdfs:label": "Map",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:Florist",
+ "@id": "schema:PostalAddress",
"@type": "rdfs:Class",
- "rdfs:comment": "A florist.",
- "rdfs:label": "Florist",
+ "rdfs:comment": "The mailing address.",
+ "rdfs:label": "PostalAddress",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:ContactPoint"
}
},
{
- "@id": "schema:Psychiatric",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.",
- "rdfs:label": "Psychiatric",
+ "@id": "schema:JobPosting",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A listing that describes a job opening in a certain organization.",
+ "rdfs:label": "JobPosting",
"rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:playerType",
+ "@id": "schema:dateline",
"@type": "rdf:Property",
- "rdfs:comment": "Player type required—for example, Flash or Silverlight.",
- "rdfs:label": "playerType",
+ "rdfs:comment": "A [dateline](https://en.wikipedia.org/wiki/Dateline) is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.\n\nStructured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created, e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].\n\nDateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".\n ",
+ "rdfs:label": "dateline",
"schema:domainIncludes": {
- "@id": "schema:MediaObject"
+ "@id": "schema:NewsArticle"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:sugarContent",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of grams of sugar.",
- "rdfs:label": "sugarContent",
- "schema:domainIncludes": {
- "@id": "schema:NutritionInformation"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Mass"
+ "@id": "schema:DonateAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.",
+ "rdfs:label": "DonateAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:TradeAction"
}
},
{
- "@id": "schema:monoisotopicMolecularWeight",
- "@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/MolecularEntity"
- },
- "rdfs:comment": "The monoisotopic mass is the sum of the masses of the atoms in a molecule using the unbound, ground-state, rest mass of the principal (most abundant) isotope for each element instead of the isotopic average mass. Please include the units the form '<Number> <unit>', for example '770.230488 g/mol' or as '<QuantitativeValue>.",
- "rdfs:label": "monoisotopicMolecularWeight",
- "schema:domainIncludes": {
- "@id": "schema:MolecularEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:QuantitativeValue"
- }
- ]
+ "@id": "schema:GlutenFreeDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet exclusive of gluten.",
+ "rdfs:label": "GlutenFreeDiet"
},
{
- "@id": "schema:isEncodedByBioChemEntity",
+ "@id": "schema:DrawAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.",
+ "rdfs:label": "DrawAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
+ }
+ },
+ {
+ "@id": "schema:pregnancyCategory",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/Gene"
- },
- "rdfs:comment": "Another BioChemEntity encoding by this one.",
- "rdfs:label": "isEncodedByBioChemEntity",
+ "rdfs:comment": "Pregnancy category of this drug.",
+ "rdfs:label": "pregnancyCategory",
"schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
- },
- "schema:inverseOf": {
- "@id": "schema:encodesBioChemEntity"
+ "@id": "schema:Drug"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Gene"
+ "@id": "schema:DrugPregnancyCategory"
}
},
{
- "@id": "schema:MaximumDoseSchedule",
- "@type": "rdfs:Class",
- "rdfs:comment": "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
- "rdfs:label": "MaximumDoseSchedule",
- "rdfs:subClassOf": {
- "@id": "schema:DoseSchedule"
+ "@id": "schema:replacer",
+ "@type": "rdf:Property",
+ "rdfs:comment": "A sub property of object. The object that replaces.",
+ "rdfs:label": "replacer",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:object"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- }
- },
- {
- "@id": "schema:Virus",
- "@type": "schema:InfectiousAgentClass",
- "rdfs:comment": "Pathogenic virus that causes viral infection.",
- "rdfs:label": "Virus",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:domainIncludes": {
+ "@id": "schema:ReplaceAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:ineligibleRegion",
+ "@id": "schema:numberOfEpisodes",
"@type": "rdf:Property",
- "rdfs:comment": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.\\n\\nSee also [[eligibleRegion]].\n ",
- "rdfs:label": "ineligibleRegion",
+ "rdfs:comment": "The number of episodes in this season or series.",
+ "rdfs:label": "numberOfEpisodes",
"schema:domainIncludes": [
{
- "@id": "schema:ActionAccessSpecification"
- },
- {
- "@id": "schema:DeliveryChargeSpecification"
- },
- {
- "@id": "schema:Offer"
- },
- {
- "@id": "schema:Demand"
+ "@id": "schema:RadioSeries"
},
{
- "@id": "schema:MediaObject"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Place"
+ "@id": "schema:VideoGameSeries"
},
{
- "@id": "schema:GeoShape"
+ "@id": "schema:TVSeries"
},
{
- "@id": "schema:Text"
+ "@id": "schema:CreativeWorkSeason"
}
],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2242"
+ "schema:rangeIncludes": {
+ "@id": "schema:Integer"
}
},
{
- "@id": "schema:touristType",
+ "@id": "schema:directors",
"@type": "rdf:Property",
- "rdfs:comment": "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc. ",
- "rdfs:label": "touristType",
+ "rdfs:comment": "A director of e.g. TV, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
+ "rdfs:label": "directors",
"schema:domainIncludes": [
{
- "@id": "schema:TouristDestination"
+ "@id": "schema:VideoObject"
},
{
- "@id": "schema:TouristAttraction"
+ "@id": "schema:TVSeries"
},
{
- "@id": "schema:TouristTrip"
- }
- ],
- "schema:rangeIncludes": [
+ "@id": "schema:Clip"
+ },
{
- "@id": "schema:Text"
+ "@id": "schema:Movie"
},
{
- "@id": "schema:Audience"
- }
- ],
- "schema:source": [
+ "@id": "schema:MovieSeries"
+ },
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#IIT-CNR.it"
+ "@id": "schema:RadioSeries"
},
{
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Tourism"
- }
- ]
- },
- {
- "@id": "schema:EventMovedOnline",
- "@type": "schema:EventStatusType",
- "rdfs:comment": "Indicates that the event was changed to allow online participation. See [[eventAttendanceMode]] for specifics of whether it is now fully or partially online.",
- "rdfs:label": "EventMovedOnline"
- },
- {
- "@id": "schema:MovieTheater",
- "@type": "rdfs:Class",
- "rdfs:comment": "A movie theater.",
- "rdfs:label": "MovieTheater",
- "rdfs:subClassOf": [
+ "@id": "schema:Episode"
+ },
{
- "@id": "schema:CivicStructure"
+ "@id": "schema:VideoGame"
},
{
- "@id": "schema:EntertainmentBusiness"
+ "@id": "schema:VideoGameSeries"
}
- ]
- },
- {
- "@id": "schema:PlaceOfWorship",
- "@type": "rdfs:Class",
- "rdfs:comment": "Place of worship, such as a church, synagogue, or mosque.",
- "rdfs:label": "PlaceOfWorship",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:director"
}
},
{
- "@id": "schema:TelevisionChannel",
- "@type": "rdfs:Class",
- "rdfs:comment": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.",
- "rdfs:label": "TelevisionChannel",
- "rdfs:subClassOf": {
- "@id": "schema:BroadcastChannel"
+ "@id": "schema:arrivalGate",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Identifier of the flight's arrival gate.",
+ "rdfs:label": "arrivalGate",
+ "schema:domainIncludes": {
+ "@id": "schema:Flight"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:transcript",
+ "@id": "schema:naics",
"@type": "rdf:Property",
- "rdfs:comment": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.",
- "rdfs:label": "transcript",
+ "rdfs:comment": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
+ "rdfs:label": "naics",
"schema:domainIncludes": [
{
- "@id": "schema:AudioObject"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:VideoObject"
+ "@id": "schema:Person"
}
],
"schema:rangeIncludes": {
"@id": "schema:Text"
- }
- },
- {
- "@id": "schema:EntryPoint",
- "@type": "rdfs:Class",
- "rdfs:comment": "An entry point, within some Web-based protocol.",
- "rdfs:label": "EntryPoint",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:Paperback",
- "@type": "schema:BookFormatType",
- "rdfs:comment": "Book format: Paperback.",
- "rdfs:label": "Paperback"
- },
- {
- "@id": "schema:median",
+ "@id": "schema:lyricist",
"@type": "rdf:Property",
- "rdfs:comment": "The median value.",
- "rdfs:label": "median",
+ "rdfs:comment": "The person who wrote the words.",
+ "rdfs:label": "lyricist",
"schema:domainIncludes": {
- "@id": "schema:QuantitativeValueDistribution"
+ "@id": "schema:MusicComposition"
},
"schema:rangeIncludes": {
- "@id": "schema:Number"
+ "@id": "schema:Person"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
}
},
{
- "@id": "schema:archivedAt",
+ "@id": "schema:endDate",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.",
- "rdfs:label": "archivedAt",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).",
+ "rdfs:label": "endDate",
+ "schema:domainIncludes": [
{
- "@id": "schema:WebPage"
+ "@id": "schema:CreativeWorkSeason"
},
{
- "@id": "schema:URL"
- }
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
- }
- },
- {
- "@id": "schema:courseMode",
- "@type": "rdf:Property",
- "rdfs:comment": "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).",
- "rdfs:label": "courseMode",
- "schema:domainIncludes": {
- "@id": "schema:CourseInstance"
- },
- "schema:rangeIncludes": [
+ "@id": "schema:MerchantReturnPolicySeasonalOverride"
+ },
{
- "@id": "schema:URL"
+ "@id": "schema:EducationalOccupationalProgram"
},
{
- "@id": "schema:Text"
- }
- ]
- },
- {
- "@id": "schema:eligibleQuantity",
- "@type": "rdf:Property",
- "rdfs:comment": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.",
- "rdfs:label": "eligibleQuantity",
- "schema:domainIncludes": [
+ "@id": "schema:CreativeWorkSeries"
+ },
{
- "@id": "schema:PriceSpecification"
+ "@id": "schema:DatedMoneySpecification"
},
{
- "@id": "schema:Demand"
+ "@id": "schema:Role"
},
{
- "@id": "schema:Offer"
+ "@id": "schema:Schedule"
+ },
+ {
+ "@id": "schema:Event"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:DateTime"
+ },
+ {
+ "@id": "schema:Date"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
- }
- },
- {
- "@id": "schema:PreventionIndication",
- "@type": "rdfs:Class",
- "rdfs:comment": "An indication for preventing an underlying condition, symptom, etc.",
- "rdfs:label": "PreventionIndication",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalIndication"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2486"
}
},
{
- "@id": "schema:broker",
+ "@id": "schema:location",
"@type": "rdf:Property",
- "rdfs:comment": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
- "rdfs:label": "broker",
+ "rdfs:comment": "The location of, for example, where an event is happening, where an organization is located, or where an action takes place.",
+ "rdfs:label": "location",
"schema:domainIncludes": [
{
- "@id": "schema:Invoice"
+ "@id": "schema:Action"
},
{
- "@id": "schema:Order"
+ "@id": "schema:Event"
},
{
- "@id": "schema:Reservation"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Service"
+ "@id": "schema:InteractionCounter"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Place"
},
{
- "@id": "schema:Person"
- }
- ]
- },
- {
- "@id": "schema:isLocatedInSubcellularLocation",
- "@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/BioChemEntity"
- },
- "rdfs:comment": "Subcellular location where this BioChemEntity is located; please use PropertyValue if you want to include any evidence.",
- "rdfs:label": "isLocatedInSubcellularLocation",
- "schema:domainIncludes": {
- "@id": "schema:BioChemEntity"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:DefinedTerm"
+ "@id": "schema:Text"
},
{
- "@id": "schema:URL"
+ "@id": "schema:VirtualLocation"
},
{
- "@id": "schema:PropertyValue"
+ "@id": "schema:PostalAddress"
}
]
},
{
- "@id": "schema:GolfCourse",
+ "@id": "schema:OrderDelivered",
+ "@type": "schema:OrderStatus",
+ "rdfs:comment": "OrderStatus representing successful delivery of an order.",
+ "rdfs:label": "OrderDelivered"
+ },
+ {
+ "@id": "schema:ExerciseGym",
"@type": "rdfs:Class",
- "rdfs:comment": "A golf course.",
- "rdfs:label": "GolfCourse",
+ "rdfs:comment": "A gym.",
+ "rdfs:label": "ExerciseGym",
"rdfs:subClassOf": {
"@id": "schema:SportsActivityLocation"
}
},
{
- "@id": "schema:BusinessFunction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#ConstructionInstallation\\n* http://purl.org/goodrelations/v1#Dispose\\n* http://purl.org/goodrelations/v1#LeaseOut\\n* http://purl.org/goodrelations/v1#Maintain\\n* http://purl.org/goodrelations/v1#ProvideService\\n* http://purl.org/goodrelations/v1#Repair\\n* http://purl.org/goodrelations/v1#Sell\\n* http://purl.org/goodrelations/v1#Buy\n ",
- "rdfs:label": "BusinessFunction",
- "rdfs:subClassOf": {
- "@id": "schema:Enumeration"
+ "@id": "schema:ReturnInStore",
+ "@type": "schema:ReturnMethodEnumeration",
+ "rdfs:comment": "Specifies that product returns must be made in a store.",
+ "rdfs:label": "ReturnInStore",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:inBroadcastLineup",
+ "@id": "schema:applicationStartDate",
"@type": "rdf:Property",
- "rdfs:comment": "The CableOrSatelliteService offering the channel.",
- "rdfs:label": "inBroadcastLineup",
+ "rdfs:comment": "The date at which the program begins collecting applications for the next enrollment cycle.",
+ "rdfs:label": "applicationStartDate",
"schema:domainIncludes": {
- "@id": "schema:BroadcastChannel"
+ "@id": "schema:EducationalOccupationalProgram"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:CableOrSatelliteService"
+ "@id": "schema:Date"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2419"
}
},
{
- "@id": "schema:OrderCancelled",
- "@type": "schema:OrderStatus",
- "rdfs:comment": "OrderStatus representing cancellation of an order.",
- "rdfs:label": "OrderCancelled"
+ "@id": "schema:suggestedAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The age or age range for the intended audience or person, for example 3-12 months for infants, 1-5 years for toddlers.",
+ "rdfs:label": "suggestedAge",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:SizeSpecification"
+ },
+ {
+ "@id": "schema:PeopleAudience"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
},
{
- "@id": "schema:Schedule",
+ "@id": "schema:AddAction",
"@type": "rdfs:Class",
- "rdfs:comment": "A schedule defines a repeating time period used to describe a regularly occurring [[Event]]. At a minimum a schedule will specify [[repeatFrequency]] which describes the interval between occurences of the event. Additional information can be provided to specify the schedule more precisely.\n This includes identifying the day(s) of the week or month when the recurring event will take place, in addition to its start and end time. Schedules may also\n have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.",
- "rdfs:label": "Schedule",
+ "rdfs:comment": "The act of editing by adding an object to a collection.",
+ "rdfs:label": "AddAction",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:UpdateAction"
+ }
+ },
+ {
+ "@id": "schema:transcript",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.",
+ "rdfs:label": "transcript",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoObject"
+ },
+ {
+ "@id": "schema:AudioObject"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:addressRegion",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country).",
+ "rdfs:label": "addressRegion",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DefinedRegion"
+ },
+ {
+ "@id": "schema:PostalAddress"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ }
+ },
+ {
+ "@id": "schema:BenefitsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Content about the benefits and advantages of usage or utilization of topic.",
+ "rdfs:label": "BenefitsHealthAspect",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1457"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:Ear",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Ear function assessment with clinical examination.",
- "rdfs:label": "Ear",
+ "@id": "schema:firstAppearance",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates the first known occurrence of a [[Claim]] in some [[CreativeWork]].",
+ "rdfs:label": "firstAppearance",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:workExample"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Claim"
+ },
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1828"
}
},
{
- "@id": "schema:issn",
+ "@id": "schema:jobLocationType",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/ontology/bibo/issn"
+ "rdfs:comment": "A description of the job location (e.g. TELECOMMUTE for telecommute jobs).",
+ "rdfs:label": "jobLocationType",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
},
- "rdfs:comment": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
- "rdfs:label": "issn",
- "rdfs:subPropertyOf": {
- "@id": "schema:identifier"
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:domainIncludes": [
- {
- "@id": "schema:Blog"
- },
- {
- "@id": "schema:WebSite"
- },
- {
- "@id": "schema:CreativeWorkSeries"
- },
- {
- "@id": "schema:Dataset"
- }
- ],
"schema:rangeIncludes": {
"@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1591"
}
},
{
- "@id": "schema:CharitableIncorporatedOrganization",
- "@type": "schema:UKNonprofitType",
- "rdfs:comment": "CharitableIncorporatedOrganization: Non-profit type referring to a Charitable Incorporated Organization (UK).",
- "rdfs:label": "CharitableIncorporatedOrganization",
+ "@id": "schema:Therapeutic",
+ "@type": "schema:MedicalDevicePurpose",
+ "rdfs:comment": "A medical device used for therapeutic purposes.",
+ "rdfs:label": "Therapeutic",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:LegislativeBuilding",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A legislative building—for example, the state capitol.",
+ "rdfs:label": "LegislativeBuilding",
+ "rdfs:subClassOf": {
+ "@id": "schema:GovernmentBuilding"
+ }
+ },
+ {
+ "@id": "schema:icaoCode",
+ "@type": "rdf:Property",
+ "rdfs:comment": "ICAO identifier for an airport.",
+ "rdfs:label": "icaoCode",
+ "schema:domainIncludes": {
+ "@id": "schema:Airport"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:isrcCode",
+ "@id": "schema:vehicleConfiguration",
"@type": "rdf:Property",
- "rdfs:comment": "The International Standard Recording Code for the recording.",
- "rdfs:label": "isrcCode",
+ "rdfs:comment": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.",
+ "rdfs:label": "vehicleConfiguration",
"schema:domainIncludes": {
- "@id": "schema:MusicRecording"
+ "@id": "schema:Vehicle"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:warrantyPromise",
- "@type": "rdf:Property",
- "rdfs:comment": "The warranty promise(s) included in the offer.",
- "rdfs:label": "warrantyPromise",
- "schema:domainIncludes": [
+ "@id": "schema:DefinitiveLegalValue",
+ "@type": "schema:LegalValueLevel",
+ "rdfs:comment": "Indicates a document for which the text is conclusively what the law says and is legally binding. (E.g. the digitally signed version of an Official Journal.)\n Something \"Definitive\" is considered to be also [[AuthoritativeLegalValue]].",
+ "rdfs:label": "DefinitiveLegalValue",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:SellAction"
+ "@id": "http://publications.europa.eu/mdr/eli/index.html"
},
{
- "@id": "schema:BuyAction"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:WarrantyPromise"
+ "skos:exactMatch": {
+ "@id": "http://data.europa.eu/eli/ontology#LegalValue-definitive"
+ }
+ },
+ {
+ "@id": "schema:ShoeStore",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A shoe store.",
+ "rdfs:label": "ShoeStore",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
+ }
+ },
+ {
+ "@id": "schema:MedicalRiskEstimator",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Any rule set or interactive tool for estimating the risk of developing a complication or condition.",
+ "rdfs:label": "MedicalRiskEstimator",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalEntity"
},
- "schema:supersededBy": {
- "@id": "schema:warranty"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:itemReviewed",
+ "@id": "schema:hasMenuItem",
"@type": "rdf:Property",
- "rdfs:comment": "The item that is being reviewed/rated.",
- "rdfs:label": "itemReviewed",
+ "rdfs:comment": "A food or drink item contained in a menu or menu section.",
+ "rdfs:label": "hasMenuItem",
"schema:domainIncludes": [
{
- "@id": "schema:AggregateRating"
+ "@id": "schema:MenuSection"
},
{
- "@id": "schema:Review"
+ "@id": "schema:Menu"
}
],
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:MenuItem"
}
},
{
- "@id": "schema:Volcano",
+ "@id": "schema:FurnitureStore",
"@type": "rdfs:Class",
- "rdfs:comment": "A volcano, like Fuji san.",
- "rdfs:label": "Volcano",
+ "rdfs:comment": "A furniture store.",
+ "rdfs:label": "FurnitureStore",
"rdfs:subClassOf": {
- "@id": "schema:Landform"
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:AchieveAction",
- "@type": "rdfs:Class",
- "rdfs:comment": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.",
- "rdfs:label": "AchieveAction",
- "rdfs:subClassOf": {
- "@id": "schema:Action"
+ "@id": "schema:name",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "dcterms:title"
+ },
+ "rdfs:comment": "The name of the item.",
+ "rdfs:label": "name",
+ "rdfs:subPropertyOf": {
+ "@id": "rdfs:label"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:DeliveryEvent",
+ "@id": "schema:MusicVideoObject",
"@type": "rdfs:Class",
- "rdfs:comment": "An event involving the delivery of an item.",
- "rdfs:label": "DeliveryEvent",
+ "rdfs:comment": "A music video file.",
+ "rdfs:label": "MusicVideoObject",
"rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:MediaObject"
}
},
{
- "@id": "schema:encoding",
+ "@id": "schema:participant",
"@type": "rdf:Property",
- "rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.",
- "rdfs:label": "encoding",
+ "rdfs:comment": "Other co-agents that participated in the action indirectly. E.g. John wrote a book with *Steve*.",
+ "rdfs:label": "participant",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Action"
},
- "schema:inverseOf": {
- "@id": "schema:encodesCreativeWork"
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:DrugLegalStatus",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The legal availability status of a medical drug.",
+ "rdfs:label": "DrugLegalStatus",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalIntangible"
},
- "schema:rangeIncludes": {
- "@id": "schema:MediaObject"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:interactivityType",
+ "@id": "schema:multipleValues",
"@type": "rdf:Property",
- "rdfs:comment": "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.",
- "rdfs:label": "interactivityType",
+ "rdfs:comment": "Whether multiple values are allowed for the property. Default is false.",
+ "rdfs:label": "multipleValues",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:PropertyValueSpecification"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Boolean"
}
},
{
- "@id": "schema:legalStatus",
+ "@id": "schema:maximumIntake",
"@type": "rdf:Property",
- "rdfs:comment": "The drug or supplement's legal status, including any controlled substance schedules that apply.",
- "rdfs:label": "legalStatus",
+ "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
+ "rdfs:label": "maximumIntake",
"schema:domainIncludes": [
{
"@id": "schema:DietarySupplement"
},
{
- "@id": "schema:Drug"
+ "@id": "schema:Substance"
},
{
- "@id": "schema:MedicalEntity"
+ "@id": "schema:DrugStrength"
+ },
+ {
+ "@id": "schema:Drug"
}
],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
- "schema:rangeIncludes": [
+ "schema:rangeIncludes": {
+ "@id": "schema:MaximumDoseSchedule"
+ }
+ },
+ {
+ "@id": "schema:musicArrangement",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An arrangement derived from the composition.",
+ "rdfs:label": "musicArrangement",
+ "schema:domainIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MusicComposition"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:pageStart",
+ "@type": "rdf:Property",
+ "owl:equivalentProperty": {
+ "@id": "http://purl.org/ontology/bibo/pageStart"
+ },
+ "rdfs:comment": "The page on which the work starts; for example \"135\" or \"xiii\".",
+ "rdfs:label": "pageStart",
+ "schema:domainIncludes": [
{
- "@id": "schema:MedicalEnumeration"
+ "@id": "schema:Chapter"
},
{
- "@id": "schema:DrugLegalStatus"
+ "@id": "schema:Article"
},
{
- "@id": "schema:Text"
- }
- ]
- },
- {
- "@id": "schema:HowToStep",
- "@type": "rdfs:Class",
- "rdfs:comment": "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.",
- "rdfs:label": "HowToStep",
- "rdfs:subClassOf": [
- {
- "@id": "schema:ItemList"
+ "@id": "schema:PublicationVolume"
},
{
- "@id": "schema:ListItem"
+ "@id": "schema:PublicationIssue"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:Integer"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:Text"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
+ }
},
{
- "@id": "schema:RightHandDriving",
- "@type": "schema:SteeringPositionValue",
- "rdfs:comment": "The steering position is on the right side of the vehicle (viewed from the main direction of driving).",
- "rdfs:label": "RightHandDriving",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "schema:TireShop",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A tire shop.",
+ "rdfs:label": "TireShop",
+ "rdfs:subClassOf": {
+ "@id": "schema:Store"
}
},
{
- "@id": "schema:hasCourse",
+ "@id": "schema:risks",
"@type": "rdf:Property",
- "rdfs:comment": "A course or class that is one of the learning opportunities that constitute an educational / occupational program. No information is implied about whether the course is mandatory or optional; no guarantee is implied about whether the course will be available to everyone on the program.",
- "rdfs:label": "hasCourse",
+ "rdfs:comment": "Specific physiologic risks associated to the diet plan.",
+ "rdfs:label": "risks",
"schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalProgram"
+ "@id": "schema:Diet"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Course"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2483"
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:possibleComplication",
+ "@id": "schema:tongueWeight",
"@type": "rdf:Property",
- "rdfs:comment": "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.",
- "rdfs:label": "possibleComplication",
+ "rdfs:comment": "The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR).\\n\\nTypical unit code(s): KGM for kilogram, LBR for pound\\n\\n* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.\\n* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].\\n* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges.",
+ "rdfs:label": "tongueWeight",
"schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
+ "@id": "schema:Vehicle"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://auto.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:isProprietary",
+ "@id": "schema:eligibleCustomerType",
"@type": "rdf:Property",
- "rdfs:comment": "True if this item's name is a proprietary/brand name (vs. generic name).",
- "rdfs:label": "isProprietary",
+ "rdfs:comment": "The type(s) of customers for which the given offer is valid.",
+ "rdfs:label": "eligibleCustomerType",
"schema:domainIncludes": [
{
- "@id": "schema:DietarySupplement"
+ "@id": "schema:Offer"
},
{
- "@id": "schema:Drug"
+ "@id": "schema:Demand"
}
],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:BusinessEntityType"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
+ },
+ {
+ "@id": "schema:hasPart",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).",
+ "rdfs:label": "hasPart",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
+ "schema:inverseOf": {
+ "@id": "schema:isPartOf"
},
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:caption",
+ "@id": "schema:numberOfEmployees",
"@type": "rdf:Property",
- "rdfs:comment": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]].",
- "rdfs:label": "caption",
+ "rdfs:comment": "The number of employees in an organization, e.g. business.",
+ "rdfs:label": "numberOfEmployees",
"schema:domainIncludes": [
{
- "@id": "schema:VideoObject"
- },
- {
- "@id": "schema:AudioObject"
+ "@id": "schema:BusinessAudience"
},
{
- "@id": "schema:ImageObject"
+ "@id": "schema:Organization"
}
],
- "schema:rangeIncludes": [
- {
- "@id": "schema:MediaObject"
- },
- {
- "@id": "schema:Text"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ }
},
{
- "@id": "schema:spatial",
+ "@id": "schema:productGroupID",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/dc/terms/spatial"
- },
- "rdfs:comment": "The \"spatial\" property can be used in cases when more specific properties\n(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.",
- "rdfs:label": "spatial",
+ "rdfs:comment": "Indicates a textual identifier for a ProductGroup.",
+ "rdfs:label": "productGroupID",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:ProductGroup"
},
- "schema:rangeIncludes": {
- "@id": "schema:Place"
- }
- },
- {
- "@id": "schema:BodyMeasurementUnderbust",
- "@type": "schema:BodyMeasurementTypeEnumeration",
- "rdfs:comment": "Girth of body just below the bust. Used, for example, to fit women's swimwear.",
- "rdfs:label": "BodyMeasurementUnderbust",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
}
},
{
- "@id": "schema:UserDownloads",
- "@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserDownloads",
- "rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
+ "@id": "schema:recommendedIntake",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
+ "rdfs:label": "recommendedIntake",
+ "schema:domainIncludes": {
+ "@id": "schema:DietarySupplement"
},
- "schema:supersededBy": {
- "@id": "schema:InteractionCounter"
- }
- },
- {
- "@id": "schema:BasicIncome",
- "@type": "schema:GovernmentBenefitsType",
- "rdfs:comment": "BasicIncome: this is a benefit for basic income.",
- "rdfs:label": "BasicIncome",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2534"
+ "schema:rangeIncludes": {
+ "@id": "schema:RecommendedDoseSchedule"
}
},
{
- "@id": "schema:RsvpAction",
+ "@id": "schema:PublicationIssue",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of notifying an event organizer as to whether you expect to attend the event.",
- "rdfs:label": "RsvpAction",
+ "owl:equivalentClass": {
+ "@id": "http://purl.org/ontology/bibo/Issue"
+ },
+ "rdfs:comment": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).",
+ "rdfs:label": "PublicationIssue",
"rdfs:subClassOf": {
- "@id": "schema:InformAction"
+ "@id": "schema:CreativeWork"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
}
},
{
- "@id": "schema:orderItemStatus",
- "@type": "rdf:Property",
- "rdfs:comment": "The current status of the order item.",
- "rdfs:label": "orderItemStatus",
- "schema:domainIncludes": {
- "@id": "schema:OrderItem"
- },
- "schema:rangeIncludes": {
- "@id": "schema:OrderStatus"
+ "@id": "schema:Service",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A service provided by an organization, e.g. delivery service, print services, etc.",
+ "rdfs:label": "Service",
+ "rdfs:subClassOf": {
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:potentialUse",
- "@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/ChemicalSubstance"
+ "@id": "schema:Obstetric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.",
+ "rdfs:label": "Obstetric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
},
- "rdfs:comment": "Intended use of the BioChemEntity by humans.",
- "rdfs:label": "potentialUse",
- "schema:domainIncludes": [
- {
- "@id": "schema:MolecularEntity"
- },
- {
- "@id": "schema:ChemicalSubstance"
- }
- ],
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:DefinedTerm"
- }
- },
- {
- "@id": "schema:AllWheelDriveConfiguration",
- "@type": "schema:DriveWheelConfigurationValue",
- "rdfs:comment": "All-wheel Drive is a transmission layout where the engine drives all four wheels.",
- "rdfs:label": "AllWheelDriveConfiguration",
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:postalCodeBegin",
- "@type": "rdf:Property",
- "rdfs:comment": "First postal code in a range (included).",
- "rdfs:label": "postalCodeBegin",
- "schema:domainIncludes": {
- "@id": "schema:PostalCodeRangeSpecification"
- },
+ "@id": "schema:Nonprofit501c13",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c13: Non-profit type referring to Cemetery Companies.",
+ "rdfs:label": "Nonprofit501c13",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:MonetaryAmount",
+ "@id": "schema:Mountain",
"@type": "rdfs:Class",
- "rdfs:comment": "A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between £1,000 and £1,000,000 GBP, or the value of a salary, etc. It is recommended to use [[PriceSpecification]] Types to describe the price of an Offer, Invoice, etc.",
- "rdfs:label": "MonetaryAmount",
+ "rdfs:comment": "A mountain, like Mount Whitney or Mount Everest.",
+ "rdfs:label": "Mountain",
"rdfs:subClassOf": {
- "@id": "schema:StructuredValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO"
+ "@id": "schema:Landform"
}
},
{
- "@id": "schema:countryOfAssembly",
- "@type": "rdf:Property",
- "rdfs:comment": "The place where the product was assembled.",
- "rdfs:label": "countryOfAssembly",
- "schema:domainIncludes": {
- "@id": "schema:Product"
+ "@id": "schema:Pediatric",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "A specific branch of medical science that specializes in the care of infants, children and adolescents.",
+ "rdfs:label": "Pediatric",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalBusiness"
},
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:Nonprofit501c14",
+ "@type": "schema:USNonprofitType",
+ "rdfs:comment": "Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds.",
+ "rdfs:label": "Nonprofit501c14",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/991"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
}
},
{
- "@id": "schema:arrivalAirport",
+ "@id": "schema:yearsInOperation",
"@type": "rdf:Property",
- "rdfs:comment": "The airport where the flight terminates.",
- "rdfs:label": "arrivalAirport",
+ "rdfs:comment": "The age of the business.",
+ "rdfs:label": "yearsInOperation",
"schema:domainIncludes": {
- "@id": "schema:Flight"
+ "@id": "schema:BusinessAudience"
},
"schema:rangeIncludes": {
- "@id": "schema:Airport"
+ "@id": "schema:QuantitativeValue"
}
},
{
- "@id": "schema:expressedIn",
+ "@id": "schema:itemListElement",
"@type": "rdf:Property",
- "http://purl.org/dc/terms/source": {
- "@id": "http://www.bioschemas.org/Gene"
- },
- "rdfs:comment": "Tissue, organ, biological sample, etc in which activity of this gene has been observed experimentally. For example brain, digestive system.",
- "rdfs:label": "expressedIn",
+ "rdfs:comment": "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\\n\\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\\n\\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.",
+ "rdfs:label": "itemListElement",
"schema:domainIncludes": {
- "@id": "schema:Gene"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:ItemList"
},
"schema:rangeIncludes": [
{
- "@id": "schema:DefinedTerm"
- },
- {
- "@id": "schema:AnatomicalSystem"
+ "@id": "schema:ListItem"
},
{
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:Text"
},
{
- "@id": "schema:BioChemEntity"
+ "@id": "schema:Thing"
}
]
},
{
- "@id": "schema:RefurbishedCondition",
- "@type": "schema:OfferItemCondition",
- "rdfs:comment": "Indicates that the item is refurbished.",
- "rdfs:label": "RefurbishedCondition"
- },
- {
- "@id": "schema:NailSalon",
- "@type": "rdfs:Class",
- "rdfs:comment": "A nail salon.",
- "rdfs:label": "NailSalon",
- "rdfs:subClassOf": {
- "@id": "schema:HealthAndBeautyBusiness"
- }
- },
- {
- "@id": "schema:Church",
+ "@id": "schema:Corporation",
"@type": "rdfs:Class",
- "rdfs:comment": "A church.",
- "rdfs:label": "Church",
+ "rdfs:comment": "Organization: A business corporation.",
+ "rdfs:label": "Corporation",
"rdfs:subClassOf": {
- "@id": "schema:PlaceOfWorship"
+ "@id": "schema:Organization"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
}
},
{
- "@id": "schema:lodgingUnitType",
+ "@id": "schema:gtin13",
"@type": "rdf:Property",
- "rdfs:comment": "Textual description of the unit type (including suite vs. room, size of bed, etc.).",
- "rdfs:label": "lodgingUnitType",
- "schema:domainIncludes": {
- "@id": "schema:LodgingReservation"
- },
- "schema:rangeIncludes": [
+ "rdfs:comment": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.",
+ "rdfs:label": "gtin13",
+ "rdfs:subPropertyOf": [
{
- "@id": "schema:QualitativeValue"
+ "@id": "schema:gtin"
},
{
- "@id": "schema:Text"
+ "@id": "schema:identifier"
}
- ]
- },
- {
- "@id": "schema:Gene",
- "@type": "rdfs:Class",
- "http://purl.org/dc/terms/source": {
- "@id": "http://bioschemas.org"
- },
- "rdfs:comment": "A discrete unit of inheritance which affects one or more biological traits (Source: [https://en.wikipedia.org/wiki/Gene](https://en.wikipedia.org/wiki/Gene)). Examples include FOXP2 (Forkhead box protein P2), SCARNA21 (small Cajal body-specific RNA 21), A- (agouti genotype).",
- "rdfs:label": "Gene",
- "rdfs:subClassOf": {
- "@id": "schema:BioChemEntity"
+ ],
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:ParcelDelivery",
+ "@id": "schema:RsvpAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The delivery of a parcel either via the postal service or a commercial service.",
- "rdfs:label": "ParcelDelivery",
+ "rdfs:comment": "The act of notifying an event organizer as to whether you expect to attend the event.",
+ "rdfs:label": "RsvpAction",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:InformAction"
}
},
{
- "@id": "schema:RsvpResponseMaybe",
- "@type": "schema:RsvpResponseType",
- "rdfs:comment": "The invitee may or may not attend.",
- "rdfs:label": "RsvpResponseMaybe"
+ "@id": "schema:suggestedMaxAge",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Maximum recommended age in years for the audience or user.",
+ "rdfs:label": "suggestedMaxAge",
+ "schema:domainIncludes": {
+ "@id": "schema:PeopleAudience"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ }
},
{
- "@id": "schema:ImageObjectSnapshot",
+ "@id": "schema:UserReview",
"@type": "rdfs:Class",
- "rdfs:comment": "A specific and exact (byte-for-byte) version of an [[ImageObject]]. Two byte-for-byte identical files, for the purposes of this type, considered identical. If they have different embedded metadata (e.g. XMP, EXIF) the files will differ. Different external facts about the files, e.g. creator or dateCreated that aren't represented in their actual content, do not affect this notion of identity.",
- "rdfs:label": "ImageObjectSnapshot",
+ "rdfs:comment": "A review created by an end-user (e.g. consumer, purchaser, attendee etc.), in contrast with [[CriticReview]].",
+ "rdfs:label": "UserReview",
"rdfs:subClassOf": {
- "@id": "schema:ImageObject"
+ "@id": "schema:Review"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1589"
}
},
{
- "@id": "schema:LibrarySystem",
+ "@id": "schema:DateTime",
+ "@type": [
+ "schema:DataType",
+ "rdfs:Class"
+ ],
+ "rdfs:comment": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).",
+ "rdfs:label": "DateTime"
+ },
+ {
+ "@id": "schema:PaymentAutomaticallyApplied",
+ "@type": "schema:PaymentStatusType",
+ "rdfs:comment": "An automatic payment system is in place and will be used.",
+ "rdfs:label": "PaymentAutomaticallyApplied"
+ },
+ {
+ "@id": "schema:Atlas",
"@type": "rdfs:Class",
- "rdfs:comment": "A [[LibrarySystem]] is a collaborative system amongst several libraries.",
- "rdfs:label": "LibrarySystem",
+ "rdfs:comment": "A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.",
+ "rdfs:label": "Atlas",
"rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "schema:CreativeWork"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://bib.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1495"
+ "@id": "http://www.productontology.org/id/Atlas"
}
},
{
- "@id": "schema:contentLocation",
- "@type": "rdf:Property",
- "rdfs:comment": "The location depicted or described in the content. For example, the location in a photograph or painting.",
- "rdfs:label": "contentLocation",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:PaintAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of producing a painting, typically with paint and canvas as instruments.",
+ "rdfs:label": "PaintAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreateAction"
}
},
{
- "@id": "schema:codingSystem",
+ "@id": "schema:hasDriveThroughService",
"@type": "rdf:Property",
- "rdfs:comment": "The coding system, e.g. 'ICD-10'.",
- "rdfs:label": "codingSystem",
+ "rdfs:comment": "Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users.",
+ "rdfs:label": "hasDriveThroughService",
"schema:domainIncludes": {
- "@id": "schema:MedicalCode"
+ "@id": "schema:Place"
},
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Text"
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
}
},
{
- "@id": "schema:parents",
+ "@id": "schema:responsibilities",
"@type": "rdf:Property",
- "rdfs:comment": "A parents of the person.",
- "rdfs:label": "parents",
- "schema:domainIncludes": {
- "@id": "schema:Person"
- },
+ "rdfs:comment": "Responsibilities associated with this role or Occupation.",
+ "rdfs:label": "responsibilities",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Occupation"
+ },
+ {
+ "@id": "schema:JobPosting"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:Text"
},
- "schema:supersededBy": {
- "@id": "schema:parent"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
}
},
{
- "@id": "schema:True",
- "@type": "schema:Boolean",
- "rdfs:comment": "The boolean value true.",
- "rdfs:label": "True"
- },
- {
- "@id": "schema:PaymentChargeSpecification",
+ "@id": "schema:OrderAction",
"@type": "rdfs:Class",
- "rdfs:comment": "The costs of settling the payment using a particular payment method.",
- "rdfs:label": "PaymentChargeSpecification",
+ "rdfs:comment": "An agent orders an object/product/service to be delivered/sent.",
+ "rdfs:label": "OrderAction",
"rdfs:subClassOf": {
- "@id": "schema:PriceSpecification"
+ "@id": "schema:TradeAction"
+ }
+ },
+ {
+ "@id": "schema:WearableSizeSystemDE",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "German size system for wearables.",
+ "rdfs:label": "WearableSizeSystemDE",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:tocEntry",
+ "@id": "schema:serialNumber",
"@type": "rdf:Property",
- "rdfs:comment": "Indicates a [[HyperTocEntry]] in a [[HyperToc]].",
- "rdfs:label": "tocEntry",
+ "rdfs:comment": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
+ "rdfs:label": "serialNumber",
"rdfs:subPropertyOf": {
- "@id": "schema:hasPart"
- },
- "schema:domainIncludes": {
- "@id": "schema:HyperToc"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:identifier"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:IndividualProduct"
+ },
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:HyperTocEntry"
+ "@id": "schema:Text"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2766"
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:SportsEvent",
+ "@id": "schema:Newspaper",
"@type": "rdfs:Class",
- "rdfs:comment": "Event type: Sports event.",
- "rdfs:label": "SportsEvent",
+ "rdfs:comment": "A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter (i.e. business, culture, education). Often published daily.",
+ "rdfs:label": "Newspaper",
"rdfs:subClassOf": {
- "@id": "schema:Event"
- }
- },
- {
- "@id": "schema:hasVariant",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates a [[Product]] that is a member of this [[ProductGroup]] (or [[ProductModel]]).",
- "rdfs:label": "hasVariant",
- "schema:domainIncludes": {
- "@id": "schema:ProductGroup"
- },
- "schema:inverseOf": {
- "@id": "schema:isVariantOf"
+ "@id": "schema:Periodical"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Product"
+ "@id": "https://bib.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1797"
+ "@id": "http://www.productontology.org/id/Newspaper"
}
},
{
- "@id": "schema:deliveryStatus",
- "@type": "rdf:Property",
- "rdfs:comment": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).",
- "rdfs:label": "deliveryStatus",
- "schema:domainIncludes": {
- "@id": "schema:ParcelDelivery"
+ "@id": "schema:RiverBodyOfWater",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A river (for example, the broad majestic Shannon).",
+ "rdfs:label": "RiverBodyOfWater",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:Question",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.",
+ "rdfs:label": "Question",
+ "rdfs:subClassOf": {
+ "@id": "schema:Comment"
},
- "schema:rangeIncludes": {
- "@id": "schema:DeliveryEvent"
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange"
}
},
{
- "@id": "schema:followee",
+ "@id": "schema:vendor",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. The person or organization being followed.",
- "rdfs:label": "followee",
+ "rdfs:comment": "'vendor' is an earlier term for 'seller'.",
+ "rdfs:label": "vendor",
"rdfs:subPropertyOf": {
- "@id": "schema:object"
+ "@id": "schema:participant"
},
"schema:domainIncludes": {
- "@id": "schema:FollowAction"
+ "@id": "schema:BuyAction"
},
"schema:rangeIncludes": [
{
@@ -40248,364 +40849,421 @@
{
"@id": "schema:Person"
}
- ]
+ ],
+ "schema:supersededBy": {
+ "@id": "schema:seller"
+ }
},
{
- "@id": "schema:ReserveAction",
+ "@id": "schema:DiagnosticLab",
"@type": "rdfs:Class",
- "rdfs:comment": "Reserving a concrete object.\\n\\nRelated actions:\\n\\n* [[ScheduleAction]]: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.",
- "rdfs:label": "ReserveAction",
+ "rdfs:comment": "A medical laboratory that offers on-site or off-site diagnostic services.",
+ "rdfs:label": "DiagnosticLab",
"rdfs:subClassOf": {
- "@id": "schema:PlanAction"
+ "@id": "schema:MedicalOrganization"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:supersededBy",
+ "@id": "schema:Paperback",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Paperback.",
+ "rdfs:label": "Paperback"
+ },
+ {
+ "@id": "schema:directApply",
"@type": "rdf:Property",
- "rdfs:comment": "Relates a term (i.e. a property, class or enumeration) to one that supersedes it.",
- "rdfs:label": "supersededBy",
- "schema:domainIncludes": [
- {
- "@id": "schema:Enumeration"
- },
- {
- "@id": "schema:Property"
- },
- {
- "@id": "schema:Class"
- }
- ],
+ "rdfs:comment": "Indicates whether an [[url]] that is associated with a [[JobPosting]] enables direct application for the job, via the posting website. A job posting is considered to have directApply of [[True]] if an application process for the specified job can be directly initiated via the url(s) given (noting that e.g. multiple internet domains might nevertheless be involved at an implementation level). A value of [[False]] is appropriate if there is no clear path to applying directly online for the specified job, navigating directly from the JobPosting url(s) supplied.",
+ "rdfs:label": "directApply",
+ "schema:domainIncludes": {
+ "@id": "schema:JobPosting"
+ },
"schema:isPartOf": {
- "@id": "https://meta.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": [
- {
- "@id": "schema:Class"
- },
- {
- "@id": "schema:Enumeration"
- },
- {
- "@id": "schema:Property"
- }
- ]
+ "schema:rangeIncludes": {
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2907"
+ }
},
{
- "@id": "schema:Playground",
+ "@id": "schema:LowCalorieDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet focused on reduced calorie intake.",
+ "rdfs:label": "LowCalorieDiet"
+ },
+ {
+ "@id": "schema:CheckoutPage",
"@type": "rdfs:Class",
- "rdfs:comment": "A playground.",
- "rdfs:label": "Playground",
+ "rdfs:comment": "Web page type: Checkout page.",
+ "rdfs:label": "CheckoutPage",
"rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
+ "@id": "schema:WebPage"
}
},
{
- "@id": "schema:copyrightHolder",
+ "@id": "schema:DemoAlbum",
+ "@type": "schema:MusicAlbumProductionType",
+ "rdfs:comment": "DemoAlbum.",
+ "rdfs:label": "DemoAlbum",
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#MBZ"
+ }
+ },
+ {
+ "@id": "schema:Resort",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A resort is a place used for relaxation or recreation, attracting visitors for holidays or vacations. Resorts are places, towns or sometimes commercial establishments operated by a single company (source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Resort).\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n ",
+ "rdfs:label": "Resort",
+ "rdfs:subClassOf": {
+ "@id": "schema:LodgingBusiness"
+ },
+ "schema:source": {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
+ }
+ },
+ {
+ "@id": "schema:dateIssued",
"@type": "rdf:Property",
- "rdfs:comment": "The party holding the legal copyright to the CreativeWork.",
- "rdfs:label": "copyrightHolder",
+ "rdfs:comment": "The date the ticket was issued.",
+ "rdfs:label": "dateIssued",
"schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Ticket"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Organization"
+ "@id": "schema:Date"
},
{
- "@id": "schema:Person"
+ "@id": "schema:DateTime"
}
]
},
{
- "@id": "schema:Casino",
- "@type": "rdfs:Class",
- "rdfs:comment": "A casino.",
- "rdfs:label": "Casino",
- "rdfs:subClassOf": {
- "@id": "schema:EntertainmentBusiness"
+ "@id": "schema:specialOpeningHoursSpecification",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The special opening hours of a certain place.\\n\\nUse this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].\n ",
+ "rdfs:label": "specialOpeningHoursSpecification",
+ "schema:domainIncludes": {
+ "@id": "schema:Place"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:OpeningHoursSpecification"
}
},
{
- "@id": "schema:credentialCategory",
- "@type": "rdf:Property",
- "rdfs:comment": "The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term.",
- "rdfs:label": "credentialCategory",
- "schema:domainIncludes": {
- "@id": "schema:EducationalOccupationalCredential"
+ "@id": "schema:NewsMediaOrganization",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A News/Media organization such as a newspaper or TV station.",
+ "rdfs:label": "NewsMediaOrganization",
+ "rdfs:subClassOf": {
+ "@id": "schema:Organization"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:DefinedTerm"
- },
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": [
{
- "@id": "schema:Text"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
},
{
- "@id": "schema:URL"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
- }
+ ]
},
{
- "@id": "schema:GameServer",
+ "@id": "schema:DefenceEstablishment",
"@type": "rdfs:Class",
- "rdfs:comment": "Server that provides game interaction in a multiplayer game.",
- "rdfs:label": "GameServer",
+ "rdfs:comment": "A defence establishment, such as an army or navy base.",
+ "rdfs:label": "DefenceEstablishment",
"rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:GovernmentBuilding"
}
},
{
- "@id": "schema:UKTrust",
- "@type": "schema:UKNonprofitType",
- "rdfs:comment": "UKTrust: Non-profit type referring to a UK trust.",
- "rdfs:label": "UKTrust",
+ "@id": "schema:MedicalGuidelineRecommendation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.",
+ "rdfs:label": "MedicalGuidelineRecommendation",
+ "rdfs:subClassOf": {
+ "@id": "schema:MedicalGuideline"
+ },
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:HotelRoom",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A hotel room is a single room in a hotel.\n
\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
+ "rdfs:label": "HotelRoom",
+ "rdfs:subClassOf": {
+ "@id": "schema:Room"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology"
}
},
{
- "@id": "schema:Observational",
- "@type": "schema:MedicalObservationalStudyDesign",
- "rdfs:comment": "An observational study design.",
- "rdfs:label": "Observational",
+ "@id": "schema:Infectious",
+ "@type": "schema:MedicalSpecialty",
+ "rdfs:comment": "Something in medical science that pertains to infectious diseases, i.e. caused by bacterial, viral, fungal or parasitic infections.",
+ "rdfs:label": "Infectious",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:GatedResidenceCommunity",
- "@type": "rdfs:Class",
- "rdfs:comment": "Residence type: Gated community.",
- "rdfs:label": "GatedResidenceCommunity",
- "rdfs:subClassOf": {
- "@id": "schema:Residence"
+ "@id": "schema:accelerationTime",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The time needed to accelerate the vehicle from a given start velocity to a given target velocity.\\n\\nTypical unit code(s): SEC for seconds\\n\\n* Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use \"SEC\" for seconds and indicate the velocities in the [[name]] of the [[QuantitativeValue]], or use [[valueReference]] with a [[QuantitativeValue]] of 0..60 mph or 0..100 km/h to specify the reference speeds.",
+ "rdfs:label": "accelerationTime",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:QuantitativeValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
}
},
{
- "@id": "schema:educationRequirements",
+ "@id": "schema:minValue",
"@type": "rdf:Property",
- "rdfs:comment": "Educational background needed for the position or Occupation.",
- "rdfs:label": "educationRequirements",
+ "rdfs:comment": "The lower value of some characteristic or property.",
+ "rdfs:label": "minValue",
"schema:domainIncludes": [
{
- "@id": "schema:JobPosting"
+ "@id": "schema:QuantitativeValue"
},
{
- "@id": "schema:Occupation"
- }
- ],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
+ "@id": "schema:PropertyValueSpecification"
},
{
- "@id": "schema:EducationalOccupationalCredential"
- }
- ],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "@id": "schema:PropertyValue"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1779"
+ "@id": "schema:MonetaryAmount"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Number"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:contactOption",
+ "@id": "schema:includesHealthPlanNetwork",
"@type": "rdf:Property",
- "rdfs:comment": "An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).",
- "rdfs:label": "contactOption",
+ "rdfs:comment": "Networks covered by this plan.",
+ "rdfs:label": "includesHealthPlanNetwork",
"schema:domainIncludes": {
- "@id": "schema:ContactPoint"
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:ContactPointOption"
+ "@id": "schema:HealthPlanNetwork"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
}
},
{
- "@id": "schema:ParkingMap",
- "@type": "schema:MapCategoryType",
- "rdfs:comment": "A parking map.",
- "rdfs:label": "ParkingMap"
+ "@id": "schema:WearableSizeGroupShort",
+ "@type": "schema:WearableSizeGroupEnumeration",
+ "rdfs:comment": "Size group \"Short\" for wearables.",
+ "rdfs:label": "WearableSizeGroupShort",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
+ }
},
{
- "@id": "schema:Seat",
- "@type": "rdfs:Class",
- "rdfs:comment": "Used to describe a seat, such as a reserved seat in an event reservation.",
- "rdfs:label": "Seat",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
+ "@id": "schema:quest",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The task that a player-controlled character, or group of characters may complete in order to gain a reward.",
+ "rdfs:label": "quest",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:Game"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:Thing"
}
},
{
- "@id": "schema:inSupportOf",
+ "@id": "schema:recipeCategory",
"@type": "rdf:Property",
- "rdfs:comment": "Qualification, candidature, degree, application that Thesis supports.",
- "rdfs:label": "inSupportOf",
+ "rdfs:comment": "The category of the recipe—for example, appetizer, entree, etc.",
+ "rdfs:label": "recipeCategory",
"schema:domainIncludes": {
- "@id": "schema:Thesis"
- },
- "schema:isPartOf": {
- "@id": "https://bib.schema.org"
+ "@id": "schema:Recipe"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:CreativeWorkSeries",
- "@type": "rdfs:Class",
- "rdfs:comment": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n\t ",
- "rdfs:label": "CreativeWorkSeries",
- "rdfs:subClassOf": [
+ "@id": "schema:seatingCapacity",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.\\n\\nTypical unit code(s): C62 for persons ",
+ "rdfs:label": "seatingCapacity",
+ "schema:domainIncludes": {
+ "@id": "schema:Vehicle"
+ },
+ "schema:isPartOf": {
+ "@id": "https://auto.schema.org"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Series"
+ "@id": "schema:Number"
},
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:QuantitativeValue"
}
- ]
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ }
},
{
- "@id": "schema:currency",
+ "@id": "schema:episodeNumber",
"@type": "rdf:Property",
- "rdfs:comment": "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".",
- "rdfs:label": "currency",
- "schema:domainIncludes": [
- {
- "@id": "schema:DatedMoneySpecification"
- },
- {
- "@id": "schema:ExchangeRateSpecification"
- },
- {
- "@id": "schema:LoanOrCredit"
- },
+ "rdfs:comment": "Position of the episode within an ordered group of episodes.",
+ "rdfs:label": "episodeNumber",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:position"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Episode"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:MonetaryAmountDistribution"
+ "@id": "schema:Text"
},
{
- "@id": "schema:MonetaryAmount"
+ "@id": "schema:Integer"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1253"
+ ]
+ },
+ {
+ "@id": "schema:School",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A school.",
+ "rdfs:label": "School",
+ "rdfs:subClassOf": {
+ "@id": "schema:EducationalOrganization"
}
},
{
- "@id": "schema:pagination",
+ "@id": "schema:toRecipient",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/ontology/bibo/pages"
+ "rdfs:comment": "A sub property of recipient. The recipient who was directly sent the message.",
+ "rdfs:label": "toRecipient",
+ "rdfs:subPropertyOf": {
+ "@id": "schema:recipient"
},
- "rdfs:comment": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".",
- "rdfs:label": "pagination",
- "schema:domainIncludes": [
+ "schema:domainIncludes": {
+ "@id": "schema:Message"
+ },
+ "schema:rangeIncludes": [
{
- "@id": "schema:Article"
+ "@id": "schema:Person"
},
{
- "@id": "schema:PublicationIssue"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:PublicationVolume"
+ "@id": "schema:ContactPoint"
},
{
- "@id": "schema:Chapter"
+ "@id": "schema:Audience"
}
- ],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
- }
+ ]
},
{
- "@id": "schema:vehicleModelDate",
+ "@id": "schema:mediaAuthenticityCategory",
"@type": "rdf:Property",
- "rdfs:comment": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
- "rdfs:label": "vehicleModelDate",
+ "rdfs:comment": "Indicates a MediaManipulationRatingEnumeration classification of a media object (in the context of how it was published or shared).",
+ "rdfs:label": "mediaAuthenticityCategory",
"schema:domainIncludes": {
- "@id": "schema:Vehicle"
+ "@id": "schema:MediaReview"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:MediaManipulationRatingEnumeration"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:contributor",
+ "@id": "schema:relatedCondition",
"@type": "rdf:Property",
- "rdfs:comment": "A secondary contributor to the CreativeWork or Event.",
- "rdfs:label": "contributor",
+ "rdfs:comment": "A medical condition associated with this anatomy.",
+ "rdfs:label": "relatedCondition",
"schema:domainIncludes": [
{
- "@id": "schema:CreativeWork"
+ "@id": "schema:AnatomicalSystem"
},
{
- "@id": "schema:Event"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Organization"
+ "@id": "schema:SuperficialAnatomy"
},
{
- "@id": "schema:Person"
+ "@id": "schema:AnatomicalStructure"
}
- ]
- },
- {
- "@id": "schema:Therapeutic",
- "@type": "schema:MedicalDevicePurpose",
- "rdfs:comment": "A medical device used for therapeutic purposes.",
- "rdfs:label": "Therapeutic",
+ ],
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalCondition"
}
},
{
- "@id": "schema:broadcastSubChannel",
- "@type": "rdf:Property",
- "rdfs:comment": "The subchannel used for the broadcast.",
- "rdfs:label": "broadcastSubChannel",
- "schema:domainIncludes": {
- "@id": "schema:BroadcastFrequencySpecification"
+ "@id": "schema:AnalysisNewsArticle",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "An AnalysisNewsArticle is a [[NewsArticle]] that, while based on factual reporting, incorporates the expertise of the author/producer, offering interpretations and conclusions.",
+ "rdfs:label": "AnalysisNewsArticle",
+ "rdfs:subClassOf": {
+ "@id": "schema:NewsArticle"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2111"
- }
+ "schema:source": [
+ {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1525"
+ },
+ {
+ "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
+ }
+ ]
},
{
- "@id": "schema:cvdNumBedsOcc",
+ "@id": "schema:cvdNumICUBedsOcc",
"@type": "rdf:Property",
- "rdfs:comment": "numbedsocc - HOSPITAL INPATIENT BED OCCUPANCY: Total number of staffed inpatient beds that are occupied.",
- "rdfs:label": "cvdNumBedsOcc",
+ "rdfs:comment": "numicubedsocc - ICU BED OCCUPANCY: Total number of staffed inpatient ICU beds that are occupied.",
+ "rdfs:label": "cvdNumICUBedsOcc",
"schema:domainIncludes": {
"@id": "schema:CDCPMDRecord"
},
@@ -40620,619 +41278,712 @@
}
},
{
- "@id": "schema:CreativeWorkSeason",
- "@type": "rdfs:Class",
- "rdfs:comment": "A media season e.g. tv, radio, video game etc.",
- "rdfs:label": "CreativeWorkSeason",
- "rdfs:subClassOf": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:Installment",
+ "@type": "schema:PriceComponentTypeEnumeration",
+ "rdfs:comment": "Represents the installment pricing component of the total price for an offered product.",
+ "rdfs:label": "Installment",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
}
},
{
- "@id": "schema:ComedyEvent",
+ "@id": "schema:codeRepository",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, GitHub, CodePlex).",
+ "rdfs:label": "codeRepository",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareSourceCode"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:AnatomicalSystem",
"@type": "rdfs:Class",
- "rdfs:comment": "Event type: Comedy event.",
- "rdfs:label": "ComedyEvent",
+ "rdfs:comment": "An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can include circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.",
+ "rdfs:label": "AnatomicalSystem",
"rdfs:subClassOf": {
- "@id": "schema:Event"
+ "@id": "schema:MedicalEntity"
+ },
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:Nonprofit501c14",
- "@type": "schema:USNonprofitType",
- "rdfs:comment": "Nonprofit501c14: Non-profit type referring to State-Chartered Credit Unions, Mutual Reserve Funds.",
- "rdfs:label": "Nonprofit501c14",
+ "@id": "schema:MediaReview",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A [[MediaReview]] is a more specialized form of Review dedicated to the evaluation of media content online, typically in the context of fact-checking and misinformation.\n For more general reviews of media in the broader sense, use [[UserReview]], [[CriticReview]] or other [[Review]] types. This definition is\n a work in progress. While the [[MediaManipulationRatingEnumeration]] list reflects significant community review amongst fact-checkers and others working\n to combat misinformation, the specific structures for representing media objects, their versions and publication context, are still evolving. Similarly, best practices for the relationship between [[MediaReview]] and [[ClaimReview]] markup have not yet been finalized.",
+ "rdfs:label": "MediaReview",
+ "rdfs:subClassOf": {
+ "@id": "schema:Review"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2543"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2450"
}
},
{
- "@id": "schema:isAccessibleForFree",
+ "@id": "schema:rsvpResponse",
"@type": "rdf:Property",
- "rdfs:comment": "A flag to signal that the item, event, or place is accessible for free.",
- "rdfs:label": "isAccessibleForFree",
- "schema:domainIncludes": [
+ "rdfs:comment": "The response (yes, no, maybe) to the RSVP.",
+ "rdfs:label": "rsvpResponse",
+ "schema:domainIncludes": {
+ "@id": "schema:RsvpAction"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:RsvpResponseType"
+ }
+ },
+ {
+ "@id": "schema:ExercisePlan",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.",
+ "rdfs:label": "ExercisePlan",
+ "rdfs:subClassOf": [
{
"@id": "schema:CreativeWork"
},
{
- "@id": "schema:Event"
- },
- {
- "@id": "schema:Place"
+ "@id": "schema:PhysicalActivity"
}
],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
+ },
+ {
+ "@id": "schema:sourceOrganization",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The Organization on whose behalf the creator was working.",
+ "rdfs:label": "sourceOrganization",
+ "schema:domainIncludes": {
+ "@id": "schema:CreativeWork"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Boolean"
+ "@id": "schema:Organization"
}
},
{
- "@id": "schema:replacee",
+ "@id": "schema:LowLactoseDiet",
+ "@type": "schema:RestrictedDiet",
+ "rdfs:comment": "A diet appropriate for people with lactose intolerance.",
+ "rdfs:label": "LowLactoseDiet"
+ },
+ {
+ "@id": "schema:sku",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of object. The object that is being replaced.",
- "rdfs:label": "replacee",
+ "rdfs:comment": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
+ "rdfs:label": "sku",
"rdfs:subPropertyOf": {
- "@id": "schema:object"
- },
- "schema:domainIncludes": {
- "@id": "schema:ReplaceAction"
+ "@id": "schema:identifier"
},
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Product"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
"schema:rangeIncludes": {
- "@id": "schema:Thing"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:EUEnergyEfficiencyCategoryA",
- "@type": "schema:EUEnergyEfficiencyEnumeration",
- "rdfs:comment": "Represents EU Energy Efficiency Class A as defined in EU energy labeling regulations.",
- "rdfs:label": "EUEnergyEfficiencyCategoryA",
+ "@id": "schema:Quotation",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A quotation. Often but not necessarily from some written work, attributable to a real world author and - if associated with a fictional character - to any fictional Person. Use [[isBasedOn]] to link to source/origin. The [[recordedIn]] property can be used to reference a Quotation from an [[Event]].",
+ "rdfs:label": "Quotation",
+ "rdfs:subClassOf": {
+ "@id": "schema:CreativeWork"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/271"
}
},
{
- "@id": "schema:tickerSymbol",
+ "@id": "schema:orderItemNumber",
"@type": "rdf:Property",
- "rdfs:comment": "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.",
- "rdfs:label": "tickerSymbol",
+ "rdfs:comment": "The identifier of the order item.",
+ "rdfs:label": "orderItemNumber",
"schema:domainIncludes": {
- "@id": "schema:Corporation"
+ "@id": "schema:OrderItem"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
- "@id": "schema:knowsAbout",
+ "@id": "schema:speechToTextMarkup",
"@type": "rdf:Property",
- "rdfs:comment": "Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.",
- "rdfs:label": "knowsAbout",
- "schema:domainIncludes": [
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:Person"
- }
- ],
+ "rdfs:comment": "Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898).",
+ "rdfs:label": "speechToTextMarkup",
+ "schema:domainIncludes": {
+ "@id": "schema:PronounceableText"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2108"
+ }
+ },
+ {
+ "@id": "schema:gettingTestedInfo",
+ "@type": "rdf:Property",
+ "rdfs:comment": "Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.",
+ "rdfs:label": "gettingTestedInfo",
+ "schema:domainIncludes": {
+ "@id": "schema:SpecialAnnouncement"
+ },
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
+ "@id": "schema:WebContent"
},
{
- "@id": "schema:Thing"
+ "@id": "schema:URL"
}
],
- "schema:source": [
- {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1688"
- },
- {
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#TP"
- }
- ]
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2490"
+ }
},
{
- "@id": "schema:specialty",
+ "@id": "schema:DisagreeAction",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.",
+ "rdfs:label": "DisagreeAction",
+ "rdfs:subClassOf": {
+ "@id": "schema:ReactAction"
+ }
+ },
+ {
+ "@id": "schema:deathPlace",
"@type": "rdf:Property",
- "rdfs:comment": "One of the domain specialities to which this web page's content applies.",
- "rdfs:label": "specialty",
+ "rdfs:comment": "The place where the person died.",
+ "rdfs:label": "deathPlace",
"schema:domainIncludes": {
- "@id": "schema:WebPage"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:Specialty"
+ "@id": "schema:Place"
}
},
{
- "@id": "schema:event",
+ "@id": "schema:OnlineOnly",
+ "@type": "schema:ItemAvailability",
+ "rdfs:comment": "Indicates that the item is available only online.",
+ "rdfs:label": "OnlineOnly"
+ },
+ {
+ "@id": "schema:additionalType",
"@type": "rdf:Property",
- "rdfs:comment": "Upcoming or past event associated with this place, organization, or action.",
- "rdfs:label": "event",
+ "rdfs:comment": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
+ "rdfs:label": "additionalType",
+ "rdfs:subPropertyOf": {
+ "@id": "rdf:type"
+ },
+ "schema:domainIncludes": {
+ "@id": "schema:Thing"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
+ }
+ },
+ {
+ "@id": "schema:eduQuestionType",
+ "@type": "rdf:Property",
+ "rdfs:comment": "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".",
+ "rdfs:label": "eduQuestionType",
"schema:domainIncludes": [
{
- "@id": "schema:InviteAction"
- },
- {
- "@id": "schema:LeaveAction"
- },
- {
- "@id": "schema:Organization"
- },
- {
- "@id": "schema:PlayAction"
- },
- {
- "@id": "schema:JoinAction"
- },
- {
- "@id": "schema:InformAction"
+ "@id": "schema:SolveMathAction"
},
{
- "@id": "schema:Place"
+ "@id": "schema:Question"
}
],
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
+ },
"schema:rangeIncludes": {
- "@id": "schema:Event"
+ "@id": "schema:Text"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2636"
}
},
{
- "@id": "schema:musicBy",
+ "@id": "schema:geoContains",
"@type": "rdf:Property",
- "rdfs:comment": "The composer of the soundtrack.",
- "rdfs:label": "musicBy",
+ "rdfs:comment": "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
+ "rdfs:label": "geoContains",
"schema:domainIncludes": [
{
- "@id": "schema:TVSeries"
- },
- {
- "@id": "schema:Clip"
- },
- {
- "@id": "schema:VideoGame"
- },
- {
- "@id": "schema:VideoGameSeries"
- },
- {
- "@id": "schema:VideoObject"
- },
- {
- "@id": "schema:Episode"
- },
- {
- "@id": "schema:MovieSeries"
- },
- {
- "@id": "schema:Movie"
+ "@id": "schema:GeospatialGeometry"
},
{
- "@id": "schema:RadioSeries"
+ "@id": "schema:Place"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Person"
+ "@id": "schema:Place"
},
{
- "@id": "schema:MusicGroup"
+ "@id": "schema:GeospatialGeometry"
}
]
},
{
- "@id": "schema:SingleBlindedTrial",
- "@type": "schema:MedicalTrialDesign",
- "rdfs:comment": "A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.",
- "rdfs:label": "SingleBlindedTrial",
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "schema:PropertyValue",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.\\n\\n Always use specific schema.org properties when a) they exist and b) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.\n ",
+ "rdfs:label": "PropertyValue",
+ "rdfs:subClassOf": {
+ "@id": "schema:StructuredValue"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
}
},
{
- "@id": "schema:guidelineSubject",
+ "@id": "schema:identifyingTest",
"@type": "rdf:Property",
- "rdfs:comment": "The medical conditions, treatments, etc. that are the subject of the guideline.",
- "rdfs:label": "guidelineSubject",
+ "rdfs:comment": "A diagnostic test that can identify this sign.",
+ "rdfs:label": "identifyingTest",
"schema:domainIncludes": {
- "@id": "schema:MedicalGuideline"
+ "@id": "schema:MedicalSign"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:MedicalEntity"
+ "@id": "schema:MedicalTest"
}
},
{
- "@id": "schema:legislationDateVersion",
+ "@id": "schema:minimumPaymentDue",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://data.europa.eu/eli/ontology#version_date"
- },
- "http://www.w3.org/2004/02/skos/core#exactMatch": {
- "@id": "http://data.europa.eu/eli/ontology#version_date"
- },
- "rdfs:comment": "The point-in-time at which the provided description of the legislation is valid (e.g. : when looking at the law on the 2016-04-07 (= dateVersion), I get the consolidation of 2015-04-12 of the \"National Insurance Contributions Act 2015\")",
- "rdfs:label": "legislationDateVersion",
+ "rdfs:comment": "The minimum payment required at this time.",
+ "rdfs:label": "minimumPaymentDue",
"schema:domainIncludes": {
- "@id": "schema:Legislation"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Date"
+ "@id": "schema:Invoice"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/1156"
+ "@id": "schema:MonetaryAmount"
},
{
- "@id": "http://publications.europa.eu/mdr/eli/index.html"
+ "@id": "schema:PriceSpecification"
}
]
},
{
- "@id": "schema:EventScheduled",
- "@type": "schema:EventStatusType",
- "rdfs:comment": "The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default.",
- "rdfs:label": "EventScheduled"
- },
- {
- "@id": "schema:GovernmentService",
- "@type": "rdfs:Class",
- "rdfs:comment": "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.",
- "rdfs:label": "GovernmentService",
- "rdfs:subClassOf": {
- "@id": "schema:Service"
- }
- },
- {
- "@id": "schema:Project",
- "@type": "rdfs:Class",
- "rdfs:comment": "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim.\nUse properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. \n ",
- "rdfs:label": "Project",
- "rdfs:subClassOf": {
- "@id": "schema:Organization"
+ "@id": "schema:alumniOf",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An organization that the person is an alumni of.",
+ "rdfs:label": "alumniOf",
+ "schema:domainIncludes": {
+ "@id": "schema:Person"
},
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "schema:inverseOf": {
+ "@id": "schema:alumni"
},
- "schema:source": [
+ "schema:rangeIncludes": [
{
- "@id": "https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FundInfoCollab"
+ "@id": "schema:Organization"
},
{
- "@id": "https://github.com/schemaorg/schemaorg/issues/383"
+ "@id": "schema:EducationalOrganization"
}
]
},
{
- "@id": "schema:Bridge",
- "@type": "rdfs:Class",
- "rdfs:comment": "A bridge.",
- "rdfs:label": "Bridge",
- "rdfs:subClassOf": {
- "@id": "schema:CivicStructure"
- }
- },
- {
- "@id": "schema:ListItem",
- "@type": "rdfs:Class",
- "rdfs:comment": "An list item, e.g. a step in a checklist or how-to description.",
- "rdfs:label": "ListItem",
- "rdfs:subClassOf": {
- "@id": "schema:Intangible"
- }
- },
- {
- "@id": "schema:enginePower",
+ "@id": "schema:colleagues",
"@type": "rdf:Property",
- "rdfs:comment": "The power of the vehicle's engine.\n Typical unit code(s): KWT for kilowatt, BHP for brake horsepower, N12 for metric horsepower (PS, with 1 PS = 735,49875 W)\\n\\n* Note 1: There are many different ways of measuring an engine's power. For an overview, see [http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes](http://en.wikipedia.org/wiki/Horsepower#Engine_power_test_codes).\\n* Note 2: You can link to information about how the given value has been determined using the [[valueReference]] property.\\n* Note 3: You can use [[minValue]] and [[maxValue]] to indicate ranges.",
- "rdfs:label": "enginePower",
+ "rdfs:comment": "A colleague of the person.",
+ "rdfs:label": "colleagues",
"schema:domainIncludes": {
- "@id": "schema:EngineSpecification"
- },
- "schema:isPartOf": {
- "@id": "https://auto.schema.org"
+ "@id": "schema:Person"
},
"schema:rangeIncludes": {
- "@id": "schema:QuantitativeValue"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
- }
- },
- {
- "@id": "schema:partOfOrder",
- "@type": "rdf:Property",
- "rdfs:comment": "The overall order the items in this delivery were included in.",
- "rdfs:label": "partOfOrder",
- "schema:domainIncludes": {
- "@id": "schema:ParcelDelivery"
+ "@id": "schema:Person"
},
- "schema:rangeIncludes": {
- "@id": "schema:Order"
+ "schema:supersededBy": {
+ "@id": "schema:colleague"
}
},
{
- "@id": "schema:shippingDetails",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates information about the shipping policies and options associated with an [[Offer]].",
- "rdfs:label": "shippingDetails",
- "schema:domainIncludes": {
- "@id": "schema:Offer"
- },
+ "@id": "schema:WearableSizeSystemUK",
+ "@type": "schema:WearableSizeSystemEnumeration",
+ "rdfs:comment": "United Kingdom size system for wearables.",
+ "rdfs:label": "WearableSizeSystemUK",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:OfferShippingDetails"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:countriesSupported",
+ "@id": "schema:acceptedPaymentMethod",
"@type": "rdf:Property",
- "rdfs:comment": "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
- "rdfs:label": "countriesSupported",
- "schema:domainIncludes": {
- "@id": "schema:SoftwareApplication"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- }
- },
- {
- "@id": "schema:Landform",
- "@type": "rdfs:Class",
- "rdfs:comment": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.",
- "rdfs:label": "Landform",
- "rdfs:subClassOf": {
- "@id": "schema:Place"
+ "rdfs:comment": "The payment method(s) accepted by seller for this offer.",
+ "rdfs:label": "acceptedPaymentMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
+ },
+ {
+ "@id": "schema:Offer"
+ }
+ ],
+ "schema:rangeIncludes": [
+ {
+ "@id": "schema:PaymentMethod"
+ },
+ {
+ "@id": "schema:LoanOrCredit"
+ }
+ ],
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
}
},
{
- "@id": "schema:hasMap",
+ "@id": "schema:usesHealthPlanIdStandard",
"@type": "rdf:Property",
- "rdfs:comment": "A URL to a map of the place.",
- "rdfs:label": "hasMap",
+ "rdfs:comment": "The standard for interpreting the Plan ID. The preferred is \"HIOS\". See the Centers for Medicare & Medicaid Services for more details.",
+ "rdfs:label": "usesHealthPlanIdStandard",
"schema:domainIncludes": {
- "@id": "schema:Place"
+ "@id": "schema:HealthInsurancePlan"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Map"
+ "@id": "schema:URL"
},
{
- "@id": "schema:URL"
+ "@id": "schema:Text"
}
- ]
- },
- {
- "@id": "schema:Text",
- "@type": [
- "schema:DataType",
- "rdfs:Class"
],
- "rdfs:comment": "Data type: Text.",
- "rdfs:label": "Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1062"
+ }
},
{
- "@id": "schema:accessibilityControl",
- "@type": "rdf:Property",
- "rdfs:comment": "Identifies input methods that are sufficient to fully control the described resource ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).",
- "rdfs:label": "accessibilityControl",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:ReturnLabelDownloadAndPrint",
+ "@type": "schema:ReturnLabelSourceEnumeration",
+ "rdfs:comment": "Indicated that a return label must be downloaded and printed by the customer.",
+ "rdfs:label": "ReturnLabelDownloadAndPrint",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2880"
}
},
{
- "@id": "schema:PhysicalActivityCategory",
+ "@id": "schema:BoardingPolicyType",
"@type": "rdfs:Class",
- "rdfs:comment": "Categories of physical activity, organized by physiologic classification.",
- "rdfs:label": "PhysicalActivityCategory",
+ "rdfs:comment": "A type of boarding policy used by an airline.",
+ "rdfs:label": "BoardingPolicyType",
"rdfs:subClassOf": {
"@id": "schema:Enumeration"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:associatedAnatomy",
+ "@id": "schema:sponsor",
"@type": "rdf:Property",
- "rdfs:comment": "The anatomy of the underlying organ system or structures associated with this entity.",
- "rdfs:label": "associatedAnatomy",
+ "rdfs:comment": "A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
+ "rdfs:label": "sponsor",
"schema:domainIncludes": [
{
- "@id": "schema:PhysicalActivity"
+ "@id": "schema:Event"
},
{
- "@id": "schema:MedicalCondition"
+ "@id": "schema:MedicalStudy"
+ },
+ {
+ "@id": "schema:Grant"
+ },
+ {
+ "@id": "schema:CreativeWork"
+ },
+ {
+ "@id": "schema:Organization"
+ },
+ {
+ "@id": "schema:Person"
}
],
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
"schema:rangeIncludes": [
{
- "@id": "schema:AnatomicalSystem"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:SuperficialAnatomy"
+ "@id": "schema:Person"
+ }
+ ]
+ },
+ {
+ "@id": "schema:availableDeliveryMethod",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The delivery method(s) available for this offer.",
+ "rdfs:label": "availableDeliveryMethod",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:Demand"
},
{
- "@id": "schema:AnatomicalStructure"
+ "@id": "schema:Offer"
}
- ]
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:DeliveryMethod"
+ },
+ "schema:source": {
+ "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ }
},
{
- "@id": "schema:winner",
+ "@id": "schema:hasCategoryCode",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of participant. The winner of the action.",
- "rdfs:label": "winner",
+ "rdfs:comment": "A Category code contained in this code set.",
+ "rdfs:label": "hasCategoryCode",
"rdfs:subPropertyOf": {
- "@id": "schema:participant"
+ "@id": "schema:hasDefinedTerm"
},
"schema:domainIncludes": {
- "@id": "schema:LoseAction"
+ "@id": "schema:CategoryCodeSet"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:Person"
+ "@id": "schema:CategoryCode"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/894"
}
},
{
- "@id": "schema:Oncologic",
- "@type": "schema:MedicalSpecialty",
- "rdfs:comment": "A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.",
- "rdfs:label": "Oncologic",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalBusiness"
+ "@id": "schema:downloadUrl",
+ "@type": "rdf:Property",
+ "rdfs:comment": "If the file can be downloaded, URL to download the binary.",
+ "rdfs:label": "downloadUrl",
+ "schema:domainIncludes": {
+ "@id": "schema:SoftwareApplication"
},
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "schema:rangeIncludes": {
+ "@id": "schema:URL"
}
},
{
- "@id": "schema:pageEnd",
+ "@id": "schema:availableFrom",
"@type": "rdf:Property",
- "http://www.w3.org/2002/07/owl#equivalentProperty": {
- "@id": "http://purl.org/ontology/bibo/pageEnd"
+ "rdfs:comment": "When the item is available for pickup from the store, locker, etc.",
+ "rdfs:label": "availableFrom",
+ "schema:domainIncludes": {
+ "@id": "schema:DeliveryEvent"
},
- "rdfs:comment": "The page on which the work ends; for example \"138\" or \"xvi\".",
- "rdfs:label": "pageEnd",
+ "schema:rangeIncludes": {
+ "@id": "schema:DateTime"
+ }
+ },
+ {
+ "@id": "schema:musicBy",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The composer of the soundtrack.",
+ "rdfs:label": "musicBy",
"schema:domainIncludes": [
{
- "@id": "schema:PublicationIssue"
+ "@id": "schema:TVSeries"
},
{
- "@id": "schema:PublicationVolume"
+ "@id": "schema:RadioSeries"
},
{
- "@id": "schema:Article"
+ "@id": "schema:Movie"
},
{
- "@id": "schema:Chapter"
+ "@id": "schema:MovieSeries"
+ },
+ {
+ "@id": "schema:Episode"
+ },
+ {
+ "@id": "schema:VideoGame"
+ },
+ {
+ "@id": "schema:Clip"
+ },
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoObject"
}
],
"schema:rangeIncludes": [
{
- "@id": "schema:Integer"
+ "@id": "schema:MusicGroup"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex"
- }
+ ]
},
{
- "@id": "schema:infectiousAgentClass",
+ "@id": "schema:isUnlabelledFallback",
"@type": "rdf:Property",
- "rdfs:comment": "The class of infectious agent (bacteria, prion, etc.) that causes the disease.",
- "rdfs:label": "infectiousAgentClass",
- "schema:domainIncludes": {
- "@id": "schema:InfectiousDisease"
- },
+ "rdfs:comment": "This can be marked 'true' to indicate that some published [[DeliveryTimeSettings]] or [[ShippingRateSettings]] are intended to apply to all [[OfferShippingDetails]] published by the same merchant, when referenced by a [[shippingSettingsLink]] in those settings. It is not meaningful to use a 'true' value for this property alongside a transitTimeLabel (for [[DeliveryTimeSettings]]) or shippingLabel (for [[ShippingRateSettings]]), since this property is for use with unlabelled settings.",
+ "rdfs:label": "isUnlabelledFallback",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:DeliveryTimeSettings"
+ },
+ {
+ "@id": "schema:ShippingRateSettings"
+ }
+ ],
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:InfectiousAgentClass"
+ "@id": "schema:Boolean"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2506"
}
},
{
- "@id": "schema:reservedTicket",
+ "@id": "schema:incentives",
"@type": "rdf:Property",
- "rdfs:comment": "A ticket associated with the reservation.",
- "rdfs:label": "reservedTicket",
+ "rdfs:comment": "Description of bonus and commission compensation aspects of the job.",
+ "rdfs:label": "incentives",
"schema:domainIncludes": {
- "@id": "schema:Reservation"
+ "@id": "schema:JobPosting"
},
"schema:rangeIncludes": {
- "@id": "schema:Ticket"
+ "@id": "schema:Text"
+ },
+ "schema:supersededBy": {
+ "@id": "schema:incentiveCompensation"
}
},
{
- "@id": "schema:geoRadius",
- "@type": "rdf:Property",
- "rdfs:comment": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
- "rdfs:label": "geoRadius",
- "schema:domainIncludes": {
- "@id": "schema:GeoCircle"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:Text"
- },
- {
- "@id": "schema:Distance"
- },
- {
- "@id": "schema:Number"
- }
- ]
+ "@id": "schema:Wholesale",
+ "@type": "schema:DrugCostCategory",
+ "rdfs:comment": "The drug's cost represents the wholesale acquisition cost of the drug.",
+ "rdfs:label": "Wholesale",
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ }
},
{
- "@id": "schema:commentCount",
- "@type": "rdf:Property",
- "rdfs:comment": "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.",
- "rdfs:label": "commentCount",
- "schema:domainIncludes": {
- "@id": "schema:CreativeWork"
+ "@id": "schema:ItemPage",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A page devoted to a single item, such as a particular product or hotel.",
+ "rdfs:label": "ItemPage",
+ "rdfs:subClassOf": {
+ "@id": "schema:WebPage"
+ }
+ },
+ {
+ "@id": "schema:EUEnergyEfficiencyCategoryA1Plus",
+ "@type": "schema:EUEnergyEfficiencyEnumeration",
+ "rdfs:comment": "Represents EU Energy Efficiency Class A+ as defined in EU energy labeling regulations.",
+ "rdfs:label": "EUEnergyEfficiencyCategoryA1Plus",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:Integer"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2670"
}
},
{
- "@id": "schema:defaultValue",
+ "@id": "schema:organizer",
"@type": "rdf:Property",
- "rdfs:comment": "The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.",
- "rdfs:label": "defaultValue",
+ "rdfs:comment": "An organizer of an Event.",
+ "rdfs:label": "organizer",
"schema:domainIncludes": {
- "@id": "schema:PropertyValueSpecification"
+ "@id": "schema:Event"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Thing"
+ "@id": "schema:Organization"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Person"
}
]
},
{
- "@id": "schema:faxNumber",
+ "@id": "schema:Reservoir",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.",
+ "rdfs:label": "Reservoir",
+ "rdfs:subClassOf": {
+ "@id": "schema:BodyOfWater"
+ }
+ },
+ {
+ "@id": "schema:EBook",
+ "@type": "schema:BookFormatType",
+ "rdfs:comment": "Book format: Ebook.",
+ "rdfs:label": "EBook"
+ },
+ {
+ "@id": "schema:mechanismOfAction",
"@type": "rdf:Property",
- "rdfs:comment": "The fax number.",
- "rdfs:label": "faxNumber",
+ "rdfs:comment": "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.",
+ "rdfs:label": "mechanismOfAction",
"schema:domainIncludes": [
{
- "@id": "schema:ContactPoint"
+ "@id": "schema:DietarySupplement"
},
{
- "@id": "schema:Person"
- },
+ "@id": "schema:Drug"
+ }
+ ],
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
+ }
+ },
+ {
+ "@id": "schema:LocalBusiness",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.",
+ "rdfs:label": "LocalBusiness",
+ "rdfs:subClassOf": [
{
"@id": "schema:Place"
},
@@ -41240,375 +41991,312 @@
"@id": "schema:Organization"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Text"
+ "skos:closeMatch": {
+ "@id": "http://www.w3.org/ns/regorg#RegisteredOrganization"
}
},
{
- "@id": "schema:UserComments",
- "@type": "rdfs:Class",
- "rdfs:comment": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
- "rdfs:label": "UserComments",
- "rdfs:subClassOf": {
- "@id": "schema:UserInteraction"
+ "@id": "schema:SelfCareHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Self care actions or measures that can be taken to sooth, health or avoid a topic. This may be carried at home and can be carried/managed by the person itself.",
+ "rdfs:label": "SelfCareHealthAspect",
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews"
- },
- "schema:supersededBy": {
- "@id": "schema:InteractionCounter"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:applicationContact",
+ "@id": "schema:yearBuilt",
"@type": "rdf:Property",
- "rdfs:comment": "Contact details for further information relevant to this job posting.",
- "rdfs:label": "applicationContact",
+ "rdfs:comment": "The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). ",
+ "rdfs:label": "yearBuilt",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:Accommodation"
},
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
"schema:rangeIncludes": {
- "@id": "schema:ContactPoint"
+ "@id": "schema:Number"
},
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2396"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2373"
}
},
{
- "@id": "schema:signOrSymptom",
- "@type": "rdf:Property",
- "rdfs:comment": "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.",
- "rdfs:label": "signOrSymptom",
- "schema:domainIncludes": {
- "@id": "schema:MedicalCondition"
- },
+ "@id": "schema:RisksOrComplicationsHealthAspect",
+ "@type": "schema:HealthAspectEnumeration",
+ "rdfs:comment": "Information about the risk factors and possible complications that may follow a topic.",
+ "rdfs:label": "RisksOrComplicationsHealthAspect",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:MedicalSignOrSymptom"
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2374"
}
},
{
- "@id": "schema:warning",
- "@type": "rdf:Property",
- "rdfs:comment": "Any FDA or other warnings about the drug (text or URL).",
- "rdfs:label": "warning",
- "schema:domainIncludes": {
- "@id": "schema:Drug"
- },
- "schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
- },
- "schema:rangeIncludes": [
- {
- "@id": "schema:URL"
- },
- {
- "@id": "schema:Text"
- }
- ]
- },
- {
- "@id": "schema:purchaseDate",
- "@type": "rdf:Property",
- "rdfs:comment": "The date the item e.g. vehicle was purchased by the current owner.",
- "rdfs:label": "purchaseDate",
- "schema:domainIncludes": [
+ "@id": "schema:PhysicalExam",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A type of physical examination of a patient performed by a physician. ",
+ "rdfs:label": "PhysicalExam",
+ "rdfs:subClassOf": [
{
- "@id": "schema:Vehicle"
+ "@id": "schema:MedicalProcedure"
},
{
- "@id": "schema:Product"
+ "@id": "schema:MedicalEnumeration"
}
],
- "schema:rangeIncludes": {
- "@id": "schema:Date"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#Automotive_Ontology_Working_Group"
+ "schema:isPartOf": {
+ "@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:serviceAudience",
+ "@id": "schema:gameTip",
"@type": "rdf:Property",
- "rdfs:comment": "The audience eligible for this service.",
- "rdfs:label": "serviceAudience",
+ "rdfs:comment": "Links to tips, tactics, etc.",
+ "rdfs:label": "gameTip",
"schema:domainIncludes": {
- "@id": "schema:Service"
+ "@id": "schema:VideoGame"
},
"schema:rangeIncludes": {
- "@id": "schema:Audience"
- },
- "schema:supersededBy": {
- "@id": "schema:audience"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:PhotographAction",
+ "@id": "schema:Movie",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of capturing still images of objects using a camera.",
- "rdfs:label": "PhotographAction",
+ "rdfs:comment": "A movie.",
+ "rdfs:label": "Movie",
"rdfs:subClassOf": {
- "@id": "schema:CreateAction"
+ "@id": "schema:CreativeWork"
}
},
{
- "@id": "schema:MinimumAdvertisedPrice",
- "@type": "schema:PriceTypeEnumeration",
- "rdfs:comment": "Represents the minimum advertised price (\"MAP\") (as dictated by the manufacturer) of an offered product.",
- "rdfs:label": "MinimumAdvertisedPrice",
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:videoQuality",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The quality of the video.",
+ "rdfs:label": "videoQuality",
+ "schema:domainIncludes": {
+ "@id": "schema:VideoObject"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2712"
+ "schema:rangeIncludes": {
+ "@id": "schema:Text"
}
},
{
- "@id": "schema:priceComponentType",
+ "@id": "schema:False",
+ "@type": "schema:Boolean",
+ "rdfs:comment": "The boolean value false.",
+ "rdfs:label": "False"
+ },
+ {
+ "@id": "schema:playMode",
"@type": "rdf:Property",
- "rdfs:comment": "Identifies a price component (for example, a line item on an invoice), part of the total price for an offer.",
- "rdfs:label": "priceComponentType",
- "schema:domainIncludes": {
- "@id": "schema:UnitPriceSpecification"
- },
+ "rdfs:comment": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.",
+ "rdfs:label": "playMode",
+ "schema:domainIncludes": [
+ {
+ "@id": "schema:VideoGameSeries"
+ },
+ {
+ "@id": "schema:VideoGame"
+ }
+ ],
+ "schema:rangeIncludes": {
+ "@id": "schema:GamePlayMode"
+ }
+ },
+ {
+ "@id": "schema:OfflineEventAttendanceMode",
+ "@type": "schema:EventAttendanceModeEnumeration",
+ "rdfs:comment": "OfflineEventAttendanceMode - an event that is primarily conducted offline. ",
+ "rdfs:label": "OfflineEventAttendanceMode",
"schema:isPartOf": {
"@id": "https://pending.schema.org"
},
- "schema:rangeIncludes": {
- "@id": "schema:PriceComponentTypeEnumeration"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2689"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/1842"
}
},
{
- "@id": "schema:OfficeEquipmentStore",
+ "@id": "schema:Integer",
"@type": "rdfs:Class",
- "rdfs:comment": "An office equipment store.",
- "rdfs:label": "OfficeEquipmentStore",
+ "rdfs:comment": "Data type: Integer.",
+ "rdfs:label": "Integer",
"rdfs:subClassOf": {
- "@id": "schema:Store"
+ "@id": "schema:Number"
}
},
{
- "@id": "schema:productSupported",
+ "@id": "schema:artworkSurface",
"@type": "rdf:Property",
- "rdfs:comment": "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\").",
- "rdfs:label": "productSupported",
+ "rdfs:comment": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.",
+ "rdfs:label": "artworkSurface",
"schema:domainIncludes": {
- "@id": "schema:ContactPoint"
+ "@id": "schema:VisualArtwork"
},
"schema:rangeIncludes": [
{
- "@id": "schema:Text"
+ "@id": "schema:URL"
},
{
- "@id": "schema:Product"
+ "@id": "schema:Text"
}
]
},
{
- "@id": "schema:bccRecipient",
+ "@id": "schema:spokenByCharacter",
"@type": "rdf:Property",
- "rdfs:comment": "A sub property of recipient. The recipient blind copied on a message.",
- "rdfs:label": "bccRecipient",
- "rdfs:subPropertyOf": {
- "@id": "schema:recipient"
- },
+ "rdfs:comment": "The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.",
+ "rdfs:label": "spokenByCharacter",
"schema:domainIncludes": {
- "@id": "schema:Message"
+ "@id": "schema:Quotation"
+ },
+ "schema:isPartOf": {
+ "@id": "https://pending.schema.org"
},
"schema:rangeIncludes": [
{
"@id": "schema:Organization"
},
- {
- "@id": "schema:ContactPoint"
- },
{
"@id": "schema:Person"
}
- ]
- },
- {
- "@id": "schema:ProductCollection",
- "@type": "rdfs:Class",
- "rdfs:comment": "A set of products (either [[ProductGroup]]s or specific variants) that are listed together e.g. in an [[Offer]].",
- "rdfs:label": "ProductCollection",
- "rdfs:subClassOf": [
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:Collection"
- }
],
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
"schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2597"
+ "@id": "https://github.com/schemaorg/schemaorg/issues/271"
}
},
{
- "@id": "schema:ActivateAction",
+ "@id": "schema:OrderItem",
"@type": "rdfs:Class",
- "rdfs:comment": "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).",
- "rdfs:label": "ActivateAction",
+ "rdfs:comment": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.",
+ "rdfs:label": "OrderItem",
"rdfs:subClassOf": {
- "@id": "schema:ControlAction"
+ "@id": "schema:Intangible"
}
},
{
- "@id": "schema:EvidenceLevelA",
- "@type": "schema:MedicalEvidenceLevel",
- "rdfs:comment": "Data derived from multiple randomized clinical trials or meta-analyses.",
- "rdfs:label": "EvidenceLevelA",
+ "@id": "schema:CaseSeries",
+ "@type": "schema:MedicalObservationalStudyDesign",
+ "rdfs:comment": "A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.",
+ "rdfs:label": "CaseSeries",
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
}
},
{
- "@id": "schema:CompoundPriceSpecification",
- "@type": "rdfs:Class",
- "rdfs:comment": "A compound price specification is one that bundles multiple prices that all apply in combination for different dimensions of consumption. Use the name property of the attached unit price specification for indicating the dimension of a price component (e.g. \"electricity\" or \"final cleaning\").",
- "rdfs:label": "CompoundPriceSpecification",
- "rdfs:subClassOf": {
- "@id": "schema:PriceSpecification"
- },
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass"
- }
- },
- {
- "@id": "schema:owns",
+ "@id": "schema:coach",
"@type": "rdf:Property",
- "rdfs:comment": "Products owned by the organization or person.",
- "rdfs:label": "owns",
- "schema:domainIncludes": [
- {
- "@id": "schema:Person"
- },
- {
- "@id": "schema:Organization"
- }
- ],
- "schema:rangeIncludes": [
- {
- "@id": "schema:Product"
- },
- {
- "@id": "schema:OwnershipInfo"
- }
- ],
- "schema:source": {
- "@id": "http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms"
+ "rdfs:comment": "A person that acts in a coaching role for a sports team.",
+ "rdfs:label": "coach",
+ "schema:domainIncludes": {
+ "@id": "schema:SportsTeam"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:variableMeasured",
+ "@id": "schema:aircraft",
"@type": "rdf:Property",
- "rdfs:comment": "The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.",
- "rdfs:label": "variableMeasured",
+ "rdfs:comment": "The kind of aircraft (e.g., \"Boeing 747\").",
+ "rdfs:label": "aircraft",
"schema:domainIncludes": {
- "@id": "schema:Dataset"
- },
- "schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "schema:Flight"
},
"schema:rangeIncludes": [
{
- "@id": "schema:PropertyValue"
+ "@id": "schema:Text"
},
{
- "@id": "schema:Text"
+ "@id": "schema:Vehicle"
}
- ],
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1083"
- }
+ ]
},
{
- "@id": "schema:3DModel",
- "@type": "rdfs:Class",
- "rdfs:comment": "A 3D model represents some kind of 3D content, which may have [[encoding]]s in one or more [[MediaObject]]s. Many 3D formats are available (e.g. see [Wikipedia](https://en.wikipedia.org/wiki/Category:3D_graphics_file_formats)); specific encoding formats can be represented using the [[encodingFormat]] property applied to the relevant [[MediaObject]]. For the\ncase of a single file published after Zip compression, the convention of appending '+zip' to the [[encodingFormat]] can be used. Geospatial, AR/VR, artistic/animation, gaming, engineering and scientific content can all be represented using [[3DModel]].",
- "rdfs:label": "3DModel",
- "rdfs:subClassOf": {
- "@id": "schema:MediaObject"
+ "@id": "schema:diagram",
+ "@type": "rdf:Property",
+ "rdfs:comment": "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.",
+ "rdfs:label": "diagram",
+ "schema:domainIncludes": {
+ "@id": "schema:AnatomicalStructure"
},
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
+ "@id": "https://health-lifesci.schema.org"
},
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2140"
+ "schema:rangeIncludes": {
+ "@id": "schema:ImageObject"
}
},
{
- "@id": "schema:MedicalTrial",
- "@type": "rdfs:Class",
- "rdfs:comment": "A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.",
- "rdfs:label": "MedicalTrial",
- "rdfs:subClassOf": {
- "@id": "schema:MedicalStudy"
+ "@id": "schema:stage",
+ "@type": "rdf:Property",
+ "rdfs:comment": "The stage of the condition, if applicable.",
+ "rdfs:label": "stage",
+ "schema:domainIncludes": {
+ "@id": "schema:MedicalCondition"
},
"schema:isPartOf": {
"@id": "https://health-lifesci.schema.org"
+ },
+ "schema:rangeIncludes": {
+ "@id": "schema:MedicalConditionStage"
}
},
{
- "@id": "schema:DataFeed",
+ "@id": "schema:Preschool",
"@type": "rdfs:Class",
- "rdfs:comment": "A single feed providing structured information about one or more entities or topics.",
- "rdfs:label": "DataFeed",
+ "rdfs:comment": "A preschool.",
+ "rdfs:label": "Preschool",
"rdfs:subClassOf": {
- "@id": "schema:Dataset"
+ "@id": "schema:EducationalOrganization"
}
},
{
- "@id": "schema:Throat",
- "@type": "schema:PhysicalExam",
- "rdfs:comment": "Throat assessment with clinical examination.",
- "rdfs:label": "Throat",
+ "@id": "schema:BodyMeasurementWaist",
+ "@type": "schema:BodyMeasurementTypeEnumeration",
+ "rdfs:comment": "Girth of natural waistline (between hip bones and lower ribs). Used, for example, to fit pants.",
+ "rdfs:label": "BodyMeasurementWaist",
"schema:isPartOf": {
- "@id": "https://health-lifesci.schema.org"
+ "@id": "https://pending.schema.org"
+ },
+ "schema:source": {
+ "@id": "https://github.com/schemaorg/schemaorg/issues/2811"
}
},
{
- "@id": "schema:relevantOccupation",
+ "@id": "schema:character",
"@type": "rdf:Property",
- "rdfs:comment": "The Occupation for the JobPosting.",
- "rdfs:label": "relevantOccupation",
+ "rdfs:comment": "Fictional person connected with a creative work.",
+ "rdfs:label": "character",
"schema:domainIncludes": {
- "@id": "schema:JobPosting"
+ "@id": "schema:CreativeWork"
},
"schema:rangeIncludes": {
- "@id": "schema:Occupation"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/1698"
+ "@id": "schema:Person"
}
},
{
- "@id": "schema:eligibilityToWorkRequirement",
- "@type": "rdf:Property",
- "rdfs:comment": "The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.",
- "rdfs:label": "eligibilityToWorkRequirement",
- "schema:domainIncludes": {
- "@id": "schema:JobPosting"
- },
+ "@id": "schema:CivicStructure",
+ "@type": "rdfs:Class",
+ "rdfs:comment": "A public structure, such as a town hall or concert hall.",
+ "rdfs:label": "CivicStructure",
+ "rdfs:subClassOf": {
+ "@id": "schema:Place"
+ }
+ },
+ {
+ "@id": "schema:NotYetRecruiting",
+ "@type": "schema:MedicalStudyStatus",
+ "rdfs:comment": "Not yet recruiting.",
+ "rdfs:label": "NotYetRecruiting",
"schema:isPartOf": {
- "@id": "https://pending.schema.org"
- },
- "schema:rangeIncludes": {
- "@id": "schema:Text"
- },
- "schema:source": {
- "@id": "https://github.com/schemaorg/schemaorg/issues/2384"
+ "@id": "https://health-lifesci.schema.org"
}
}
]
diff --git a/configs/template/README_Configure_Template.md b/configs/template/README_Configure_Template.md
index 96af08e4..0325d062 100644
--- a/configs/template/README_Configure_Template.md
+++ b/configs/template/README_Configure_Template.md
@@ -75,7 +75,7 @@ hack,SourceType,Active,Name,ProperName,URL,Headless,Domain,PID,Logo
Fields:
1. hack:a hack to make the fields are properly read.
-2. SourceType : [sitemap, sitegraph, googledrive] type of source
+2. SourceType : [sitemap, sitegraph, googledrive, api] type of source
3. Active: [TRUE,FALSE] is source active.
4. Name: short name of source. It should be one word (no space) and be lower case.
5. ProperName: Long name of source that will be added to organization record for provenance
diff --git a/configs/template/gleaner_base.yaml b/configs/template/gleaner_base.yaml
index d0392bdc..7c856797 100644
--- a/configs/template/gleaner_base.yaml
+++ b/configs/template/gleaner_base.yaml
@@ -14,9 +14,9 @@ context:
cache: true
contextmaps:
- prefix: "https://schema.org/"
- file: "./configs/schemaorg-current-https.jsonld"
+ file: "./assets/schemaorg-current-https.jsonld"
- prefix: "http://schema.org/"
- file: "./configs/schemaorg-current-https.jsonld"
+ file: "./assets/schemaorg-current-http.jsonld"
summoner:
after: "" # "21 May 20 10:00 UTC"
mode: full # full || diff: If diff compare what we have currently in gleaner to sitemap, get only new, delete missing
diff --git a/docs/DEVELOPER.md b/docs/DEVELOPER.md
new file mode 100644
index 00000000..dc483383
--- /dev/null
+++ b/docs/DEVELOPER.md
@@ -0,0 +1,30 @@
+
+# Developer notes
+
+## Repositories
+### Githubactions
+
+
+# glcon
+glcon integrates gleaner and nabu to make a single env
+
+## integrating with local nabu
+[see article](https://levelup.gitconnected.com/import-and-use-local-packages-in-your-go-application-885c35e5624)
+
+`require (
+....
+github.com/gleanerio/nabu v0.0.0-20211214151422-eda9e525f196
+...
+}
+
+replace (
+github.com/gleanerio/nabu v0.0.0-20211214151422-eda9e525f196 => ../nabu
+)`
+
+REMOVE WHEN COMMITTING FOR A PULL REQUEST
+
+
+## update nabu dependency
+if nabu code has been updated, the you need to update the dependency
+`go get -u github.com/gleanerio/nabu`
+
diff --git a/docs/GleanerConfig.md b/docs/GleanerConfig.md
index 110bff23..2fa574b9 100644
--- a/docs/GleanerConfig.md
+++ b/docs/GleanerConfig.md
@@ -8,83 +8,12 @@ triple store
headless
```
## Gleaner Configuration generation
-The suggested method of creating a configuration file is to use glcon command can intialize a configuration directory, and allow for the generation of
-configuration files for gleaner and nabu. Download a glcon release from github
-The pattern is to intiialize a configuration directory, edit files, and generate new configurations
-### initialize a configuraiton directory
-```
-glcon init -cfgName test
-```
-intializes a configuraiton in configs with name of 'test'
-Inside you will find
-```
-test % ls
-gleaner_base.yaml readme.txt sources.csv
-nabu_base.yaml servers.yaml
-```
-
-### Edit the files
-Usually, you will only need to edit the servers.yaml and sources.csv
-The servers.yaml
-
-#### Servers.yaml
-```yaml
----
-minio:
- address: 0.0.0.0 # can be overridden with MINIO_ADDRESS
- port: 9000 # can be overridden with MINIO_PORT
- accessKey: worldsbestaccesskey # can be overridden with MINIO_ACCESS_KEY
- secretKey: worldsbestsecretkey # can be overridden with MINIO_SECRET_KEY
- ssl: false # can be overridden with MINIO_SSL
- bucket: gleaner # can be overridden with MINIO_BUCKET
-sparql:
- endpoint: http://localhost/blazegraph/namespace/earthcube/sparql
-s3:
- bucket: gleaner # sync with above... can be overridden with MINIO_BUCKET... get's zapped if it's not here.
- domain: us-east-1
-
-#headless field in gleaner.summoner
-headless: http://127.0.0.1:9222
-```
-First, in the "mino:" section make sure the accessKey and secretKey here match the access keys for your minio.
-These can be overridden with the environent variables:
-* "MINIO_ACCESS_KEY"
-* "MINIO_SECRET_KEY"
-
-#### sources.csv
-This is designed to be edited in a spreadsheet, or dumped as csv from a google spreadsheet
-
-```csv
-hack,SourceType,Active,Name,ProperName,URL,Headless,Domain,PID,Logo
-1,sitegraph,FALSE,aquadocs,AquaDocs,https://oih.aquadocs.org/aquadocs.json ,FALSE,https://aquadocs.org,http://hdl.handle.net/1834/41372,
-3,sitemap,TRUE,opentopography,OpenTopography,https://opentopography.org/sitemap.xml,FALSE,http://www.opentopography.org/,https://www.re3data.org/repository/r3d100010655,https://opentopography.org/sites/opentopography.org/files/ot_transp_logo_2.png
-,sitemap,TRUE,iris,IRIS,http://ds.iris.edu/files/sitemap.xml,FALSE,http://iris.edu,https://www.re3data.org/repository/r3d100010268,http://ds.iris.edu/static/img/layout/logos/iris_logo_shadow.png
-```
-
-Fields:
-1. hack:a hack to make the fields are properly read.
-2. SourceType : [sitemap, sitegraph] type of source
-3. Active: [TRUE,FALSE] is source active.
-4. Name: short name of source. It should be one word (no space) and be lower case.
-5. ProperName: Long name of source that will be added to organization record for provenance
-6. URL: URL of sitemap or sitegraph.
-7. Headless: [FALSE,TRUE] should be set to false unless you know this site uses JavaScript to place the JSON-LD into the page. This is true of some sites and it is supported but not currently auto-detected. So you will need to know this and set it. For most place, this will be false.
- if the json-ld is generated in a page dynamically, then use , TRUE
-8. Domain:
-9. PID: a unique identifier for the source. Perfered that is is a research id.
-10. Logo: while no longer used, logo of the source
-
-### generate the configuraiton files
-```
-glcon generate -cfgName test
-```
-This will generate files 'gleaner' and 'yaml' and make copies of the existing configuration files
-
-The full details are discussed below
+Files can be generated using glcon. Described in [README_CONFIGURE_Template](./README_Configure_Template.md)
## Gleaner Configuration
-So now we are ready to review the Gleaner configuration file named gleaner. There is actually quite a bit in this file, but for this starting demo only a few things we need to worry about. The default file will look like:
+When generated, the Gleaner configuration file named `gleaner` in the configs/{config} directory, but any name with a .yaml ending is acceptable.
+There is actually quite a bit in this file, but for this starting demo only a few things we need to worry about. The default file will look like:
```yaml
---
@@ -147,9 +76,10 @@ The miller and summon sections are true and we will leave them that way. It mea
Now look at the "miller:" section when lets of pick what milling to do. Currently it is set with only graph set to true. Let's leave it that way for now. This means Gleaner will only attempt to make graph and not also run validation or generate prov reports for the process.
The final section we need to look at is the "sources:" section.
-Here is where the fun is. While there are two types, sitegraph and sitemaps we will normally use sitemap type.
+Here is where the fun is. While there multiple types, sitegraph, sitemaps, googledrive and api, we will normally use sitemap type.
+
-A standard sitemap is below:
+A standard [sitemap](./SourceSitemap.md) is below:
```yaml
sources:
- sourcetype: sitemap
@@ -163,7 +93,7 @@ sources:
active: true
```
-A sitegraph
+A sitegraph
```yaml
sources:
- sourcetype: sitegraph
@@ -176,6 +106,35 @@ sources:
domain: https://aquadocs.org
active: false
```
+
+A [Google Drive](./SourceGoogleDrive.md)
+```yaml
+sources:
+- sourcetype: googledrive
+ name: ecrr_submitted
+ logo: https://www.earthcube.org/sites/default/files/doc-repository/logo_earthcube_full_horizontal.png
+ url: https://drive.google.com/drive/u/0/folders/1TacUQqjpBbGsPQ8JPps47lBXMQsNBRnd
+ headless: false
+ pid: ""
+ propername: Earthcube Resource Registry
+ domain: http://www.earthcube.org/resourceregistry/
+ active: true
+ credentialsfile: configs/credentials/gleaner-331805-030e15e1d9c4.json
+ other: {}
+```
+
+An [API endpoint](./SourceAPI.md)
+```yaml
+sources:
+- sourcetype: api
+ name: example
+ url: http://test-metadata-api.com?query=something&page=%d
+ properName: Example JSON-LD API Source
+ domain: http://test-metadata-api.com
+ active: true
+ apipagelimit: 200
+```
+
These are the sources we wish to pull and process.
Each source has a type, and 8 entries though at this time we no longer use the "logo" value.
It was used in the past to provide a page showing all the sources and
diff --git a/docs/README_Configure_Template.md b/docs/README_Configure_Template.md
index df4e5c66..6708811e 100644
--- a/docs/README_Configure_Template.md
+++ b/docs/README_Configure_Template.md
@@ -67,10 +67,10 @@ a csv file with the fields below
This is designed to be edited in a spreadsheet, or exported by url as csv from a google spreadsheet
```csv
-hack,SourceType,Active,Name,ProperName,URL,Headless,Domain,PID,Logo
-1,sitegraph,FALSE,aquadocs,AquaDocs,https://oih.aquadocs.org/aquadocs.json ,FALSE,https://aquadocs.org,http://hdl.handle.net/1834/41372,
-3,sitemap,TRUE,opentopography,OpenTopography,https://opentopography.org/sitemap.xml,FALSE,http://www.opentopography.org/,https://www.re3data.org/repository/r3d100010655,https://opentopography.org/sites/opentopography.org/files/ot_transp_logo_2.png
-,sitemap,TRUE,iris,IRIS,http://ds.iris.edu/files/sitemap.xml,FALSE,http://iris.edu,https://www.re3data.org/repository/r3d100010268,http://ds.iris.edu/static/img/layout/logos/iris_logo_shadow.png
+hack,SourceType,Active,Name,ProperName,URL,Headless,Domain,PID,Logo,CredentialsFile
+1,sitegraph,FALSE,aquadocs,AquaDocs,https://oih.aquadocs.org/aquadocs.json ,FALSE,https://aquadocs.org,http://hdl.handle.net/1834/41372,,
+3,sitemap,TRUE,opentopography,OpenTopography,https://opentopography.org/sitemap.xml,FALSE,http://www.opentopography.org/,https://www.re3data.org/repository/r3d100010655,https://opentopography.org/sites/opentopography.org/files/ot_transp_logo_2.png,
+,sitemap,TRUE,iris,IRIS,http://ds.iris.edu/files/sitemap.xml,FALSE,http://iris.edu,https://www.re3data.org/repository/r3d100010268,http://ds.iris.edu/static/img/layout/logos/iris_logo_shadow.png,
```
Fields:
@@ -85,7 +85,7 @@ Fields:
8. Domain:
9. PID: a unique identifier for the source. Perfered that is is a research id.
10. Logo: while no longer used, logo of the source
-11. googleapikeyenv: (ONLY NEEDED FOR type:googledrive) environment variable pointing to a google api key.
+11. CredentialsFile: (ONLY NEEDED FOR type:googledrive) environment variable pointing to a google api key.
12. any additional feilds you wish. This might be used to generate information about sources for a website.
#### Configuration of your source
@@ -111,10 +111,6 @@ sourcesSource:
type: csv
location: /home/user/ourSources.csv
```
-##### Override Sources via the CLI
-pass --sourcemaps to generate:
-
-`glcon config generate --cfgName test --sourcemaps "My Sources.csv" `
## GENERATE the configuration files
```
@@ -183,20 +179,22 @@ sources:
A few things we need to look at.
-First, in the "mino:" section make sure the accessKey and secretKey here are the ones you utlize.
+First, in the "minio:" section make sure the accessKey and secretKey here are the ones you utlize.
Note: blank these out, and used environment variables (TODO:Need to describe them)
Next, lets look at the "gleaner:" section. We can set the runid to something. This is the ID for a run and it allows you to later make different runs and keep the resulting graphs organized. It can be set to any lower case string with no spaces.
+The "context:" section is about the JSON-LD context, which is a top-level object in each JSON-LD metadata document. Most of the time, it'll look like the example context [here](https://github.com/ESIPFed/science-on-schema.org/blob/cbe618d1896ae8408b3d3575e7be6847129808ab/guides/Dataset.md#common-properties).
+By default, Gleaner will look for common mistakes in the JSON-LD context specification and fix them up. Setting `strict: true` here will disable those fixup operations. It might make things run a little faster to do this.
+
The miller and summon sections are true and we will leave them that way. It means we want Gleaner to both fetch the resources and process (mill) them.
Now look at the "miller:" section when lets of pick what milling to do. Currently it is set with only graph set to true. Let's leave it that way for now. This means Gleaner will only attempt to make graph and not also run validation or generate prov reports for the process.
The final section we need to look at is the "sources:" section.
-Here is where the fun is. While there are two types, sitegraph and sitemaps we will normally use sitemap type.
-There is a third type that involves configuring and pulling from a
+Here is where the fun is. While the most common type of source is a `sitemap`, there are other types available, and examples of each are below.
-A standard sitemap is below:
+A standard [sitemap](./SourceSitemap.md) is below:
```yaml
sources:
- sourcetype: sitemap
@@ -223,6 +221,39 @@ sources:
domain: https://aquadocs.org
active: false
```
+
+A [google Drive](./SourceGoogleDrive.md)
+```yaml
+sources:
+- sourcetype: googledrive
+ name: ecrr_submitted
+ logo: https://www.earthcube.org/sites/default/files/doc-repository/logo_earthcube_full_horizontal.png
+ url: https://drive.google.com/drive/u/0/folders/1TacUQqjpBbGsPQ8JPps47lBXMQsNBRnd
+ headless: false
+ pid: ""
+ propername: Earthcube Resource Registry
+ domain: http://www.earthcube.org/resourceregistry/
+ active: true
+ credentialsfile: configs/credentials/gleaner-331805-030e15e1d9c4.json
+ other: {}
+```
+
+A csv
+```
+TODO: I know this exists but I don't know what it looks like
+```
+
+A robots.txt url (which can have links to multiple sitemaps)
+```yaml
+sources:
+- name: npdc
+ sourcetype: robots
+ headless: false
+ url: https://npdc.nl/robots.txt
+ properName: Netherlands Polar Data Center
+ domain: https://npdc.nl
+ active: false
+```
These are the sources we wish to pull and process.
Each source has a type, and 8 entries though at this time we no longer use the "logo" value.
It was used in the past to provide a page showing all the sources and
diff --git a/docs/README_glcon.md b/docs/README_glcon.md
index 9ab06652..edeb06a6 100644
--- a/docs/README_glcon.md
+++ b/docs/README_glcon.md
@@ -107,8 +107,7 @@ will generate gleaner and nabu configurations, and make copies
## Gleaner
* glcon gleaner setup --cfgName X
-* glcon gleaner batch --cfgName X
-
+* glcon gleaner batch --cfgName X
## Nabu
* glcon nabu prefix --cfgName X
* glcon nabu prune --cfgName X
diff --git a/docs/SourceAPI.md b/docs/SourceAPI.md
new file mode 100644
index 00000000..f6ca6411
--- /dev/null
+++ b/docs/SourceAPI.md
@@ -0,0 +1,16 @@
+## Using a paged API endpoint as a Gleaner source
+
+Sometimes, instead of crawling webpages using a list in a sitemap, we have the opportunity to query an API that will let us directly ingest JSON-LD. To do so, we can specify a `sourcetype: api` in our Gleaner config yaml, and Gleaner will iterate through a paged API, using the given `url` as a template. For example, let's say that you want to use the API endpoint at `http://test-api.com`, and that you can page through it by using a url like `http://test/api.com/page/4`. You would put this in your config:
+
+```yaml
+url: http://test-api.com/page/%d
+```
+
+Notice the `%d` where the page number goes. Gleaner will then increment that number (starting from 0) until it gets an error back from the API.
+
+Optionally, you can set a limit on the number of pages to iterate through, using `apipagelimit`. This means that Gleaner will page through the API until it gets an error back *or* until it reaches the limit you set. That looks like the example below:
+
+```yaml
+url: http://test-api.com/page/%d
+apipagelimit: 200
+```
diff --git a/docs/cliDocker/gleanerDocker.sh b/docs/cliDocker/gleanerDocker.sh
index dd856db6..ad5ae451 100755
--- a/docs/cliDocker/gleanerDocker.sh
+++ b/docs/cliDocker/gleanerDocker.sh
@@ -1,14 +1,11 @@
#!/bin/bash
-# gleaner-cli
-# A wrapper script for invoking gleaner-cli with docker
-# Put this script in $PATH as `rgleaner-cli`
-# TODO
-# add help with things like config for
-# go run ../../cmd/gleaner/main.go -cfg eco_local -source '{"Name":"opentopo", "URL":"https://portal.opentopography.org/sitemap.xml", "Headless":false, "PID":"http://doi.org/10.17616/R3J616"}'
+# gleaner-cli : A wrapper script for invoking gleaner-cli with docker
+
+# TODO: add help with things like config for
+# cfg eco_local
+# cfg eco_local -source cfg_name
-# This code pulls fils/gleaner:latest However, if that breaks things you might want to exchange latest for a specific version. See
-# https://hub.docker.com/repository/docker/fils/gleaner for specific version numbers available.
PROGNAME="$(basename $0)"
VERSION="v0.0.1"
@@ -41,8 +38,8 @@ check_cmd_in_path(){
check_cmd_in_path docker
check_cmd_in_path curl
-# Set up mounted volumes, environment, and run our containerized command
-# podman needs --privileged to mount /dev/shm
+
+# Podman: podman needs --privileged to mount /dev/shm
#exec podman run \
#--privileged \
#--interactive --tty --rm \
@@ -50,6 +47,7 @@ check_cmd_in_path curl
#--workdir /wd \
#"localhost/nsfearthcube/gleaner:latest" "$@"
+# Docker: current docker command to do local volume mounts
exec docker run \
--interactive --tty --rm \
--volume "$PWD":/wd \
diff --git a/docs/images/g9.png b/docs/images/g9.png
new file mode 100644
index 00000000..82b0f464
Binary files /dev/null and b/docs/images/g9.png differ
diff --git a/docs/images/g9.svg b/docs/images/g9.svg
new file mode 100644
index 00000000..8fb079ee
--- /dev/null
+++ b/docs/images/g9.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/go.mod b/go.mod
index b3e9c3a8..9234dcad 100644
--- a/go.mod
+++ b/go.mod
@@ -1,9 +1,14 @@
module github.com/gleanerio/gleaner
-go 1.14
+// to update the nabu dependency used by glcon
+// go get github.com/gleanerio/nabu@dev
+// go mod tidy
+
+go 1.19
require (
github.com/PuerkitoBio/goquery v1.8.0
+ github.com/approvals/go-approval-tests v0.0.0-20220530063708-32d5677069bd
github.com/aws/aws-sdk-go v1.41.12
github.com/chromedp/chromedp v0.6.5
github.com/gocarina/gocsv v0.0.0-20211020200912-82fc2684cc48
@@ -12,16 +17,86 @@ require (
github.com/knakk/rdf v0.0.0-20190304171630-8521bf4c5042
github.com/mafredri/cdp v0.32.0
github.com/minio/minio-go/v7 v7.0.15
- github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c
+ github.com/ohler55/ojg v1.14.5
+ github.com/piprate/json-gold v0.5.0
github.com/rs/xid v1.2.1
github.com/schollz/progressbar/v3 v3.8.3
- github.com/spf13/cobra v1.2.1
- github.com/spf13/viper v1.9.0
- github.com/stretchr/testify v1.7.0
+ github.com/spf13/cobra v1.5.0
+ github.com/spf13/viper v1.12.0
+ github.com/stretchr/testify v1.8.1
+ github.com/valyala/fasttemplate v1.2.2
github.com/xitongsys/parquet-go v1.6.0
github.com/xitongsys/parquet-go-source v0.0.0-20211010230925-397910c5e371
go.etcd.io/bbolt v1.3.6
- golang.org/x/crypto v0.1.0
+ golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
+)
+
+require (
+ cloud.google.com/go/compute v1.6.1 // indirect
+ github.com/andybalholm/brotli v1.0.4 // indirect
+ github.com/andybalholm/cascadia v1.3.1 // indirect
+ github.com/apache/thrift v0.14.1 // indirect
+ github.com/chromedp/cdproto v0.0.0-20210122124816-7a656c010d57 // indirect
+ github.com/chromedp/sysutil v1.0.0 // indirect
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/dustin/go-humanize v1.0.0 // indirect
+ github.com/fsnotify/fsnotify v1.5.4 // indirect
+ github.com/gobwas/httphead v0.1.0 // indirect
+ github.com/gobwas/pool v0.2.1 // indirect
+ github.com/gobwas/ws v1.0.4 // indirect
+ github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
+ github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
+ github.com/golang/protobuf v1.5.2 // indirect
+ github.com/golang/snappy v0.0.3 // indirect
+ github.com/google/uuid v1.2.0 // indirect
+ github.com/googleapis/gax-go/v2 v2.4.0 // indirect
+ github.com/gorilla/websocket v1.4.2 // indirect
+ github.com/gosuri/uilive v0.0.4 // indirect
+ github.com/hashicorp/hcl v1.0.0 // indirect
+ github.com/inconshreveable/mousetrap v1.0.0 // indirect
+ github.com/jmespath/go-jmespath v0.4.0 // indirect
+ github.com/josharian/intern v1.0.0 // indirect
+ github.com/json-iterator/go v1.1.12 // indirect
+ github.com/klauspost/compress v1.15.6 // indirect
+ github.com/klauspost/cpuid v1.3.1 // indirect
+ github.com/magiconair/properties v1.8.6 // indirect
+ github.com/mailru/easyjson v0.7.7 // indirect
+ github.com/mattn/go-isatty v0.0.14 // indirect
+ github.com/mattn/go-runewidth v0.0.13 // indirect
+ github.com/meilisearch/meilisearch-go v0.21.1 // indirect
+ github.com/minio/md5-simd v1.1.0 // indirect
+ github.com/minio/sha256-simd v0.1.1 // indirect
+ github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
+ github.com/mitchellh/go-homedir v1.1.0 // indirect
+ github.com/mitchellh/mapstructure v1.5.0 // indirect
+ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
+ github.com/modern-go/reflect2 v1.0.2 // indirect
+ github.com/pelletier/go-toml v1.9.5 // indirect
+ github.com/pelletier/go-toml/v2 v2.0.1 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
+ github.com/rivo/uniseg v0.2.0 // indirect
+ github.com/spf13/afero v1.8.2 // indirect
+ github.com/spf13/cast v1.5.0 // indirect
+ github.com/spf13/jwalterweatherman v1.1.0 // indirect
+ github.com/spf13/pflag v1.0.5 // indirect
+ github.com/subosito/gotenv v1.3.0 // indirect
+ github.com/tidwall/match v1.1.1 // indirect
+ github.com/tidwall/pretty v1.2.0 // indirect
+ github.com/valyala/bytebufferpool v1.0.0 // indirect
+ github.com/valyala/fasthttp v1.37.1-0.20220607072126-8a320890c08d // indirect
+ go.opencensus.io v0.23.0 // indirect
+ golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
+ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
+ golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
+ golang.org/x/text v0.3.7 // indirect
+ google.golang.org/appengine v1.6.7 // indirect
+ google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect
+ google.golang.org/grpc v1.46.2 // indirect
+ google.golang.org/protobuf v1.28.0 // indirect
+ gopkg.in/ini.v1 v1.66.4 // indirect
+ gopkg.in/yaml.v2 v2.4.0 // indirect
+ gopkg.in/yaml.v3 v3.0.1 // indirect
)
// just using bolt github.com/boltdb/bolt would be ok... but it complains if we mix.
@@ -29,12 +104,21 @@ require (
require (
github.com/boltdb/bolt v1.3.1
- github.com/gleanerio/nabu v0.0.0-20211107193830-958398c3aaef
+ github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13
+ github.com/orandin/lumberjackrus v1.0.1
github.com/oxffaa/gopher-parse-sitemap v0.0.0-20191021113419-005d2eb1def4
+ github.com/sirupsen/logrus v1.8.1
+ github.com/temoto/robotstxt v1.1.2
+ github.com/tidwall/gjson v1.14.4
+ github.com/tidwall/sjson v1.2.5
github.com/utahta/go-openuri v0.1.0
- golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1
- google.golang.org/api v0.60.0
+ golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
+ google.golang.org/api v0.81.0
+ gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)
+// to update the nabu dependency used by glcon
+// go get github.com/gleanerio/nabu@dev
+
// local replace. gleaner and nabu at same level
//replace github.com/gleanerio/nabu v0.0.0-20211107193830-958398c3aaef => "../nabu"
diff --git a/go.sum b/go.sum
index 2b4f33a3..70ca6587 100644
--- a/go.sum
+++ b/go.sum
@@ -3,6 +3,7 @@ cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMT
cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
+cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=
cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=
cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To=
@@ -15,6 +16,7 @@ cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOY
cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY=
cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI=
cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk=
+cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY=
cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg=
cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8=
cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0=
@@ -24,14 +26,21 @@ cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWc
cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ=
cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI=
cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4=
-cloud.google.com/go v0.97.0 h1:3DXvAyifywvq64LfkKaMOmkWPS1CikIQdMe2lY9vxU8=
cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc=
+cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA=
+cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A=
cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE=
cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc=
cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg=
cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc=
cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ=
+cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow=
+cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM=
+cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M=
+cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s=
+cloud.google.com/go/compute v1.6.1 h1:2sMmt8prCn7DPaG4Pmh0N3Inmc8cT8ae5k1M6VJ9Wqc=
+cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU=
cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=
cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk=
cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk=
@@ -45,6 +54,7 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo
cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
+cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo=
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
github.com/Azure/azure-pipeline-go v0.2.3/go.mod h1:x841ezTBIMG6O3lAcl8ATHnsOPVl2bqk7S3ta6S6u4k=
github.com/Azure/azure-storage-blob-go v0.14.0/go.mod h1:SMqIBi+SuiQH32bvyjngEewEeXoPfKMgWlBDaYf6fck=
@@ -54,14 +64,18 @@ github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSY
github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k=
github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8=
github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU=
+github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
+github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/PuerkitoBio/goquery v1.8.0 h1:PJTF7AmFCFKk1N6V6jmKfrNH9tV5pNE6lZMkG0gta/U=
github.com/PuerkitoBio/goquery v1.8.0/go.mod h1:ypIiRMtY7COPGk+I/YbZLbxsxn9g5ejnI2HSMtkjZvI=
github.com/RoaringBitmap/roaring v0.4.23/go.mod h1:D0gp8kJQgE1A4LQ5wFLggQEyvDi06Mq5mKs52e1TwOo=
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
+github.com/andybalholm/brotli v1.0.4 h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY3JY=
+github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
github.com/andybalholm/cascadia v1.3.1 h1:nhxRkql1kdYCc8Snf7D5/D3spOX+dBgjA6u8x004T2c=
github.com/andybalholm/cascadia v1.3.1/go.mod h1:R4bJ1UQfqADjvDa4P6HZHLh/3OxWWEqc0Sk8XGwHqvA=
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
@@ -69,6 +83,8 @@ github.com/apache/thrift v0.0.0-20181112125854-24918abba929/go.mod h1:cp2SuWMxlE
github.com/apache/thrift v0.13.1-0.20201008052519-daf620915714/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
github.com/apache/thrift v0.14.1 h1:Yh8v0hpCj63p5edXOLaqTJW0IJ1p+eMW6+YSOqw1d6s=
github.com/apache/thrift v0.14.1/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
+github.com/approvals/go-approval-tests v0.0.0-20220530063708-32d5677069bd h1:8j7sBEy0h6+Bvr0AeKHIHCsmzCzWGXAQweA7k+uiRYk=
+github.com/approvals/go-approval-tests v0.0.0-20220530063708-32d5677069bd/go.mod h1:PJOqSY8IofNv3heAD6k8E7EfFS6okiSS9bSAasaAUME=
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de/go.mod h1:DCaWoUhZrYW9p1lxo/cm8EmUOOzAPSEZNGF2DK1dJgw=
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
@@ -113,6 +129,7 @@ github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx2
github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
+github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
github.com/chromedp/cdproto v0.0.0-20210122124816-7a656c010d57 h1:htpyTFarq7OHx9SpkQ+7x20thTQA6JAsgnuMGoPbH4E=
github.com/chromedp/cdproto v0.0.0-20210122124816-7a656c010d57/go.mod h1:55pim6Ht4LJKdVLlyFJV/g++HsEA1hQxPbB5JyNdZC0=
github.com/chromedp/chromedp v0.6.5 h1:hPaDYBpvD2WFicln0ByzV+XRhSOtLgAgsu39O455iWY=
@@ -126,7 +143,12 @@ github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDk
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
+github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI=
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
+github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
+github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
+github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
+github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
github.com/colinmarc/hdfs/v2 v2.1.1/go.mod h1:M3x+k8UKKmxtFu++uAZ0OtDU8jR3jnaZIAc6yK4Ue0c=
github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=
github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
@@ -143,6 +165,7 @@ github.com/couchbase/vellum v1.0.2/go.mod h1:FcwrEivFpNi24R3jLOs3n+fs5RnuQnQqCLB
github.com/coyove/jsonbuilder v0.0.0-20160414062945-90ee6d2c3c43/go.mod h1:q6QokArxlMhkshZXFrEfxgT2FWj6af1WPlCV76sqCAI=
github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE=
github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU=
+github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8=
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM=
github.com/cznic/strutil v0.0.0-20181122101858-275e90344537/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc=
@@ -160,6 +183,8 @@ github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5y
github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ=
+github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0=
+github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE=
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64=
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052/go.mod h1:UbMTZqLaRiH3MsBH8va0n7s1pQYcu3uTb8G4tygF4Zg=
@@ -167,14 +192,16 @@ github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4/go.mod h1:5tD+ne
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU=
github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k=
+github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
-github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI=
github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU=
+github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI=
+github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/gleanerio/gleaner v0.0.0-20211103190335-f9d8811ee43b/go.mod h1:Xx/8sK0tqQRLSYLsyTR9NeLTGKpwmUOIFat0ilWqguw=
-github.com/gleanerio/nabu v0.0.0-20211107193830-958398c3aaef h1:fJ3fh3AFktjmXd+FIv1lYyds80/n3Ao2DMNQfD8azJQ=
-github.com/gleanerio/nabu v0.0.0-20211107193830-958398c3aaef/go.mod h1:tGRxO9CPE3nh9CFvnejJVhoF9GRBqgfOfQbOT+VODJA=
+github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13 h1:mZbPFymwB3Wk0yNhB7CsPh/UHjCxCl935qauCK/Fs0o=
+github.com/gleanerio/nabu v0.0.0-20230316180932-b68225cabb13/go.mod h1:0wdQdUV1gf22ySZhAAqKOQJFoIYk1yW+VKh2BaMtMuY=
github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE=
github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24=
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
@@ -184,7 +211,6 @@ github.com/go-ini/ini v1.62.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3I
github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
-github.com/go-resty/resty/v2 v2.3.0 h1:JOOeAvjSlapTT92p8xiS19Zxev1neGikoHsXJeOq8So=
github.com/go-resty/resty/v2 v2.3.0/go.mod h1:UpN9CgLZNsv4e9XG50UU8xdI0F43UQ4HmxLBDwaroHU=
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
@@ -199,11 +225,14 @@ github.com/gocarina/gocsv v0.0.0-20211020200912-82fc2684cc48/go.mod h1:5YoVOkjYA
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
+github.com/golang-jwt/jwt/v4 v4.4.2 h1:rcc4lwaZgFMCZ5jxF9ABolDcIHdBytAFgqFPbSJQAYs=
+github.com/golang-jwt/jwt/v4 v4.4.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0=
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e h1:1r7pUrabqp18hOBcwBwiTsbnFeTZHV9eER/QT5JVZxY=
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
+github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE=
+github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=
@@ -250,8 +279,10 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
+github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE=
+github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg=
+github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs=
github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0=
@@ -266,6 +297,7 @@ github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hf
github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
+github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
@@ -279,8 +311,12 @@ github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0=
-github.com/googleapis/gax-go/v2 v2.1.1 h1:dp3bWCh+PPO1zjRRiCSczJav13sBvG4UhNyVTa1KqdU=
github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM=
+github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM=
+github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM=
+github.com/googleapis/gax-go/v2 v2.4.0 h1:dS9eYAjhrE2RjmzYw2XAPvcXfmcQLtFEQWn0CR82awk=
+github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c=
+github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g=
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
github.com/gopherjs/gopherjs v0.0.0-20190910122728-9d188e94fb99/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
@@ -341,19 +377,23 @@ github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22
github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
-github.com/json-iterator/go v1.1.11 h1:uVUAXhF2To8cbw/3xN3pxj6kk7TYKs98NIrTqPlMWAQ=
github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
+github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
+github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk=
github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw=
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
+github.com/kisielk/godepgraph v0.0.0-20190626013829-57a7e4a651a9/go.mod h1:Gb5YEgxqiSSVrXKWQxDcKoCM94NO5QAwOwTaVmIUAMI=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
github.com/klauspost/compress v1.9.7/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
github.com/klauspost/compress v1.10.5/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=
-github.com/klauspost/compress v1.13.5 h1:9O69jUPDcsT9fEm74W92rZL9FQY7rCdaXVneq+yyzl4=
github.com/klauspost/compress v1.13.5/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
+github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
+github.com/klauspost/compress v1.15.6 h1:6D9PcO8QWu0JyaQ2zUMmu16T1T+zjjEpP91guRsvDfY=
+github.com/klauspost/compress v1.15.6/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU=
github.com/klauspost/cpuid v1.2.3/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
github.com/klauspost/cpuid v1.3.1 h1:5JNjFYYQrZeKRJ0734q51WCEEn2huer72Dc7K+R/b6s=
github.com/klauspost/cpuid v1.3.1/go.mod h1:bYW4mA6ZgKPob1/Dlai2LviZJO7KGI3uoWLd42rAQw4=
@@ -365,19 +405,23 @@ github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg=
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
-github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
+github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
-github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
+github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
+github.com/lucasb-eyer/go-colorful v1.0.2/go.mod h1:0MS4r+7BZKSJ5mw4/S5MPN+qHFF1fYclkSPilDOKW0s=
github.com/mafredri/cdp v0.32.0 h1:JzW2F+zVK2y9ZhbNWyjrwafZLL9oNnl9Tf6JQ149Og8=
github.com/mafredri/cdp v0.32.0/go.mod h1:YTCwLXkZSa18SGSIxCPMOGZcUJODZSNlAhiMqbyxWJg=
github.com/mafredri/go-lint v0.0.0-20180911205320-920981dfc79e/go.mod h1:k/zdyxI3q6dup24o8xpYjJKTCf2F7rfxLp6w/efTiWs=
github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
github.com/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls=
github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60=
-github.com/mailru/easyjson v0.7.6 h1:8yTIVnZgCoiM1TgqoeTl+LfU5Jg6/xL3QhGQnimLYnA=
+github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo=
+github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60=
github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
+github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
+github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=
github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
@@ -393,11 +437,12 @@ github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRC
github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
+github.com/meilisearch/meilisearch-go v0.21.1 h1:Ns+R38TPitUKbz8hbg3ENzsR9J91LpxSJQOBexCsS7E=
+github.com/meilisearch/meilisearch-go v0.21.1/go.mod h1:XmVwi0ZyCdkEQ4cQvA3nh5TT0UByux4kBEWs4WUEp20=
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso=
github.com/minio/md5-simd v1.1.0 h1:QPfiOqlZH+Cj9teu0t9b1nTBfPbyTl16Of5MeuShdK4=
github.com/minio/md5-simd v1.1.0/go.mod h1:XpBqgZULrMYD3R+M28PcmP0CkI7PEMzB3U77ZrKZ0Gw=
-github.com/minio/minio-go v6.0.14+incompatible h1:fnV+GD28LeqdN6vT2XdGKW8Qe/IfjJDswNVuni6km9o=
github.com/minio/minio-go v6.0.14+incompatible/go.mod h1:7guKYtitv8dktvNUGrhzmNlA5wrAABTQXCoesZdFQO8=
github.com/minio/minio-go/v7 v7.0.15 h1:r9/NhjJ+nXYrIYvbObhvc1wPj3YH1iDpJzz61uRKLyY=
github.com/minio/minio-go/v7 v7.0.15/go.mod h1:pUV0Pc+hPd1nccgmzQF/EXh48l/Z/yps6QPF1aaie4g=
@@ -416,24 +461,29 @@ github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0Qu
github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
-github.com/mitchellh/mapstructure v1.4.2 h1:6h7AQ0yhTcIsmFmnAwQls75jp2Gzs4iB8W7pjMO+rqo=
github.com/mitchellh/mapstructure v1.4.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
+github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
+github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
-github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=
github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
+github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
+github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg=
github.com/mschoch/smat v0.2.0/go.mod h1:kc9mz7DoBKqDyiRL7VZN8KvXQMWeTaVnttLRXOlotKw=
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
github.com/ncw/swift v1.0.52/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM=
-github.com/neuml/txtai.go v1.0.0 h1:h8uN/3uNIouzv2sSz/uoGMfKHZjA2IvUnMUlDxoV46Q=
github.com/neuml/txtai.go v1.0.0/go.mod h1:tgXSUc3MvGdyuXDAxZUiADDMfPRzKS8Z/qjC8CE6gfc=
+github.com/ohler55/ojg v1.14.5 h1:xCX2oyh/ZaoesbLH6fwVHStSJpk4o4eJs8ttXutzdg0=
+github.com/ohler55/ojg v1.14.5/go.mod h1:7Ghirupn8NC8hSSDpI0gcjorPxj+vSVIONDWfliHR1k=
github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
+github.com/orandin/lumberjackrus v1.0.1 h1:7ysDQ0MHD79zIFN9/EiDHjUcgopNi5ehtxFDy8rUkWo=
+github.com/orandin/lumberjackrus v1.0.1/go.mod h1:xYLt6H8W93pKnQgUQaxsApS0Eb4BwHLOkxk5DVzf5H0=
github.com/oxffaa/gopher-parse-sitemap v0.0.0-20191021113419-005d2eb1def4 h1:2vmb32OdDhjZf2ETGDlr9n8RYXx7c+jXPxMiPbwnA+8=
github.com/oxffaa/gopher-parse-sitemap v0.0.0-20191021113419-005d2eb1def4/go.mod h1:2JQx4jDHmWrbABvpOayg/+OTU6ehN0IyK2EHzceXpJo=
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
@@ -441,16 +491,20 @@ github.com/paulmach/go.geojson v1.4.0/go.mod h1:YaKx1hKpWF+T2oj2lFJPsW/t1Q5e1jQI
github.com/pborman/getopt v0.0.0-20180729010549-6fdd0a2c7117/go.mod h1:85jBQOZwpVEaDAr341tbn15RS4fCAsIst0qp7i8ex1o=
github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
-github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM=
github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
+github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8=
+github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
+github.com/pelletier/go-toml/v2 v2.0.1 h1:8e3L2cCQzLFi2CR4g7vGFuFxX7Jl1kKX8gW+iV0GUKU=
+github.com/pelletier/go-toml/v2 v2.0.1/go.mod h1:r9LEWfGN8R5k0VXJ+0BkIe7MYkRdwZOjgMj2KwnJFUo=
github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU=
github.com/piprate/json-gold v0.4.0/go.mod h1:OK1z7UgtBZk06n2cDE2OSq1kffmjFFp5/2yhLLCz9UM=
-github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c h1:F4YQvOA7UTccz06y59KLw4C0iXD28hnKUP9R9zeSe8U=
-github.com/piprate/json-gold v0.4.1-0.20210813112359-33b90c4ca86c/go.mod h1:OK1z7UgtBZk06n2cDE2OSq1kffmjFFp5/2yhLLCz9UM=
+github.com/piprate/json-gold v0.5.0 h1:RmGh1PYboCFcchVFuh2pbSWAZy4XJaqTMU4KQYsApbM=
+github.com/piprate/json-gold v0.5.0/go.mod h1:WZ501QQMbZZ+3pXFPhQKzNwS1+jls0oqov3uQ2WasLs=
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI=
+github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI=
@@ -467,6 +521,7 @@ github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y8
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
+github.com/protolambda/gocyto v0.0.1/go.mod h1:jZhuPlLr3wSLj28xusIgEzvE0X7KQgOC79KayWsMJ7k=
github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4=
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=
github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
@@ -474,13 +529,14 @@ github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
+github.com/rogpeppe/go-internal v1.6.1 h1:/FiVV8dS/e+YqF2JvO3yXRFbBLTIuSDkuC7aBOAvL+k=
github.com/rs/xid v1.2.1 h1:mhH9Nq+C1fY2l1XIpgxIiUOfNpRBYH1kKcr+qfKgjRc=
github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ=
github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g=
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
+github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
github.com/sagikazarmark/crypt v0.1.0/go.mod h1:B/mN0msZuINBtQ1zZLEQcegFJJf9vnYIR88KRMEuODE=
-github.com/schollz/progressbar v1.0.0 h1:gbyFReLHDkZo8mxy/dLWMr+Mpb1MokGJ1FqCiqacjZM=
github.com/schollz/progressbar v1.0.0/go.mod h1:/l9I7PC3L3erOuz54ghIRKUEFcosiWfLvJv+Eq26UMs=
github.com/schollz/progressbar/v3 v3.8.3 h1:FnLGl3ewlDUP+YdSwveXBaXs053Mem/du+wr7XSYKl8=
github.com/schollz/progressbar/v3 v3.8.3/go.mod h1:pWnVCjSBZsT2X3nx9HfRdnCDrpbevliMeoEVhStwHko=
@@ -496,15 +552,18 @@ github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4k
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=
github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk=
-github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY=
github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I=
+github.com/spf13/afero v1.8.2 h1:xehSyVa0YnHWsJ49JFljMpg1HX19V6NDZ1fkm1Xznbo=
+github.com/spf13/afero v1.8.2/go.mod h1:CtAatgMJh6bJEIs48Ay/FOnkljP3WeGUG0MC1RfAqwo=
github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
-github.com/spf13/cast v1.4.1 h1:s0hze+J0196ZfEMTs80N7UlFt0BDuQ7Q+JDnHiMWKdA=
github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
+github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w=
+github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU=
github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU=
-github.com/spf13/cobra v1.2.1 h1:+KmjbUw1hriSNMF55oPrkZcb27aECyrj8V2ytv7kWDw=
github.com/spf13/cobra v1.2.1/go.mod h1:ExllRjgxM/piMAM+3tAZvg8fsklGAf3tPfi+i8t68Nk=
+github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU=
+github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM=
github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=
github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo=
@@ -513,34 +572,53 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s=
github.com/spf13/viper v1.8.1/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns=
-github.com/spf13/viper v1.9.0 h1:yR6EXjTp0y0cLN8OZg1CRZmOBdI88UcGkhgyJhu6nZk=
github.com/spf13/viper v1.9.0/go.mod h1:+i6ajR7OX2XaiBkrcZJFK21htRk7eDeLg7+O6bhUPP4=
+github.com/spf13/viper v1.12.0 h1:CZ7eSOd3kZoaYDLbXnmzgQI5RlciuXBMA+18HwHRfZQ=
+github.com/spf13/viper v1.12.0/go.mod h1:b6COn30jlNxbm/V2IqWiNWkJ+vZNiMNksliPCiuKtSI=
github.com/steveyen/gtreap v0.1.0/go.mod h1:kl/5J7XbrOmlIbYIXdRHDDE5QxHqpk0cmkT7Z4dM9/Y=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
+github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
+github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=
+github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
+github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
+github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
+github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=
+github.com/subosito/gotenv v1.3.0 h1:mjC+YW8QpAdXibNi+vNWgzmgBH4+5l5dCXv8cNysBLI=
+github.com/subosito/gotenv v1.3.0/go.mod h1:YzJjq/33h7nrwdY+iHMhEOEEbW0ovIz0tB6t6PwAXzs=
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
github.com/tebeka/snowball v0.4.2/go.mod h1:4IfL14h1lvwZcp1sfXuuc7/7yCsvVffTWxWxCLfFpYg=
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c/go.mod h1:ahpPrc7HpcfEWDQRZEmnXMzHY03mLDYMCxeDzy46i+8=
-github.com/tidwall/gjson v1.6.7 h1:Mb1M9HZCRWEcXQ8ieJo7auYyyiSux6w9XN3AdTpxJrE=
-github.com/tidwall/gjson v1.6.7/go.mod h1:zeFuBCIqD4sN/gmqBzZ4j7Jd6UcA2Fc56x7QFsv+8fI=
-github.com/tidwall/match v1.0.3 h1:FQUVvBImDutD8wJLN6c5eMzWtjgONK9MwIBCOrUJKeE=
-github.com/tidwall/match v1.0.3/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM=
-github.com/tidwall/pretty v1.0.2 h1:Z7S3cePv9Jwm1KwS0513MRaoUe3S01WPbLNV40pwWZU=
-github.com/tidwall/pretty v1.0.2/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
+github.com/temoto/robotstxt v1.1.2 h1:W2pOjSJ6SWvldyEuiFXNxz3xZ8aiWX5LbfDiOFd7Fxg=
+github.com/temoto/robotstxt v1.1.2/go.mod h1:+1AmkuG3IYkh1kv0d2qEB9Le88ehNO0zwOr3ujewlOo=
+github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
+github.com/tidwall/gjson v1.14.4 h1:uo0p8EbA09J7RQaflQ1aBRffTR7xedD2bcIVSYxLnkM=
+github.com/tidwall/gjson v1.14.4/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
+github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA=
+github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM=
+github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=
+github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
+github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
+github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
github.com/tinylib/msgp v1.1.0/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE=
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0=
github.com/utahta/go-openuri v0.1.0 h1:5t+GPGBjwEt7oRTMArC47QMIiXarzNO6W3PDy8nXGoM=
github.com/utahta/go-openuri v0.1.0/go.mod h1:wg5kOkfgUWHGFacyyH+FsrEzB++WPpFyKrwDSeo69Ng=
+github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
+github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
+github.com/valyala/fasthttp v1.37.1-0.20220607072126-8a320890c08d h1:xS9QTPgKl9ewGsAOPc+xW7DeStJDqYPfisDmeSCcbco=
+github.com/valyala/fasthttp v1.37.1-0.20220607072126-8a320890c08d/go.mod h1:t/G+3rLek+CyY9bnIE+YlMRddxVAAGjhxndDB4i4C0I=
+github.com/valyala/fasttemplate v1.2.2 h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQD0Loo=
+github.com/valyala/fasttemplate v1.2.2/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
+github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc=
github.com/willf/bitset v1.1.10/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4=
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
github.com/xitongsys/parquet-go v1.5.1/go.mod h1:xUxwM8ELydxh4edHGegYq1pA8NnMKDx0K/GyB0o2bww=
@@ -556,7 +634,6 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de
github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
-github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ=
go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU=
@@ -589,11 +666,13 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
+golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8=
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
-golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
-golang.org/x/crypto v0.1.0 h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU=
-golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw=
+golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
+golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
+golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 h1:kUhD7nTDoI3fVd9G4ORWrbV5NY0liEs/Jg2pv5f+bBA=
+golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
@@ -667,6 +746,7 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY
golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
+golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc=
@@ -674,9 +754,14 @@ golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96b
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20210916014120-12bc252f5db8/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
-golang.org/x/net v0.1.0 h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0=
-golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco=
+golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
+golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
+golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
+golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
+golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
+golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
+golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 h1:NWy5+hlRbC7HK+PmcXVUmW1IMyFce7to56IUvhUFm7Y=
+golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@@ -693,8 +778,11 @@ golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
-golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1 h1:B333XXssMuKQeBwiNODx4TupZy7bf4sxFZnN2ZOcvUE=
-golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
+golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
+golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc=
+golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc=
+golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 h1:OSnWWcOd/CtWQC2cYSBgbTSJv3ciqd8r54ySIW2y3RE=
+golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -706,8 +794,8 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
-golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 h1:uVc8UZUe6tr40fFVnUP5Oj+veunVezqYl9z7DYw9xzw=
-golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20220513210516-0976fa681c29 h1:w8s32wxx3sY+OjLlv9qltkLU5yvJzxjjgiHWLjdIcw4=
+golang.org/x/sync v0.0.0-20220513210516-0976fa681c29/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
@@ -762,6 +850,7 @@ golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210122093101-04d7465088b8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210319071255-635bc2c9138d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
@@ -769,6 +858,7 @@ golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
@@ -779,17 +869,22 @@ golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a h1:dGzPydgVsqGcTRVwiLJ1jVbufYwmzD3LfVPLKsKg+0k=
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U=
-golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
+golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
-golang.org/x/term v0.1.0 h1:g6Z6vPFA9dYBAF7DWcH6sCcOntplXsDKcliusYijMlw=
-golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
@@ -798,9 +893,8 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
+golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
-golang.org/x/text v0.4.0 h1:BrVqGRd7+k1DiOgtnFvAkoQEWQvBc25ouMJM6429SFg=
-golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
@@ -817,6 +911,7 @@ golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBn
golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
+golang.org/x/tools v0.0.0-20190712213246-8b927904ee0d/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI=
golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
@@ -854,6 +949,7 @@ golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4f
golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
+golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0=
golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
@@ -864,8 +960,10 @@ golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df h1:5Pf6pFKu98ODmgnpvkJ3kFUOQGGLIzLIkbzUHp47618=
+golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
@@ -896,8 +994,16 @@ google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6
google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE=
google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE=
google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI=
-google.golang.org/api v0.60.0 h1:eq/zs5WPH4J9undYM9IP1O7dSr7Yh8Y0GtSCpzGzIUk=
-google.golang.org/api v0.60.0/go.mod h1:d7rl65NZAkEQ90JFzqBjcRq1TVeG5ZoGV3sSpEnnVb4=
+google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I=
+google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo=
+google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g=
+google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA=
+google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8=
+google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs=
+google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA=
+google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw=
+google.golang.org/api v0.81.0 h1:o8WF5AvfidafWbFjsRyupxyEQJNUWxLZJCK5NXrxZZ8=
+google.golang.org/api v0.81.0/go.mod h1:FA6Mb/bZxj706H2j+j2d6mHEEaHBmbbWnkfvmorOCko=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
@@ -941,7 +1047,9 @@ google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6D
google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
@@ -962,8 +1070,25 @@ google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEc
google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY=
google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY=
google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
-google.golang.org/genproto v0.0.0-20211021150943-2b146023228c h1:FqrtZMB5Wr+/RecOM3uPJNPfWR8Upb5hAPnt7PU6i4k=
-google.golang.org/genproto v0.0.0-20211021150943-2b146023228c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
+google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
+google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
+google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
+google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
+google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
+google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc=
+google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI=
+google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI=
+google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI=
+google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI=
+google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E=
+google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo=
+google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo=
+google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo=
+google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo=
+google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo=
+google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4=
+google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd h1:e0TwkXOdbnH/1x5rc5MZ/VYyiZ4v+RdVfrGMqEwT68I=
+google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
@@ -988,8 +1113,13 @@ google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQ
google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM=
google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE=
google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE=
-google.golang.org/grpc v1.40.0 h1:AGJ0Ih4mHjSeibYkFGh1dD9KJ/eOtZ93I6hoHhukQ5Q=
google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34=
+google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34=
+google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU=
+google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ=
+google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk=
+google.golang.org/grpc v1.46.2 h1:u+MLGgVf7vRdjEYZ8wDFhAVNmhkbJ5hmrA1LMWK1CAQ=
+google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk=
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
@@ -1003,8 +1133,9 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
-google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ=
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
+google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=
+google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
@@ -1015,13 +1146,16 @@ gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
gopkg.in/ini.v1 v1.57.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
-gopkg.in/ini.v1 v1.63.2 h1:tGK/CyBg7SMzb60vP1M03vNZ3VDu3wGQJwn7Sxi9r3c=
gopkg.in/ini.v1 v1.63.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
+gopkg.in/ini.v1 v1.66.4 h1:SsAcf+mM7mRZo2nJNGt8mZCjG8ZRaNGMURJw7BsIST4=
+gopkg.in/ini.v1 v1.66.4/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
gopkg.in/jcmturner/aescts.v1 v1.0.1/go.mod h1:nsR8qBOg+OucoIW+WMhB3GspUQXq9XorLnQb9XtvcOo=
gopkg.in/jcmturner/dnsutils.v1 v1.0.1/go.mod h1:m3v+5svpVOhtFAP/wSz+yzh4Mc0Fg7eRhxkJMWSIz9Q=
gopkg.in/jcmturner/goidentity.v3 v3.0.0/go.mod h1:oG2kH0IvSYNIu80dVAyu/yoefjq1mNfM5bm88whjWx4=
gopkg.in/jcmturner/gokrb5.v7 v7.3.0/go.mod h1:l8VISx+WGYp+Fp7KRbsiUuXTTOnxIc3Tuvyavf11/WM=
gopkg.in/jcmturner/rpc.v1 v1.1.0/go.mod h1:YIdkC4XfD6GXbzje11McwsDuOlZQSb9W4vfLvuNnlv8=
+gopkg.in/natefinch/lumberjack.v2 v2.0.0 h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=
+gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k=
gopkg.in/redis.v5 v5.2.9/go.mod h1:6gtv0/+A4iM08kdRfocWYB3bLX2tebpNtfKlFT6H4mY=
gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
@@ -1032,8 +1166,9 @@ gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
+gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
+gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
diff --git a/internal/check/check.go b/internal/check/check.go
index 5906b160..d5a2dba2 100644
--- a/internal/check/check.go
+++ b/internal/check/check.go
@@ -3,7 +3,9 @@ package check
import (
"context"
"fmt"
- "log"
+ "github.com/gleanerio/gleaner/internal/config"
+ log "github.com/sirupsen/logrus"
+ "github.com/spf13/viper"
"github.com/minio/minio-go/v7"
)
@@ -27,7 +29,7 @@ func Buckets(mc *minio.Client, bucket string) error {
return fmt.Errorf("unable to locate required bucket: %s, did you run gleaner with -setup the first to set up buckets?", bucket)
}
if found {
- log.Printf("Validated access to object store: %s\n", bucket)
+ log.Debug("Validated access to object store:", bucket)
}
// }
@@ -41,18 +43,76 @@ func MakeBuckets(mc *minio.Client, bucket string) error {
// for i := range bl {
found, err := mc.BucketExists(context.Background(), bucket)
if err != nil {
- log.Printf("Existing bucket %s check: %v\n", bucket, err)
+ log.Debug("Existing bucket", bucket, "check:", err)
}
if found {
- log.Printf("Gleaner Bucket %s found.\n", bucket)
+ log.Debug("Gleaner Bucket", bucket, "found.")
} else {
- log.Printf("Gleaner Bucket %s not found, generating\n", bucket)
+ log.Debug("Gleaner Bucket", bucket, "not found, generating")
err = mc.MakeBucket(context.Background(), bucket, minio.MakeBucketOptions{Region: "us-east-1"}) // location is kinda meaningless here
if err != nil {
- log.Printf("Make bucket: %v\n", err)
+ log.Debug("Make bucket:", err)
}
}
// }
return err
}
+
+/*
+*
+Setup Gleaner buckets
+*/
+func Setup(mc *minio.Client, v1 *viper.Viper) error {
+ ms := v1.Sub("minio")
+ m1, err := config.ReadMinioConfig(ms)
+ if err != nil {
+ log.Error("Error reading gleaner config", err)
+ return err
+ }
+ // Validate Minio is up TODO: validate all expected containers are up
+ log.Info("Validating access to object store")
+ err = ConnCheck(mc)
+ if err != nil {
+ log.Error("Connection issue, make sure the minio server is running and accessible.", err)
+ return err
+ }
+ // If requested, set up the buckets
+ log.Info("Setting up buckets")
+ err = MakeBuckets(mc, m1.Bucket)
+ if err != nil {
+ log.Error("Error making buckets for Setup call", err)
+ return err
+ }
+
+ err = PreflightChecks(mc, v1) // postsetup test ;)
+ if err != nil {
+ return err
+ }
+ log.Info("Buckets generated. Object store should be ready for runs")
+ return nil
+
+}
+
+/*
+Check to see we can connect to s3 instance, and that buckets exist
+Might also be used to flight check bolt database, and if containers are up
+*/
+func PreflightChecks(mc *minio.Client, v1 *viper.Viper) error {
+ // Validate Minio access
+ bucketName, err := config.GetBucketName(v1)
+
+ err = ConnCheck(mc)
+ if err != nil {
+ log.Error("Connection issue, make sure the minio server is running and accessible.", err)
+ return err
+ }
+
+ // Check our bucket is ready
+ err = Buckets(mc, bucketName)
+ if err != nil {
+ log.Error("Can not find bucket.", err)
+ return err
+ }
+ return nil
+}
diff --git a/internal/common/calcShaNorm.go b/internal/common/calcShaNorm.go
index d3572f9c..9117ec45 100644
--- a/internal/common/calcShaNorm.go
+++ b/internal/common/calcShaNorm.go
@@ -3,9 +3,10 @@ package common
import (
"crypto/sha1"
"encoding/json"
+ "errors"
"fmt"
-
"github.com/piprate/json-gold/ld"
+ log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
)
@@ -35,12 +36,21 @@ func GetNormSHA(jsonld string, v1 *viper.Viper) (string, error) {
return "", err
}
+ h := sha1.New()
+
normalizedTriples, err := proc.Normalize(myInterface, options)
if err != nil {
+ log.Error("Error normalizing jsonld: ", err)
return "", err
}
+ // even an empty interface/string generates a sha. so if this is empty, do this now.
+ if normalizedTriples == "" {
+ log.Error("Error: empty normalize triples")
+ hs := GetSHA(jsonld)
+ err = errors.New("Error: empty normalize triples")
+ return fmt.Sprintf("%x", hs), err
+ }
- h := sha1.New()
h.Write([]byte(fmt.Sprint(normalizedTriples.(string))))
hs := h.Sum(nil)
return fmt.Sprintf("%x", hs), nil
diff --git a/internal/common/calcmd5.go b/internal/common/calcmd5.go
index 338b60fe..b102d4f6 100644
--- a/internal/common/calcmd5.go
+++ b/internal/common/calcmd5.go
@@ -4,8 +4,8 @@ import (
"crypto/md5"
"encoding/json"
"fmt"
+ log "github.com/sirupsen/logrus"
"io"
- "log"
"strings"
"github.com/piprate/json-gold/ld"
diff --git a/internal/common/errors.go b/internal/common/errors.go
new file mode 100644
index 00000000..00df1f5d
--- /dev/null
+++ b/internal/common/errors.go
@@ -0,0 +1,29 @@
+package common
+
+import "fmt"
+
+// MultiError is returned by batch operations when there are errors with
+// particular elements. Errors will be in a one-to-one correspondence with
+// the input elements; successful elements will have a nil entry.
+type MultiError []error
+
+func (m MultiError) Error() string {
+ s, n := "", 0
+ for _, e := range m {
+ if e != nil {
+ if n == 0 {
+ s = e.Error()
+ }
+ n++
+ }
+ }
+ switch n {
+ case 0:
+ return "(0 errors)"
+ case 1:
+ return s
+ case 2:
+ return s + " (and 1 other error)"
+ }
+ return fmt.Sprintf("%s (and %d other errors)", s, n-1)
+}
diff --git a/internal/common/getObjects.go b/internal/common/getObjects.go
index 59ea2e35..7f214332 100644
--- a/internal/common/getObjects.go
+++ b/internal/common/getObjects.go
@@ -2,7 +2,7 @@ package common
import (
"bytes"
- "log"
+ log "github.com/sirupsen/logrus"
"context"
minio "github.com/minio/minio-go/v7"
@@ -34,19 +34,19 @@ func GetMillObjects(mc *minio.Client, prefix string) []Entry {
for object := range objectCh {
if object.Err != nil {
- log.Println(object.Err)
+ log.Error(object.Err)
return nil
}
fo, err := mc.GetObject(context.Background(), bucketname, object.Key, minio.GetObjectOptions{})
if err != nil {
- log.Println(err)
+ log.Error(err)
return nil
}
oi, err := fo.Stat()
if err != nil {
- log.Println("Issue with reading an object.. should I just fatal on this to make sure?")
+ log.Error("Issue with reading an object.. should I just fatal on this to make sure?", err)
}
urlval := ""
sha1val := ""
@@ -68,7 +68,7 @@ func GetMillObjects(mc *minio.Client, prefix string) []Entry {
}
- log.Println(len(entries))
+ log.Debug(len(entries))
// multiCall(entries)
return entries
diff --git a/internal/common/getShapes.go b/internal/common/getShapes.go
index 424f8adb..570d3f2e 100644
--- a/internal/common/getShapes.go
+++ b/internal/common/getShapes.go
@@ -4,7 +4,7 @@ import (
"bytes"
"context"
minio "github.com/minio/minio-go/v7"
- "log"
+ log "github.com/sirupsen/logrus"
)
// GetShapeGraphs gets the shape graphs the shacl miller will use.
@@ -25,20 +25,20 @@ func GetShapeGraphs(mc *minio.Client, bucketname string) []Entry {
for object := range objectCh {
if object.Err != nil {
- log.Println(object.Err)
+ log.Error(object.Err)
return nil
}
//fo, err := mc.GetObject(bucketname, object.Key, minio.GetObjectOptions{})
fo, err := mc.GetObject(context.Background(), bucketname, object.Key, minio.GetObjectOptions{})
if err != nil {
- log.Println(err)
+ log.Error(err)
return nil
}
oi, err := fo.Stat()
if err != nil {
- log.Println("Issue with reading an object.. should I just fatal on this to make sure?")
+ log.Error("Issue with reading an object.. should I just fatal on this to make sure?", err)
}
urlval := ""
sha1val := ""
@@ -60,7 +60,7 @@ func GetShapeGraphs(mc *minio.Client, bucketname string) []Entry {
}
- log.Println(len(entries))
+ log.Debug(len(entries))
// multiCall(entries)
return entries
diff --git a/internal/common/identifier.go b/internal/common/identifier.go
new file mode 100644
index 00000000..12de0217
--- /dev/null
+++ b/internal/common/identifier.go
@@ -0,0 +1,210 @@
+package common
+
+/* info on possible packages:
+https://cburgmer.github.io/json-path-comparison/
+using https://github.com/ohler55/ojg
+
+test your jsonpaths here:
+http://jsonpath.herokuapp.com/
+There are four implementations... so you can see if one might be a little quirky
+*/
+import (
+ "errors"
+ "fmt"
+ "github.com/gleanerio/gleaner/internal/config"
+ "github.com/ohler55/ojg/jp"
+ "github.com/ohler55/ojg/oj"
+ log "github.com/sirupsen/logrus"
+ "github.com/spf13/viper"
+ "sort"
+ "strings"
+)
+
+// Identifier is the structure returned the information
+type Identifier struct {
+ UniqueId string // file sha, identifier sha, or url normalized identifier
+ IdentifierType string // the returned IdentifierType..
+ MatchedPath string
+ MatchedString string
+ JsonSha string
+}
+
+var jsonPathsDefault = []string{"$['@graph'][?(@['@type']=='schema:Dataset')]['@id']", "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value", "$.identifier.value", "$.identifier", "$['@id']", "$.url"}
+
+func GenerateIdentifier(v1 *viper.Viper, source config.Sources, jsonld string) (Identifier, error) {
+
+ // Generate calls also do the casecading aka if IdentifierSha is [] it calls JsonSha
+ switch source.IdentifierType {
+ case config.IdentifierString:
+ return GenerateIdentiferString(v1, source, jsonld)
+ case config.IdentifierSha:
+ return GenerateIdentifierSha(v1, source, jsonld)
+ case config.NormalizedJsonSha:
+ return GenerateNormalizedSha(v1, jsonld)
+ default: //config.filesha
+ return GenerateFileSha(v1, jsonld)
+
+ }
+
+}
+
+func GetIdentifierByPath(jsonPath string, jsonld string) (interface{}, error) {
+ obj, err := oj.ParseString(jsonld)
+ if err != nil {
+ return "", err
+ }
+ x, err := jp.ParseString(jsonPath)
+ ys := x.Get(obj)
+
+ if err != nil {
+ return "", err
+ }
+ // we need to sort the results
+ aString := make([]string, len(ys))
+ for i, v := range ys {
+ aString[i] = v.(string)
+ }
+ sort.SliceStable(aString, func(i, j int) bool {
+ return aString[i] < aString[j]
+ })
+ return aString, err
+}
+
+// given a set of json paths return the first to the last.
+/*
+Pass an array of JSONPATH, and get returned the first not empty, result
+Cautions: test your paths, consensus returns [] for a $.identifer.value, even through
+
+{ identifier:"string"}
+has no value:
+
+"idenfitier":
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ }
+https://cburgmer.github.io/json-path-comparison/results/dot_notation_on_object_without_key.html
+https://cburgmer.github.io/json-path-comparison/results/dot_notation_on_null_value.html
+*/
+func GetIdentiferByPaths(jsonpaths []string, jsonld string) (interface{}, string, error) {
+ for _, jsonPath := range jsonpaths {
+ obj, err := GetIdentifierByPath(jsonPath, jsonld)
+ if err == nil {
+ // returned a string, but
+ // sometimes an empty string is returned
+ if fmt.Sprint(obj) == "[]" {
+ continue
+ }
+ return obj, jsonPath, err
+
+ } else {
+ // error,
+ continue
+ }
+ }
+ return "", "", errors.New("No Match")
+}
+
+func GenerateIdentiferString(v1 *viper.Viper, source config.Sources, jsonld string) (Identifier, error) {
+ uniqueid, err := GenerateIdentifierSha(v1, source, jsonld)
+
+ if err != nil {
+ return uniqueid, err
+ }
+ if uniqueid.MatchedString != "" {
+ uniqueid.UniqueId = uniqueid.MatchedString
+ uniqueid.IdentifierType = config.IdentifierString
+
+ }
+ return uniqueid, err
+}
+
+func GenerateIdentifierSha(v1 *viper.Viper, source config.Sources, jsonld string) (Identifier, error) {
+ // need a copy of the arrays, or it will get munged in a multithreaded env
+ var jsonpath = make([]string, len(jsonPathsDefault))
+ copy(jsonpath, jsonPathsDefault)
+
+ if len(source.IdentifierPath) > 0 && source.IdentifierPath != "" {
+ // this does not move an item to the front of the array, if the item already exists in the array,
+ // overriding the default overrides all paths
+ //jsonpath = append(source.IdentifierPath, jsonPathsDefault...)
+ //jsonpath = source.IdentifierPath
+ paths := strings.Split(source.IdentifierPath, ",")
+ for _, p := range paths {
+ jsonpath = config.MoveToFront(p, jsonpath)
+ }
+
+ }
+ jsonsha, err := GenerateNormalizedSha(v1, jsonld)
+ if err != nil {
+ return jsonsha, err
+ }
+ uniqueid, foundPath, err := GetIdentiferByPaths(jsonpath, jsonld)
+
+ if err == nil && uniqueid != "[]" {
+ id := Identifier{UniqueId: GetSHA(fmt.Sprint(uniqueid)),
+ IdentifierType: config.IdentifierSha,
+ MatchedPath: foundPath,
+ MatchedString: fmt.Sprint(uniqueid),
+ JsonSha: jsonsha.JsonSha,
+ }
+ return id, err
+ } else {
+ log.Error(config.IdentifierSha, "Action: Getting normalized sha Error:", err)
+ // generate a filesha
+ return GenerateNormalizedSha(v1, jsonld)
+ }
+}
+func GenerateNormalizedSha(v1 *viper.Viper, jsonld string) (Identifier, error) {
+ var id Identifier
+ //uuid := common.GetSHA(jsonld)
+ uuid, err := GetNormSHA(jsonld, v1) // Moved to the normalized sha value
+
+ if uuid == "" {
+ // error
+ log.Error("ERROR: uuid generator:", "Action: Getting normalized sha Error:", err)
+ id = Identifier{}
+ } else if err != nil {
+ // no error, then normalized triples generated
+ log.Info(" Action: Normalize sha generated sha:", uuid, " Error:", err)
+ id = Identifier{UniqueId: uuid,
+ IdentifierType: config.NormalizedJsonSha,
+ JsonSha: uuid,
+ }
+ err = nil
+ } else {
+ log.Debug(" Action: Json sha generated", uuid)
+ id = Identifier{UniqueId: uuid,
+ IdentifierType: config.JsonSha,
+ JsonSha: uuid,
+ }
+ }
+
+ log.Trace("jsonsha: ", uuid)
+ // fmt.Println("\njsonsha:", id)
+ return id, err
+}
+
+func GenerateFileSha(v1 *viper.Viper, jsonld string) (Identifier, error) {
+ var id Identifier
+ //uuid := common.GetSHA(jsonld)
+ uuid := GetSHA(jsonld) // Moved to the normalized sha value
+
+ if uuid == "" {
+ // error
+ log.Error("ERROR: uuid generator:", "Action: Getting file sha")
+ id = Identifier{}
+ }
+ log.Debug(" Action: Json sha generated", uuid)
+ id = Identifier{UniqueId: uuid,
+ IdentifierType: config.JsonSha,
+ JsonSha: uuid,
+ }
+
+ log.Trace("jsonsha: ", uuid)
+ // fmt.Println("\njsonsha:", id)
+ return id, nil
+}
diff --git a/internal/common/identifier_test.go b/internal/common/identifier_test.go
new file mode 100644
index 00000000..958ec4b7
--- /dev/null
+++ b/internal/common/identifier_test.go
@@ -0,0 +1,630 @@
+package common
+
+import (
+ "fmt"
+ configTypes "github.com/gleanerio/gleaner/internal/config"
+ "os"
+ "path/filepath"
+)
+
+/*
+This is to test various identifier
+It uses a structure of expectations to run a series of individual tests with the name: testname_jsonfilename.
+
+In the future, the JSON should probably be loaded from a file in resources_test folder.
+*/
+
+/* info on possible packages:
+https://cburgmer.github.io/json-path-comparison/
+using https://github.com/ohler55/ojg
+
+test your jsonpaths here:
+http://jsonpath.herokuapp.com/
+There are four implementations... so you can see if one might be a little quirky
+*/
+import (
+ "bytes"
+ "github.com/spf13/viper"
+ "github.com/stretchr/testify/assert"
+ "strings"
+ "testing"
+)
+
+// jsonexpectations is in test_common_structs
+
+// testdata is in internal/common/testdata/identifier
+// thoughts are that these many be migrated to an Approval Test approach.
+// gets rid of the extpectations part, and would match the entire returned identifier object.
+
+// should record a table of the file sha and normalize triple sha for each file
+
+var empty = []configTypes.Sources{}
+
+// using idenfiters as a stand in for array of identifiers.
+
+func testValidJsonPath(tests []jsonexpectations, t *testing.T) {
+ for _, test := range tests {
+ for i, json := range test.json {
+ t.Run(fmt.Sprint(test.name, "_", i), func(t *testing.T) {
+ if test.ignore {
+ return
+ }
+ path := filepath.Join("testdata", "identifier", json)
+ assert.FileExistsf(t, path, "Datafile Missing: {path}")
+ source, err := os.ReadFile(path)
+ if err != nil {
+ t.Fatal("error reading source file:", err)
+ }
+
+ result, err := GetIdentifierByPath(test.IdentifierPaths, string(source))
+ valStr := fmt.Sprint(result)
+ assert.Equal(t, test.expected, valStr)
+ assert.Nil(t, err)
+ })
+ }
+ }
+
+ //t.Run("@id", func(t *testing.T) {
+ //
+ // result, err := GetIdentifierByPath(sources[0].IdentifierPath, jsonId)
+ // valStr := fmt.Sprint(result)
+ // assert.Equal(t, "[idenfitier]", valStr)
+ // assert.Nil(t, err)
+ //})
+ //t.Run(".idenfitier", func(t *testing.T) {
+ //
+ // result, err := GetIdentifierByPath(sources[1].IdentifierPath, jsonId)
+ // valStr := fmt.Sprint(result)
+ // assert.Equal(t, "[doi:10.1575/1912/bco-dmo.2343.1]", valStr)
+ // assert.Nil(t, err)
+ //})
+ //t.Run("$.idenfitier", func(t *testing.T) {
+ //
+ // result, err := GetIdentifierByPath(sources[2].IdentifierPath, jsonId)
+ // valStr := fmt.Sprint(result)
+ // assert.Equal(t, "[doi:10.1575/1912/bco-dmo.2343.1]", valStr)
+ // assert.Nil(t, err)
+ //})
+ // to do: test for valid JSON but invalid RDF triples
+}
+
+// test the array paths
+func testValidJsonPaths(tests []jsonexpectations, t *testing.T) {
+ for _, test := range tests {
+ for i, json := range test.json {
+ t.Run(fmt.Sprint(test.name, "_", i), func(t *testing.T) {
+ if test.ignore {
+ return
+ }
+ path := filepath.Join("testdata", "identifier", json)
+ assert.FileExistsf(t, path, "Datafile Missing: {path}")
+ source, err := os.ReadFile(path)
+ if err != nil {
+ t.Fatal("error reading source file:", err)
+ }
+ paths := strings.Split(test.IdentifierPaths, ",")
+ result, foundPath, err := GetIdentiferByPaths(paths, string(source))
+ valStr := fmt.Sprint(result)
+ assert.Equal(t, test.expected, valStr, "expected Failed")
+ assert.Equal(t, test.expectedPath, foundPath, "matched Path Failed")
+ assert.Nil(t, err)
+ })
+ }
+
+ }
+
+}
+
+/*
+this tests a single path against a single json file
+*/
+func TestValidJsonPathInput(t *testing.T) {
+
+ var tests = []jsonexpectations{
+ // default
+ {
+ name: "@id",
+ json: map[string]string{"jsonID": "jsonId.json"},
+ errorExpected: false,
+
+ IdentifierPaths: `$['@id']`,
+ expected: "[idenfitier]",
+ expectedPath: "$['@id']",
+ ignore: false,
+ },
+ //https://raw.githubusercontent.com/earthcube/GeoCODES-Metadata/main/metadata/Dataset/actualdata/earthchem2.json
+ {
+ name: "@.identifier",
+ json: map[string]string{"jsonID": "jsonId.json"},
+ errorExpected: false,
+ IdentifierPaths: "@.identifier",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "@.identifier",
+ ignore: false,
+ },
+ //https://raw.githubusercontent.com/earthcube/GeoCODES-Metadata/main/metadata/Dataset/actualdata/earthchem2.json
+ {
+ name: "$.identifier",
+ json: map[string]string{"jsonID": "jsonId.json"},
+ errorExpected: false,
+ IdentifierPaths: "$.identifier",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "$.identifier",
+ ignore: false,
+ },
+ // argo example: https://raw.githubusercontent.com/earthcube/GeoCODES-Metadata/main/metadata/Dataset/actualdata/argo.json
+ {
+ name: "identifiers Array ",
+ json: map[string]string{"jsonID": "jsonId.json"},
+ errorExpected: false,
+ IdentifierPaths: "$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1 doi:10.1575/1912/bco-dmo.2343.1N]",
+ expectedPath: "$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value",
+ ignore: false,
+ },
+ {
+ name: "identifier_obj",
+ json: map[string]string{"jsonID": "jsonId.json"},
+ errorExpected: false,
+ // IdentifierPath: "$.identifierObj[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value",
+ //IdentifierPath: "$.identifierObj.propertyID[@=='https://registry.identifiers.org/registry/doi')]",
+ IdentifierPaths: "$.identifierObj.value",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "$.identifierObj.value",
+ ignore: false,
+ },
+ //https://raw.githubusercontent.com/earthcube/GeoCODES-Metadata/main/metadata/Dataset/actualdata/earthchem2.json
+ // this will not work since the || does not work
+ {
+ name: " identifier or id",
+ json: map[string]string{"jsonID": "jsonId.json"},
+ errorExpected: false,
+ IdentifierPaths: "[ $.identifiers[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value || $.['@id'] ]",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "[ $.identifiers[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value || $.['@id'] ]",
+ ignore: true,
+ },
+ // identifier as array: https://github.com/earthcube/GeoCODES-Metadata/blob/main/metadata/Dataset/allgood/bcodmo1.json
+ /* needs work
+ "identifier": [
+
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ }
+ ],
+ */
+ // this does not work fancy array index issues. Would be nice
+ {
+ name: "identifierSArray slice",
+ json: map[string]string{"jsonID": "jsonId.json"},
+ errorExpected: false,
+ //IdentifierPath: "$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value[-1:]",
+ //IdentifierPaths: []string{"$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value.[-1:]"},
+ IdentifierPaths: "$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value[0]",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value.[0]",
+ ignore: true,
+ },
+ }
+
+ testValidJsonPath(tests, t)
+}
+
+func TestValidJsonPathsInput(t *testing.T) {
+
+ var tests = []jsonexpectations{
+ // default
+ // should work for all
+ {
+ name: "@id",
+ json: map[string]string{"jsonID": "jsonIdPaths.json", "jsonIdentifier": "jsonIdentifierPath.json",
+ "jsonobjectId": "jsonIdentifierObjectPath.json",
+ "jsonIdentifierArraySingle": "jsonIdentifierArraySingle.json",
+ "jsonIdentifierArrayMultiple": "jsonIdentifierArrayMultiple.json",
+ },
+ errorExpected: false,
+
+ IdentifierPaths: `$['@id']`,
+ expected: "[idenfitier]",
+ expectedPath: "$['@id']",
+ ignore: false,
+ },
+ //https://raw.githubusercontent.com/earthcube/GeoCODES-Metadata/main/metadata/Dataset/actualdata/earthchem2.json
+ // this returns an empty set [] https://cburgmer.github.io/json-path-comparison/results/dot_notation_on_object_without_key.html
+ {
+ name: "$.identifier.$id",
+ //json: []string{jsonId},
+ json: map[string]string{"jsonID": "jsonIdPaths.json"}, //"jsonIdentifier": jsonIdentifier,
+ //"jsonobjectId": jsonIdentifierObject,
+ //"jsonIdentifierArraySingle": jsonIdentifierArraySingle,
+ //"jsonIdentifierArrayMultiple": jsonIdentifierArrayMultiple,
+
+ errorExpected: false,
+ IdentifierPaths: "$.identifier.value,$.identifier,$['@id']",
+ expected: "[idenfitier]",
+ expectedPath: "$['@id']",
+ ignore: false,
+ },
+ {
+ name: "$.identifier.$.identifier",
+ //json: []string{jsonIdentifier},
+ json: map[string]string{"jsonIdentifier": "jsonIdentifierPath.json"},
+ errorExpected: false,
+ IdentifierPaths: "$.identifier.value,$.identifier,$['@id']",
+ expected: "[doi:10]",
+ expectedPath: "$.identifier",
+ ignore: false,
+ },
+ //https://raw.githubusercontent.com/earthcube/GeoCODES-Metadata/main/metadata/Dataset/actualdata/earthchem2.json
+ {
+ name: "$.identifierObjBracket",
+ //json: []string{jsonIdentifierObject},
+ json: map[string]string{
+ "jsonobjectId": "jsonIdentifierObjectPath.json",
+ },
+ errorExpected: false,
+ IdentifierPaths: "$.identifier['value'],$.identifier,$['@id']",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "$.identifier['value']",
+ ignore: false,
+ },
+ {
+ name: "$.identifierObjDot",
+ //json: []string{jsonIdentifierObject},
+ json: map[string]string{
+ "jsonobjectId": "jsonIdentifierObjectPath.json",
+ },
+ errorExpected: false,
+ IdentifierPaths: "$.identifier.value,$.identifier,$['@id']",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "$.identifier.value",
+ ignore: false,
+ },
+ {
+ name: "$.identifierObjCheck",
+ //json: []string{jsonIdentifierObject},
+ json: map[string]string{
+ "jsonobjectId": "jsonIdentifierObjectPath.json",
+ },
+ errorExpected: false,
+ IdentifierPaths: "$.identifier.value,$.identifier,$['@id']",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "$.identifier.value",
+ ignore: false,
+ },
+ //https://raw.githubusercontent.com/earthcube/GeoCODES-Metadata/main/metadata/Dataset/actualdata/earthchem2.json
+ {
+ name: "@.identifierArraySimple",
+ //json: []string{jsonIdentifierArraySingle},
+ json: map[string]string{
+ "jsonIdentifierArraySingle": "jsonIdentifierArraySingle.json",
+ },
+ errorExpected: false,
+ IdentifierPaths: "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value,$.identifier.value,$.identifier.$['@id']",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1]",
+ expectedPath: "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value",
+ ignore: false,
+ },
+
+ //https://raw.githubusercontent.com/earthcube/GeoCODES-Metadata/main/metadata/Dataset/actualdata/earthchem2.json
+ {
+ name: "@.identifierArrayMultiple",
+ //json: []string{jsonIdentifierArrayMultiple},
+ json: map[string]string{
+ "jsonIdentifierArrayMultiple": "jsonIdentifierArrayMultiple.json",
+ },
+ errorExpected: false,
+ IdentifierPaths: "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value,$.identifier.value,$.identifier,$['@id']",
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1 doi:10.1575/1912/bco-dmo.2343.1N]",
+ expectedPath: "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value",
+ ignore: false,
+ },
+ {
+ name: "@.identifierProblemChildIris",
+ //json: []string{jsonIdentifierArrayMultiple},
+ json: map[string]string{
+ "problem child": "problemChildIris.json",
+ },
+ errorExpected: false,
+ IdentifierPaths: "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value,$.identifier.value,$.identifier,$['@id']",
+ expected: "[https://ds.iris.edu/ds/products/emtf/]",
+ expectedPath: "$['@id']",
+ ignore: false,
+ },
+ {
+ name: "@.identifierProblemChildOpenTopo",
+ //json: []string{jsonIdentifierArrayMultiple},
+ json: map[string]string{
+ "problem child opentopo": "problemChildOpentop.json",
+ },
+ errorExpected: false,
+ IdentifierPaths: "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value,$.identifier.value,$.identifier,$['@id']",
+ expected: "[OTDS.062020.32611.1]",
+ expectedPath: "$.identifier.value",
+ ignore: false,
+ },
+ }
+ testValidJsonPaths(tests, t)
+}
+
+func testGenerateJsonPathIdentifier(tests []jsonexpectations, t *testing.T) {
+
+ //mock configre file
+ // paths are relative to the code
+ var vipercontext = []byte(`
+context:
+ cache: true
+contextmaps:
+- file: ../../configs/schemaorg-current-https.jsonld
+ prefix: https://schema.org/
+- file: ../../configs/schemaorg-current-https.jsonld
+ prefix: http://schema.org/
+sources:
+- sourcetype: sitemap
+ name: test
+ logo: https://opentopography.org/sites/opentopography.org/files/ot_transp_logo_2.png
+ url: https://opentopography.org/sitemap.xml
+ headless: false
+ pid: https://www.re3data.org/repository/r3d100010655
+ propername: OpenTopography
+ domain: http://www.opentopography.org/
+ active: false
+ credentialsfile: ""
+ other: {}
+ headlesswait: 0
+ delay: 0
+ IdentifierType: identifiersha
+`)
+
+ for _, test := range tests {
+ for i, json := range test.json {
+ // needs to be defiend in the loop, so that each run has it's own configuration.
+ // otherwise changing the sources information in a multi-threaded ent has issues
+ viperVal := viper.New()
+ viperVal.SetConfigType("yaml")
+ viperVal.ReadConfig(bytes.NewBuffer(vipercontext))
+ sources, err := configTypes.GetSources(viperVal)
+
+ if err != nil {
+ assert.Fail(t, err.Error())
+ }
+
+ s := sources[0]
+ s.IdentifierType = test.IdentifierType
+ s.IdentifierPath = test.IdentifierPaths
+ t.Run(fmt.Sprint(test.name, "_", i), func(t *testing.T) {
+ if test.ignore {
+ return
+ }
+ path := filepath.Join("testdata", "identifier", json)
+ assert.FileExistsf(t, path, "Datafile Missing: {path}")
+ source, err := os.ReadFile(path)
+ if err != nil {
+ t.Fatal("error reading source file:", err)
+ }
+ result, err := GenerateIdentifier(viperVal, s, string(source))
+ //valStr := fmt.Sprint(result.uniqueId)
+ assert.Equal(t, test.expected, result.UniqueId, "uuid faild")
+ assert.Equal(t, test.expectedPath, result.MatchedPath, "matched path failed")
+ assert.Equal(t, test.IdentifierType, result.IdentifierType, "identifier failed")
+ assert.Nil(t, err)
+ })
+ }
+ }
+}
+func testGenerateFileShaIdentifier(tests []jsonexpectations, t *testing.T) {
+
+ //mock configre file
+ // paths are relative to the code
+ var vipercontext = []byte(`
+context:
+ cache: true
+contextmaps:
+- file: ../../configs/schemaorg-current-https.jsonld
+ prefix: https://schema.org/
+- file: ../../configs/schemaorg-current-https.jsonld
+ prefix: http://schema.org/
+sources:
+- sourcetype: sitemap
+ name: test
+ logo: https://opentopography.org/sites/opentopography.org/files/ot_transp_logo_2.png
+ url: https://opentopography.org/sitemap.xml
+ headless: false
+ pid: https://www.re3data.org/repository/r3d100010655
+ propername: OpenTopography
+ domain: http://www.opentopography.org/
+ active: false
+ credentialsfile: ""
+ other: {}
+ headlesswait: 0
+ delay: 0
+ IdentifierType: filesha
+`)
+
+ for _, test := range tests {
+ for i, json := range test.json {
+ // needs to be defiend in the loop, so that each run has it's own configuration.
+ // otherwise changing the sources information in a multi-threaded ent has issues
+ viperVal := viper.New()
+ viperVal.SetConfigType("yaml")
+ viperVal.ReadConfig(bytes.NewBuffer(vipercontext))
+ sources, err := configTypes.GetSources(viperVal)
+
+ if err != nil {
+ assert.Fail(t, err.Error())
+ }
+
+ s := sources[0]
+ s.IdentifierType = test.IdentifierType
+ s.IdentifierPath = test.IdentifierPaths
+ t.Run(fmt.Sprint(test.name, "_", i), func(t *testing.T) {
+ if test.ignore {
+ return
+ }
+ path := filepath.Join("testdata", "identifier", json)
+ assert.FileExistsf(t, path, "Datafile Missing: {path}")
+ source, err := os.ReadFile(path)
+ if err != nil {
+ t.Fatal("error reading source file:", err)
+ }
+ result, err := GenerateIdentifier(viperVal, s, string(source))
+ //valStr := fmt.Sprint(result.uniqueId)
+ assert.Equal(t, test.expected, result.UniqueId, "uuid failed")
+ assert.Equal(t, test.expectedPath, result.MatchedPath, "matched path failed")
+ assert.Equal(t, test.IdentifierType, result.IdentifierType, "identifiertype match failed")
+ assert.Nil(t, err)
+ })
+ }
+ }
+}
+
+func TestGenerateFileShaIdentifier(t *testing.T) {
+
+ var tests = []jsonexpectations{
+ // default
+ // should work for all
+ {
+ name: "jsonsha_array",
+ json: map[string]string{
+ "jsonIdentifierArrayMultiple": "jsonIdentifierArrayMultiple.json",
+ },
+ errorExpected: false,
+ IdentifierType: configTypes.JsonSha,
+ IdentifierPaths: "$['@id']",
+ expected: "7bff4b860c6df6f12f408955d0e78da2dea9e268",
+ expectedPath: "",
+ ignore: false,
+ },
+ {
+ name: "normalizedsha_array",
+ json: map[string]string{
+ "jsonIdentifierArrayMultiple": "jsonIdentifierArrayMultiple.json",
+ },
+ errorExpected: false,
+ IdentifierType: configTypes.NormalizedJsonSha,
+ IdentifierPaths: "$['@id']",
+ expected: "37626666346238363063366466366631326634303839353564306537386461326465613965323638",
+ expectedPath: "",
+ ignore: false,
+ },
+ {
+ name: "normalizedsha_id",
+ json: map[string]string{
+ "jsonidentifier": "jsonIdentifierPath.json",
+ },
+ errorExpected: false,
+ IdentifierType: configTypes.NormalizedJsonSha,
+ IdentifierPaths: "$['@id']",
+ expected: "38646664383435363837333837653337663236383132343335313436613363343462376231346262",
+ expectedPath: "",
+ ignore: false,
+ },
+ {
+ name: "jsonsha_id",
+ json: map[string]string{
+ "jsonidentifier": "jsonIdentifierPath.json",
+ },
+ errorExpected: false,
+ IdentifierType: configTypes.JsonSha,
+ IdentifierPaths: "$['@id']",
+ expected: "8dfd845687387e37f26812435146a3c44b7b14bb",
+ expectedPath: "",
+ ignore: false,
+ },
+ }
+
+ testGenerateFileShaIdentifier(tests, t)
+}
+
+func TestGenerateJsonPathIdentifier(t *testing.T) {
+
+ var tests = []jsonexpectations{
+ // default
+ // should work for all
+
+ {
+ name: "@id_first",
+ json: map[string]string{
+ "jsonIdentifierArrayMultiple": "jsonIdentifierArrayMultiple.json",
+ },
+ errorExpected: false,
+ IdentifierType: configTypes.IdentifierSha,
+ IdentifierPaths: "$['@id']",
+ expected: "0fe143f05d6dbff260874a9a6e8da77243c74db0",
+ expectedPath: "$['@id']",
+ ignore: false,
+ },
+ {
+ name: "identifier_default_path",
+ json: map[string]string{
+ "jsonIdentifierArrayMultiple": "jsonIdentifierArrayMultiple.json",
+ },
+ errorExpected: false,
+ IdentifierType: configTypes.IdentifierSha,
+ IdentifierPaths: "",
+ expected: "54f213d3196d3040511c0fc4817bf70a05efef05",
+ expectedPath: "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value",
+ ignore: false,
+ },
+ }
+
+ testGenerateJsonPathIdentifier(tests, t)
+}
+
+func TestValidJsonPathGraphInput(t *testing.T) {
+
+ var tests = []jsonexpectations{
+ // default
+
+ {
+ name: "identifieGraph Not Graph",
+ json: map[string]string{"jsonID": "jsonIdentifierArrayMultiple.json"},
+ errorExpected: true,
+ //IdentifierPath: "$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value[-1:]",
+ IdentifierPaths: "$['@graph'][?(@['@type']=='schema:Dataset')]['@id'],$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value,$.identifier.value,$.identifier,$['@id']",
+
+ expected: "[doi:10.1575/1912/bco-dmo.2343.1 doi:10.1575/1912/bco-dmo.2343.1N]",
+ expectedPath: "$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value",
+ ignore: false,
+ },
+ // grr. Ugly since the herokuapp no longer runs: used this a hint, then raw debugging: https://cburgmer.github.io/json-path-comparison/
+
+ // this one $['@graph]*[?(@['@type']=='schema:Dataset')] gives false here: https://jsonpath.curiousconcept.com/
+ // $['@graph']*.['@type'] returns types
+ // $['@graph'].*.@id returns types
+ //$.@graph*[?(@.@type=="schema:Dataset")] false bad when debuggin. cannot start with an @
+
+ // workslocally:
+ // returns nil: "$['@graph']*[?(@['@type']=='schema:Dataset')]"
+ // returns full object: "$['@graph'][?(@['@type']=='schema:Dataset')]"
+ // returns @id: "$['@graph'][?(@['@type']=='schema:Dataset')]['@id']" fails at: https://jsonpath.curiousconcept.com/
+ {
+ name: "identifiersGraph",
+ json: map[string]string{"jsonGraph": "jsonGraphWifire.json"},
+ errorExpected: false,
+ //IdentifierPath: "$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value[-1:]",
+ IdentifierPaths: "$['@graph'][?(@['@type']=='schema:Dataset')]['@id']",
+
+ expected: "[https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a]",
+ expectedPath: "$['@graph'][?(@['@type']=='schema:Dataset')]['@id']",
+ ignore: false,
+ },
+ {
+ name: "identifiersGraphLong",
+ json: map[string]string{"jsonGraph": "jsonGraphWifire.json"},
+ errorExpected: false,
+ //IdentifierPath: "$.identifierSArray[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value[-1:]",
+ IdentifierPaths: "$['@graph'][?(@['@type']=='schema:Dataset')]['@id'],$.identifier[?(@.propertyID=='https://registry.identifiers.org/registry/doi')].value,$.identifier.value,$.identifier,$['@id']",
+
+ expected: "[https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a]",
+ expectedPath: "$['@graph'][?(@['@type']=='schema:Dataset')]['@id']",
+ ignore: false,
+ },
+ }
+
+ testValidJsonPaths(tests, t)
+}
diff --git a/internal/common/jld2nq.go b/internal/common/jld2nq.go
index 3b1fd555..d1b472ae 100644
--- a/internal/common/jld2nq.go
+++ b/internal/common/jld2nq.go
@@ -2,7 +2,7 @@ package common
import (
"encoding/json"
- "log"
+ log "github.com/sirupsen/logrus"
"github.com/piprate/json-gold/ld"
)
@@ -12,13 +12,13 @@ func JLD2nq(jsonld string, proc *ld.JsonLdProcessor, options *ld.JsonLdOptions)
var myInterface interface{}
err := json.Unmarshal([]byte(jsonld), &myInterface)
if err != nil {
- log.Println(err)
+ log.Error(err)
return "", err
}
nq, err := proc.ToRDF(myInterface, options)
if err != nil {
- log.Println(err)
+ log.Error(err)
return "", err
}
diff --git a/internal/common/ldproc.go b/internal/common/ldproc.go
index 87d1151b..f9d3d456 100644
--- a/internal/common/ldproc.go
+++ b/internal/common/ldproc.go
@@ -1,7 +1,9 @@
package common
+// this needs to have some wrapper around normalize to throw an error when things are not right
+
import (
- "log"
+ log "github.com/sirupsen/logrus"
"net/http"
"os"
@@ -33,7 +35,7 @@ func JLDProc(v1 *viper.Viper) (*ld.JsonLdProcessor, *ld.JsonLdOptions) { // TODO
var s []ContextMapping
err := v1.UnmarshalKey("contextmaps", &s)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
m := make(map[string]string)
@@ -43,7 +45,8 @@ func JLDProc(v1 *viper.Viper) (*ld.JsonLdProcessor, *ld.JsonLdOptions) { // TODO
m[s[i].Prefix] = s[i].File
} else {
- log.Printf("ERROR: context file location %s is wrong, this is a critical error", s[i].File)
+ // todo: fatal?
+ log.Error("ERROR: context file location", s[i].File, "is wrong, this is a critical error")
}
}
@@ -51,6 +54,8 @@ func JLDProc(v1 *viper.Viper) (*ld.JsonLdProcessor, *ld.JsonLdOptions) { // TODO
cdl := ld.NewCachingDocumentLoader(nl)
cdl.PreloadWithMapping(m)
options.DocumentLoader = cdl
+ // todo: check domain config and see whether it should be processed with 1.0
+ // options.ProcessingMode = "json-ld-1.0"
}
// Set a default format.. let this be set later...
diff --git a/internal/common/ldproc_test.go b/internal/common/ldproc_test.go
new file mode 100644
index 00000000..41272d4b
--- /dev/null
+++ b/internal/common/ldproc_test.go
@@ -0,0 +1,158 @@
+package common
+
+import (
+ "bytes"
+ approvals "github.com/approvals/go-approval-tests"
+ "github.com/approvals/go-approval-tests/reporters"
+ "os"
+
+ "encoding/json"
+ "fmt"
+ "github.com/piprate/json-gold/ld"
+ "github.com/spf13/viper"
+ "github.com/stretchr/testify/assert"
+ "testing"
+)
+
+func TestMain(m *testing.M) {
+ //r := UseReporter(reporters.NewContinuousIntegrationReporter())
+ r := approvals.UseReporter(reporters.NewGoLandReporter())
+ defer r.Close()
+
+ approvals.UseFolder("testdata")
+
+ os.Exit(m.Run())
+}
+
+// jsonexpectations is in test_common_structs
+/* ldjsonprocessor.Normalize often returns "" or the same set of triples
+for JSONLD Document with context or other issues.
+
+We will need to write a wrapper around Normalize to catch these issues, and return an error.
+These are tests that helped determine that Normalize was the issue.
+*/
+
+/*
+this tests a single path against a single json file
+*/
+func TestNormalizeTriple(t *testing.T) {
+ var jsonNoContext = `{
+"@type":"bar",
+"@id":"idenfitier",
+"url": "http://example.com/",
+"identifier": [
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ }
+
+]
+
+}`
+ var jsonNoContextSimple = `
+ {
+ "@type":"bar",
+ "SO:name":"Some type in a graph"
+ }
+`
+ var jsonGraphFirst = `{
+ "@graph":[
+ {
+ "@context": {
+ "SO":"http://schema.org/"
+ },
+ "@type":"bar",
+ "SO:name":"Some type in a graph"
+ }
+ ]
+}`
+
+ // now using approval test approach, so expected not needed
+ // look in testdata for recieved and approved information
+ var tests = []jsonexpectations{
+ // default
+ {
+ name: "noContext",
+ json: map[string]string{"jsonID": jsonNoContext},
+ //errorExpected: true,
+ errorExpected: false, // when we proxy/wrapper NormalizeTriple this, we should throw error on empty
+ expected: "",
+ ignore: false,
+ },
+ {
+ name: "noContextSimple",
+ json: map[string]string{"jsonID": jsonNoContextSimple},
+ errorExpected: false,
+
+ expected: "_:c14n0 \"Some type in a graph\" .\n_:c14n0 .\n",
+ ignore: false,
+ },
+ {
+ name: "jsonGraphFirst",
+ json: map[string]string{"jsonID": jsonGraphFirst},
+ errorExpected: false,
+
+ expected: "_:c14n0 \"Some type in a graph\" .\n_:c14n0 .\n",
+ ignore: false,
+ },
+ }
+ testNormalizeTriple(tests, t)
+}
+
+func testNormalizeTriple(tests []jsonexpectations, t *testing.T) {
+ var vipercontext = []byte(`
+context:
+ cache: true
+contextmaps:
+- file: ../../configs/schemaorg-current-https.jsonld
+ prefix: https://schema.org/
+- file: ../../configs/schemaorg-current-https.jsonld
+ prefix: http://schema.org/
+sources:
+- sourcetype: sitemap
+
+ IdentifierType: jsonsha
+`)
+ viperVal := viper.New()
+ viperVal.SetConfigType("yaml")
+ viperVal.ReadConfig(bytes.NewBuffer(vipercontext))
+
+ for _, test := range tests {
+ for i, jsonld := range test.json {
+ t.Run(fmt.Sprint(test.name, "_", i), func(t *testing.T) {
+ if test.ignore {
+ return
+ }
+ proc, options := JLDProc(viperVal)
+
+ // proc := ld.NewJsonLdProcessor()
+ // options := ld.NewJsonLdOptions("")
+ // add the processing mode explicitly if you need JSON-LD 1.1 features
+ options.ProcessingMode = ld.JsonLd_1_1
+ options.Format = "application/n-quads"
+ options.Algorithm = "URDNA2015"
+ var myInterface interface{}
+ err := json.Unmarshal([]byte(jsonld), &myInterface)
+ if err != nil {
+ assert.Error(t, err)
+ }
+
+ result, err := proc.Normalize(myInterface, options)
+
+ valStr := fmt.Sprint(result)
+ //assert.Equal(t, test.expected, valStr)
+ approvals.VerifyString(t, valStr)
+ if test.errorExpected {
+ assert.NotNil(t, err)
+ } else {
+ assert.Nil(t, err)
+ }
+
+ })
+ }
+ }
+
+}
diff --git a/internal/common/logger.go b/internal/common/logger.go
new file mode 100644
index 00000000..b701ee3a
--- /dev/null
+++ b/internal/common/logger.go
@@ -0,0 +1,120 @@
+package common
+
+import (
+ "errors"
+ "fmt"
+ "github.com/orandin/lumberjackrus"
+ log "github.com/sirupsen/logrus"
+ "github.com/spf13/viper"
+ "io"
+ "os"
+ "time"
+)
+
+const Logpath = "logs"
+
+func InitLogging() {
+ //logpath := "logs"
+ logpath := Logpath
+ if _, err := os.Stat(logpath); errors.Is(err, os.ErrNotExist) {
+ err := os.Mkdir(logpath, os.ModePerm)
+ if err != nil {
+ log.Println(err)
+ }
+ }
+ // name the file with the date and time
+ const layout = "2006-01-02-15-04-05"
+ t := time.Now()
+ lf := fmt.Sprintf("%s/gleaner-%s.log", logpath, t.Format(layout))
+
+ LogFile := lf // log to custom file
+ logFile, err := os.OpenFile(LogFile, os.O_APPEND|os.O_RDWR|os.O_CREATE, 0644)
+ if err != nil {
+ log.Fatal(err)
+ }
+
+ log.SetFormatter(&log.JSONFormatter{}) // Log as JSON instead of the default ASCII formatter.
+ log.SetReportCaller(true) // include file name and line number
+ mw := io.MultiWriter(os.Stdout, logFile)
+ log.SetOutput(mw)
+ //log.SetOutput(logFile)
+
+ // second file for issues
+
+}
+func SetLogLevel(v1 *viper.Viper) {
+ log.SetLevel(log.InfoLevel)
+}
+
+// this is a fixed file format for outputing to a file.
+// Error... Generally what we want
+// Info... Level we set. This will give us the Starting and Ending and other info
+// Debug --- This will give us all the ins and outs of the summoning
+// Trace --- all the details
+func LogIssues(v1 *viper.Viper, source string) (*log.Logger, error) {
+ logpath := "logs"
+ if _, err := os.Stat(logpath); errors.Is(err, os.ErrNotExist) {
+ err := os.Mkdir(logpath, os.ModePerm)
+ if err != nil {
+ log.Println(err)
+ }
+ }
+ // name the file with the date and time
+ const layout = "2006-01-02-15-04-05"
+ t := time.Now()
+
+ logger := log.New()
+
+ issuefile := fmt.Sprintf("%s/repo-%s-issues-%s.log", logpath, source, t.Format(layout))
+ allfile := fmt.Sprintf("%s/repo-%s-loaded-%s.log", logpath, source, t.Format(layout))
+
+ logger.SetFormatter(&log.TextFormatter{DisableTimestamp: true}) // Log as JSON instead of the default ASCII formatter.
+ logger.SetReportCaller(false) // disable include file name and line number
+ logFile, err := os.OpenFile(os.DevNull, os.O_APPEND|os.O_RDWR|os.O_CREATE, 0644)
+ logger.SetOutput(logFile)
+ logger.SetLevel(log.TraceLevel) // this effects the lumberjacks
+
+ // second file for issues
+
+ hook, err := lumberjackrus.NewHook(
+ &lumberjackrus.LogFile{
+ Filename: allfile,
+ MaxSize: 100,
+ MaxBackups: 1,
+ MaxAge: 1,
+ Compress: false,
+ LocalTime: false,
+ },
+ log.DebugLevel, //log.TraceLevel, // needs to be configurable
+ &log.TextFormatter{
+ DisableColors: true,
+ FullTimestamp: false,
+ DisableTimestamp: true,
+ //FieldMap: &log.FieldMap{
+ // "level": "@level",
+ // "msg": "@message",
+ //}
+ },
+ &lumberjackrus.LogFileOpts{
+ //log.TraceLevel: &lumberjackrus.LogFile{
+ // Filename: allfile,
+ //},
+ log.ErrorLevel: &lumberjackrus.LogFile{
+ Filename: issuefile,
+ MaxSize: 100, // optional
+ MaxBackups: 1, // optional
+ MaxAge: 1, // optional
+ Compress: false, // optional
+ LocalTime: false, // optional
+ },
+ },
+ )
+
+ if err != nil {
+ log.Panic("Cannot configure a repository logging")
+ }
+
+ logger.AddHook(hook)
+
+ return logger, nil
+}
diff --git a/internal/common/minio.go b/internal/common/minio.go
index 7ce3c909..69bfc6e0 100644
--- a/internal/common/minio.go
+++ b/internal/common/minio.go
@@ -2,7 +2,7 @@ package common
import (
"fmt"
- "log"
+ log "github.com/sirupsen/logrus"
configTypes "github.com/gleanerio/gleaner/internal/config"
"github.com/minio/minio-go/v7"
@@ -16,7 +16,7 @@ func MinioConnection(v1 *viper.Viper) *minio.Client {
mSub := v1.Sub("minio")
mcfg, err := configTypes.ReadMinioConfig(mSub)
if err != nil {
- panic(fmt.Errorf("error when file minio key: %v", err))
+ log.Panic("error when file minio key:", err)
}
endpoint := fmt.Sprintf("%s:%d", mcfg.Address, mcfg.Port)
accessKeyID := mcfg.Accesskey
@@ -28,7 +28,7 @@ func MinioConnection(v1 *viper.Viper) *minio.Client {
Secure: useSSL})
// minioClient.SetCustomTransport(&http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: true}})
if err != nil {
- log.Fatalln(err)
+ log.Fatal(err)
}
return minioClient
}
diff --git a/internal/common/pipecopy.go b/internal/common/pipecopy.go
index 7deab42b..7d09710a 100644
--- a/internal/common/pipecopy.go
+++ b/internal/common/pipecopy.go
@@ -5,15 +5,15 @@ import (
"bytes"
"context"
"fmt"
+ log "github.com/sirupsen/logrus"
"io"
- "log"
"sync"
minio "github.com/minio/minio-go/v7"
)
func PipeCopyNG(name, bucket, prefix string, mc *minio.Client) error {
- log.Println("Start pipe reader / writer sequence")
+ log.Debug("Start pipe reader / writer sequence")
pr, pw := io.Pipe() // TeeReader of use?
lwg := sync.WaitGroup{} // work group for the pipe writes...
@@ -41,7 +41,7 @@ func PipeCopyNG(name, bucket, prefix string, mc *minio.Client) error {
_, err = io.Copy(bw, fo)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
pw.Write(b.Bytes())
@@ -49,21 +49,21 @@ func PipeCopyNG(name, bucket, prefix string, mc *minio.Client) error {
}()
- // log.Printf("%s_graph.nq", name)
+ log.Debug(name, "_graph.nq")
// go function to write to minio from pipe
go func() {
defer lwg.Done()
_, err := mc.PutObject(context.Background(), bucket, name, pr, -1, minio.PutObjectOptions{})
if err != nil {
- log.Println(err)
+ log.Error(err)
}
}()
// Note: We can also make a file and pipe write to that, keep this code around in case
// f, err := os.Create(fmt.Sprintf("%s_graph.nq", prefix)) // needs a f.Close() later
// if err != nil {
- // log.Println(err)
+ // log.Error(err)
// }
// go function to write to file from pipe
// go func() {
diff --git a/internal/common/stats.go b/internal/common/stats.go
new file mode 100644
index 00000000..0839d88f
--- /dev/null
+++ b/internal/common/stats.go
@@ -0,0 +1,93 @@
+package common
+
+import (
+ "fmt"
+ "sync"
+ "time"
+)
+
+type RunStats struct {
+ mu sync.Mutex
+ Date time.Time
+ RepoStats map[string]*RepoStats
+}
+
+func NewRunStats() *RunStats {
+ r := RunStats{}
+ r.Date = time.Now()
+ r.RepoStats = make(map[string]*RepoStats)
+ return &r
+
+}
+func (c *RunStats) Add(repo string) *RepoStats {
+ c.mu.Lock()
+ r := NewRepoStats(repo)
+ r.Name = repo
+ // Lock so only one goroutine at a time can access the map c.v.
+ c.RepoStats[repo] = r
+ c.mu.Unlock()
+ return r
+}
+
+type RepoStats struct {
+ mu sync.Mutex
+ Name string
+ //SitemapCount int
+ //SitemapHttpError int
+ //SitemapIssues int
+ //SitemapSummoned int
+ counts map[string]int
+}
+
+func NewRepoStats(name string) *RepoStats {
+ r := RepoStats{Name: name}
+ r.counts = make(map[string]int)
+ return &r
+}
+
+const Count string = "SitemapCount"
+const HttpError string = "SitemapHttpError"
+const Issues string = "SitemapIssues"
+const Summoned string = "SitemapSummoned"
+const EmptyDoc string = "SitemapEmptyDoc"
+const Stored string = "SitemapStored"
+const StoreError string = "SitemapStoredError"
+const HeadlessError string = "HeadlessServerError"
+
+// Inc increments the counter for the given key.
+func (c *RepoStats) Inc(key string) {
+ c.mu.Lock()
+ // Lock so only one goroutine at a time can access the map c.v.
+ //_, ok := c.counts[key]
+ c.counts[key]++
+ c.mu.Unlock()
+}
+
+// Inc sets a value for the given key.
+func (c *RepoStats) Set(key string, value int) {
+ c.mu.Lock()
+ // Lock so only one goroutine at a time can access the map c.v.
+ c.counts[key] = value
+ c.mu.Unlock()
+}
+
+// Value returns the current value of the counter for the given key.
+func (c *RepoStats) Value(key string) int {
+ c.mu.Lock()
+ // Lock so only one goroutine at a time can access the map c.v.
+ defer c.mu.Unlock()
+ return c.counts[key]
+}
+func (c *RunStats) Output() string {
+ out := fmt.Sprintln("RunStats:")
+ out += fmt.Sprintf(" Start: %s\n", c.Date)
+ out += fmt.Sprintf(" Repositories:\n")
+ for name, repo := range c.RepoStats {
+
+ out += fmt.Sprintf(" - name: %s\n", name)
+ for r, count := range repo.counts {
+ out += fmt.Sprintf(" %s: %d \n", r, count)
+ }
+ }
+ return out
+}
diff --git a/internal/common/test_common_structs.go b/internal/common/test_common_structs.go
new file mode 100644
index 00000000..7d2edad2
--- /dev/null
+++ b/internal/common/test_common_structs.go
@@ -0,0 +1,12 @@
+package common
+
+type jsonexpectations struct {
+ name string
+ json map[string]string
+ IdentifierType string `default:JsonSha`
+ IdentifierPaths string
+ expected string
+ expectedPath string
+ errorExpected bool `default:false`
+ ignore bool `default:false`
+}
diff --git a/internal/common/testdata/identifier/jsonGraphWifire.json b/internal/common/testdata/identifier/jsonGraphWifire.json
new file mode 100644
index 00000000..56a1bf3c
--- /dev/null
+++ b/internal/common/testdata/identifier/jsonGraphWifire.json
@@ -0,0 +1,143 @@
+{
+ "@context": {
+ "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
+ "schema": "https://schema.org/",
+ "xsd": "http://www.w3.org/2001/XMLSchema#"
+ },
+ "@graph": [
+ {
+ "@id": "_:N4c6352f015f54e27a532ac1e0d693293",
+ "@type": "schema:ContactPoint",
+ "schema:contactType": "customer service",
+ "schema:name": "CA Governor's Office of Emergency Services",
+ "schema:url": "https://wifire-data.sdsc.edu"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/87accf29-5b48-49dd-b299-b0a417f5a8c6",
+ "@type": "schema:DataDownload",
+ "schema:encodingFormat": "KML",
+ "schema:name": "KML",
+ "schema:url": "https://gis-calema.opendata.arcgis.com/datasets/b426dba2dacb4d788d85ad061e14e6db_2.kml?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D"
+ },
+ {
+ "@id": "_:N6c68117e012c4c77ba9c82f6264c5836",
+ "@type": "schema:DataCatalog",
+ "schema:description": "",
+ "schema:name": "WIFIRE Commons Data Catalog",
+ "schema:url": "https://wifire-data.sdsc.edu"
+ },
+ {
+ "@id": "_:N8022daf479db4a99a26bfc41fe5cef9b",
+ "@type": "schema:GeoShape",
+ "schema:polygon": "{\"type\": \"Polygon\", \"coordinates\": [[[-178.4436, -14.3743], [-178.4436, 71.3905], [146.0827, 71.3905], [146.0827, -14.3743], [-178.4436, -14.3743]]]}"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a",
+ "@type": "schema:Dataset",
+ "schema:dateModified": [
+ "2020-04-15T23:04:24+00:00",
+ "2020-04-15T23:04:24.000Z"
+ ],
+ "schema:datePublished": [
+ "2018-01-16T20:02:32+00:00",
+ "2018-01-16T20:02:32.000Z"
+ ],
+ "schema:description": "This dataset represents regions, which are part of the national field level structure to support chapters. The Regions role is administrative as well as to provide oversight and program technical support to the chapters. This Region shapefile reflects the region boundaries with the associated attribute information. Red Cross Geography Model: Counties make up chapters, chapters make up regions and regions make up divisions. There are five exceptions to the Red Cross Geography model: Middlesex County, MA, Los Angeles, Kern, Riverside and San Bernardino Counties in California which are covered by more than one chapter. (many to one). In the case of these five counties, the geometry was dissolved from zip codes.\u00a0",
+ "schema:distribution": [
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/e53f2226-f9b0-45a0-9ec8-6fd72b6fcfe8"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/2b9bb554-48e3-44fb-b253-b27e32a3f3d9"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/7a24ea41-4c3e-43b9-85df-880e4754d613"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/0850ffdb-8cde-4c2d-baca-5616b56675d1"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/ed9b42d2-4260-490b-be0d-1a09e138ab12"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/87accf29-5b48-49dd-b299-b0a417f5a8c6"
+ }
+ ],
+ "schema:includedInDataCatalog": {
+ "@id": "_:N6c68117e012c4c77ba9c82f6264c5836"
+ },
+ "schema:keywords": [
+ "Data Library",
+ "Boundaries and Regions",
+ "HIFLD",
+ "CalOES Library",
+ "ESF5",
+ "Basedata",
+ "CalOES Data Library",
+ "ESF6",
+ "Emergency Services",
+ "American Red Cross Regions"
+ ],
+ "schema:license": "https://creativecommons.org/publicdomain/zero/1.0/",
+ "schema:name": "American Red Cross Regions",
+ "schema:publisher": {
+ "@id": "https://wifire-data.sdsc.edu/organization/0e04d99f-90be-40d7-bf0a-ddda02f1eb09"
+ },
+ "schema:spatialCoverage": {
+ "@id": "_:N57eefc034db64b7d8b24c0b108fd2e7f"
+ },
+ "schema:url": "https://wifire-data.sdsc.edu/dataset/american-red-cross-regions"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/2b9bb554-48e3-44fb-b253-b27e32a3f3d9",
+ "@type": "schema:DataDownload",
+ "schema:encodingFormat": "GeoJSON",
+ "schema:name": "GeoJSON",
+ "schema:url": "https://gis-calema.opendata.arcgis.com/datasets/b426dba2dacb4d788d85ad061e14e6db_2.geojson?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/ed9b42d2-4260-490b-be0d-1a09e138ab12",
+ "@type": "schema:DataDownload",
+ "schema:encodingFormat": "HTML",
+ "schema:name": "ArcGIS Hub Dataset",
+ "schema:url": "https://gis-calema.opendata.arcgis.com/datasets/b426dba2dacb4d788d85ad061e14e6db_2"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/organization/0e04d99f-90be-40d7-bf0a-ddda02f1eb09",
+ "@type": "schema:Organization",
+ "schema:contactPoint": {
+ "@id": "_:N4c6352f015f54e27a532ac1e0d693293"
+ },
+ "schema:name": "CA Governor's Office of Emergency Services"
+ },
+ {
+ "@id": "_:N57eefc034db64b7d8b24c0b108fd2e7f",
+ "@type": "schema:Place",
+ "schema:geo": {
+ "@id": "_:N8022daf479db4a99a26bfc41fe5cef9b"
+ }
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/7a24ea41-4c3e-43b9-85df-880e4754d613",
+ "@type": "schema:DataDownload",
+ "schema:encodingFormat": "Esri REST",
+ "schema:name": "Esri Rest API",
+ "schema:url": "https://services.arcgis.com/pGfbNJoYypmNq86F/ArcGIS/rest/services/ARC_Master_Geography_FY19_January/FeatureServer/2"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/e53f2226-f9b0-45a0-9ec8-6fd72b6fcfe8",
+ "@type": "schema:DataDownload",
+ "schema:encodingFormat": "ZIP",
+ "schema:name": "Shapefile",
+ "schema:url": "https://gis-calema.opendata.arcgis.com/datasets/b426dba2dacb4d788d85ad061e14e6db_2.zip?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D"
+ },
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/8fd44c38-f6d3-429c-a785-1498dfaa2a6a/resource/0850ffdb-8cde-4c2d-baca-5616b56675d1",
+ "@type": "schema:DataDownload",
+ "schema:encodingFormat": "CSV",
+ "schema:name": "CSV",
+ "schema:url": "https://gis-calema.opendata.arcgis.com/datasets/b426dba2dacb4d788d85ad061e14e6db_2.csv?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/jsonId.json b/internal/common/testdata/identifier/jsonId.json
new file mode 100644
index 00000000..27cacd88
--- /dev/null
+++ b/internal/common/testdata/identifier/jsonId.json
@@ -0,0 +1,45 @@
+{
+ "@id":"idenfitier",
+ "identifier":"doi:10.1575/1912/bco-dmo.2343.1",
+ "identifierArray": [
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ }
+ ],
+ "identifierSArray": [
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ },
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.N",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1N",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.N"
+ },
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.P",
+ "propertyID": "https://purl.org",
+ "value": "doi:10.1575/1912/bco-dmo.2343.P",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.P"
+ }
+ ],
+ "identifierObj":
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ }
+
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/jsonIdPaths.json b/internal/common/testdata/identifier/jsonIdPaths.json
new file mode 100644
index 00000000..af0e048d
--- /dev/null
+++ b/internal/common/testdata/identifier/jsonIdPaths.json
@@ -0,0 +1,4 @@
+{
+ "@id":"idenfitier",
+ "url": "http://example.com/,"
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/jsonIdentifierArrayMultiple.json b/internal/common/testdata/identifier/jsonIdentifierArrayMultiple.json
new file mode 100644
index 00000000..0c8eaa14
--- /dev/null
+++ b/internal/common/testdata/identifier/jsonIdentifierArrayMultiple.json
@@ -0,0 +1,28 @@
+{
+ "@id":"idenfitier",
+ "url": "http://example.com/",
+ "identifier": [
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ },
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.N",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1N",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.N"
+ },
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.P",
+ "propertyID": "https://purl.org",
+ "value": "doi:10.1575/1912/bco-dmo.2343.P",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.P"
+ }
+ ]
+
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/jsonIdentifierArraySingle.json b/internal/common/testdata/identifier/jsonIdentifierArraySingle.json
new file mode 100644
index 00000000..643f4079
--- /dev/null
+++ b/internal/common/testdata/identifier/jsonIdentifierArraySingle.json
@@ -0,0 +1,15 @@
+{
+ "@id":"idenfitier",
+ "url": "http://example.com/",
+ "identifier": [
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ }
+ ]
+
+
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/jsonIdentifierGraph.json b/internal/common/testdata/identifier/jsonIdentifierGraph.json
new file mode 100644
index 00000000..1b26c776
--- /dev/null
+++ b/internal/common/testdata/identifier/jsonIdentifierGraph.json
@@ -0,0 +1,17 @@
+{
+ "@context": {
+ "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
+ "schema": "http://schema.org/",
+ "xsd": "http://www.w3.org/2001/XMLSchema#"
+ },
+ "@graph": [
+ {
+ "@id": "https://wifire-data.sdsc.edu/dataset/a1770ff8-1665-433c-88fb-c8e6863c61fc/resource/b01d00d2-1d64-47b8-aa5c-00410d84e6e6",
+ "@type": "schema:DataDownload",
+ "schema:encodingFormat": "GeoJSON",
+ "schema:name": "GeoJSON",
+ "schema:url": "https://gis-calema.opendata.arcgis.com/datasets/34402e97810f410db0ccd1ae345d9807_5.geojson?outSR=%7B%22latestWkid%22%3A3857%2C%22wkid%22%3A102100%7D"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/jsonIdentifierObjectPath.json b/internal/common/testdata/identifier/jsonIdentifierObjectPath.json
new file mode 100644
index 00000000..fc4d0d5e
--- /dev/null
+++ b/internal/common/testdata/identifier/jsonIdentifierObjectPath.json
@@ -0,0 +1,12 @@
+{
+ "@id":"idenfitier",
+ "url": "http://example.com/",
+ "identifier":
+ {
+ "@type": "PropertyValue",
+ "@id": "https://doi.org/10.1575/1912/bco-dmo.2343.1",
+ "propertyID": "https://registry.identifiers.org/registry/doi",
+ "value": "doi:10.1575/1912/bco-dmo.2343.1",
+ "url": "https://doi.org/10.1575/1912/bco-dmo.2343.1"
+ }
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/jsonIdentifierPath.json b/internal/common/testdata/identifier/jsonIdentifierPath.json
new file mode 100644
index 00000000..3cf67d43
--- /dev/null
+++ b/internal/common/testdata/identifier/jsonIdentifierPath.json
@@ -0,0 +1,7 @@
+{
+ "@id":"idenfitier",
+ "url": "http://example.com/",
+ "identifier":"doi:10"
+
+
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/problemChildIris.json b/internal/common/testdata/identifier/problemChildIris.json
new file mode 100644
index 00000000..da07cfec
--- /dev/null
+++ b/internal/common/testdata/identifier/problemChildIris.json
@@ -0,0 +1,36 @@
+{
+ "@context": {
+ "@vocab": "https://schema.org/"
+ },
+ "@id": "https://ds.iris.edu/ds/products/emtf/",
+ "@type": "Dataset",
+ "name": "Magnetotelluric Transfer Functions",
+ "alternateName": [
+ "EMTF"
+ ],
+ "description": "USArray magnetotelluric transfer functions (MT TFs) calculated at USArray MT sites installed by Oregon State University, as well as other community magnetotelluric transfer functions, are available from the \"SPUD EMTF\":http://www.iris.edu/spud/emtf repository in both XML and EDI formats. The international magnetotelluric community is invited to use the EMTF repository to archive their MT TFs. Please contact \"Anna Kelbert\":https://www.usgs.gov/staff-profiles/anna-kelbert for support; all data formats are accepted and a data citation is created upon submission of data to the searchable repository.\r\n\r\nThe XML format for electromagnetic transfer functions and related conversion software was developed at Oregon State University under an NSF award, and later improved and updated by the USGS Geomagnetism Program, with continued support from IRIS. A living software repository is available in the \"SeisCode EMTF-FCU project\":https://seiscode.iris.washington.edu/projects/emtf-fcu File Conversion Utilities project. Detailed documentation and usage examples are provided by \"Kelbert (2009) \":https://library.seg.org/doi/10.1190/geo2018-0679.1.",
+ "url": "https://ds.iris.edu/ds/products/emtf/",
+ "dateCreated": "2013-07-17T22:17:22.003",
+ "dateModified": "2019-11-20T14:48:11.228",
+ "includedInDataCatalog": {
+ "@type": "DataCatalog",
+ "@id": "https://ds.iris.edu/ds/products/",
+ "url": "https://ds.iris.edu/ds/products/"
+ },
+ "keywords": "Transportable Array,magnetotelluric data,seismic,USArray MT,MT data,global magnetotellurics,magnetotelluric impedance,seismology,geophysics,EMTF,impedance database,US magnetotellurics",
+ "author": [
+ {
+ "@type": "Person",
+ "name": "IRIS Data Products"
+ },
+ {
+ "@type": "Person",
+ "name": "Anna Kelbert",
+ "affiliation": {
+ "@type": "Organization",
+ "name": "Geomagnetism Program, U.S. Geological Survey"
+ }
+ }
+ ],
+ "image": "https://ds.iris.edu/media/product/emtf/images/mt_func_logo_1.png"
+}
\ No newline at end of file
diff --git a/internal/common/testdata/identifier/problemChildOpentop.json b/internal/common/testdata/identifier/problemChildOpentop.json
new file mode 100644
index 00000000..a9905fd0
--- /dev/null
+++ b/internal/common/testdata/identifier/problemChildOpentop.json
@@ -0,0 +1,90 @@
+
+{
+ "@context": {
+ "@vocab": "https://schema.org/"
+ },
+ "@type": "Dataset",
+ "version": "1.0",
+ "additionalType": ["geolink:Dataset", "vivo:Dataset"],
+ "name": "Quaternary Surface Ruptures along Panamint Valley Fault, CA, April-May 2018",
+ "@id": "https://portal.opentopography.org/dataspace/dataset?opentopoID=OTDS.062020.32611.1",
+ "description": "The digital surface models, generated from sUAS-derived images and SfM methods, show fault scarps and offset channels at six sites along the oblique-slip and strike-slip segments of the Panamint Valley Fault. The fault cuts Late Quaternary alluvial deposits. These data were collected as part of a master\u0092s thesis. The study aims to reconstruct the displacement and rupture length of the most recent earthquake, and understand the kinematics of the geometrically complex Panamint Valley Fault.",
+ "url": "https://doi.org/10.5069/G92Z13PS",
+ "sameAs": "https://portal.opentopography.org/dataspace/dataset?opentopoID=OTDS.062020.32611.1",
+ "fileFormat" : "Point Cloud, Raster",
+ "publisher" : {
+ "@type": "Organization",
+ "additionalType": "geolink:Organization",
+ "email": "info@opentopography.org",
+ "legalName": "OpenTopography",
+ "name": "OpenTopography",
+ "url": "https://opentopography.org",
+ "award" : "National Science Foundation under Award Numbers EAR-1948997, 1948994 & 1948857",
+ "logo" : "http://www.opentopography.org/sites/opentopography.org/files/ot_transp_logo.png"
+ },
+ "funder": [],
+ "contributor": [{
+ "@type": "Person",
+ "name": "Israporn Sethanant"
+ },{
+ "@type": "Person",
+ "name": "Israporn Sethanant"
+ },{
+ "@type": "Person",
+ "name": "Wesley Dassow"
+ }],
+
+ "variableMeasured": [{
+ "@type": "PropertyValue",
+ "name" : "Area",
+ "value" : "588,495.73 m2"
+ }
+
+ ,{
+ "@type": "PropertyValue",
+ "name" : "LidarReturns",
+ "value" : "421,777,492 points"
+ }
+
+ ,{
+ "@type": "PropertyValue",
+ "name" : "PointDensity",
+ "value" : "716.7 points/m2"
+ }
+
+ ],
+
+ "temporalCoverage": "2018-04-27/2018-05-04",
+
+ "spatialCoverage": {
+ "@type": "Place",
+ "additionalProperty": [{
+ "@type": "PropertyValue",
+ "additionalType" : "CoordinatesSystem",
+ "name" : "Horizontal Coordinates",
+ "value" : "WGS 84 / UTM zone 11N [EPSG: 32611]"
+ },{
+ "@type": "PropertyValue",
+ "additionalType" : "CoordinatesSystem",
+ "name" : "Vertical Coordinates",
+ "value" : ""
+ }],
+ "geo": {
+ "@type": "GeoShape",
+ "box": "35.89945649,-117.2195011 36.00975424,-117.1817643"
+ }
+ },
+ "locationCreated" : "",
+ "dateCreated": "2020-06-25 15:35:13.965967",
+ "license" : "Not-Provided",
+ "usageinfo" : "https://opentopography.org/usageterms",
+ "isAccessibleForFree" : true,
+ "citation" : "The data collection was funded by the 2017 GSA Graduate Student Research Grant. Special thanks to Chris Parrish, Chase Simpson, and Richard Slocum (Oregon State University) for the guidance of flight planning, RTK positioning survey, and Trimble 5800 set up. I would also like to acknowledge Wesley von Dassow for the help in the successful GCPs collection in the field. ",
+ "keywords": "Panamint Valley Fault, Eastern California Shear Zone, earthquake, complex fault",
+ "identifier": {
+ "@id": "https://portal.opentopography.org/dataspace/dataset?opentopoID=OTDS.062020.32611.1",
+ "@type": "PropertyValue",
+ "propertyID": "opentopoID",
+ "value": "OTDS.062020.32611.1"
+ }
+}
\ No newline at end of file
diff --git a/internal/common/testdata/ldproc_test.TestNormalizeTriple.jsonGraphFirst_jsonID.approved.txt b/internal/common/testdata/ldproc_test.TestNormalizeTriple.jsonGraphFirst_jsonID.approved.txt
new file mode 100644
index 00000000..b691ba61
--- /dev/null
+++ b/internal/common/testdata/ldproc_test.TestNormalizeTriple.jsonGraphFirst_jsonID.approved.txt
@@ -0,0 +1,2 @@
+_:c14n0 "Some type in a graph" .
+_:c14n0 .
diff --git a/internal/common/testdata/ldproc_test.TestNormalizeTriple.noContextSimple_jsonID.approved.txt b/internal/common/testdata/ldproc_test.TestNormalizeTriple.noContextSimple_jsonID.approved.txt
new file mode 100644
index 00000000..e8f3b544
--- /dev/null
+++ b/internal/common/testdata/ldproc_test.TestNormalizeTriple.noContextSimple_jsonID.approved.txt
@@ -0,0 +1,2 @@
+_:c14n0 "Some type in a graph" .
+_:c14n0 .
diff --git a/internal/common/testdata/ldproc_test.TestNormalizeTriple.noContext_jsonID.approved.txt b/internal/common/testdata/ldproc_test.TestNormalizeTriple.noContext_jsonID.approved.txt
new file mode 100644
index 00000000..e69de29b
diff --git a/internal/config/gleanerConfig.go b/internal/config/gleanerConfig.go
index 2bd00b41..02792dba 100644
--- a/internal/config/gleanerConfig.go
+++ b/internal/config/gleanerConfig.go
@@ -1,6 +1,8 @@
package config
import (
+ "fmt"
+ log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
)
@@ -46,7 +48,9 @@ func ReadGleanerConfig(filename string, cfgDir string) (*viper.Viper, error) {
v.AutomaticEnv()
err := v.ReadInConfig()
if err != nil {
- panic(err)
+ fmt.Println("cannot find config file. Did you 'glcon generate --cfgName XXX' ")
+ log.Fatal("cannot find config file. Did you 'glcon generate --cfgName XXX' ")
+ //panic(err)
}
return v, err
}
diff --git a/internal/config/localConfig.go b/internal/config/localConfig.go
index b1fa88fe..43b3cfe9 100644
--- a/internal/config/localConfig.go
+++ b/internal/config/localConfig.go
@@ -20,6 +20,7 @@ var serversTemplate = map[string]interface{}{
"bucket": "gleaner",
"domain": "us-east-1",
},
+ "identifiertype": JsonSha, // const from config.Sources jsonsha,identifiersha, normalizedjsonsha, identifierstring
}
func ReadServersConfig(filename string, cfgDir string) (*viper.Viper, error) {
diff --git a/internal/config/minio.go b/internal/config/minio.go
index 66691d78..a4bb791d 100644
--- a/internal/config/minio.go
+++ b/internal/config/minio.go
@@ -1,7 +1,7 @@
package config
import (
- "fmt"
+ log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
)
@@ -22,6 +22,7 @@ var MinioTemplate = map[string]interface{}{
"accesskey": "",
"secretkey": "",
"bucket": "",
+ "ssl": "false",
},
}
@@ -42,7 +43,7 @@ func ReadMinioConfig(minioSubtress *viper.Viper) (Minio, error) {
// config already read. substree passed
err := minioSubtress.Unmarshal(&minioCfg)
if err != nil {
- panic(fmt.Errorf("error when parsing minio config: %v", err))
+ log.Fatal("error when parsing minio config: ", err)
}
return minioCfg, err
}
@@ -51,7 +52,8 @@ func GetBucketName(v1 *viper.Viper) (string, error) {
minSubtree := v1.Sub("minio")
miniocfg, err := ReadMinioConfig(minSubtree)
if err != nil {
- panic(err)
+ log.Fatal("Cannot read bucket name from configuration/minio")
+
}
bucketName := miniocfg.Bucket //miniocfg["bucket"] // get the top level bucket for all of gleaner operations from config file
return bucketName, err
diff --git a/internal/config/sources.go b/internal/config/sources.go
index 774fa1ad..6f7891d3 100644
--- a/internal/config/sources.go
+++ b/internal/config/sources.go
@@ -4,30 +4,78 @@ import (
"errors"
"fmt"
"github.com/gocarina/gocsv"
+ log "github.com/sirupsen/logrus"
"github.com/spf13/viper"
"io"
- "log"
"github.com/utahta/go-openuri"
"path"
"strings"
)
+const (
+ IdentifierSha string = "identifiersha"
+ JsonSha = "jsonsha"
+ NormalizedJsonSha = "normalizedjsonsha"
+ IdentifierString = "identifierstring"
+ SourceUrl = "sourceurl"
+)
+
+type ContextOption int64
+
+const (
+ Strict ContextOption = iota
+ Https
+ Http
+ // Array
+ // Object
+ StandardizedHttps
+ StandardizedHttp
+)
+
+func (s ContextOption) String() string {
+ switch s {
+ case Strict:
+ return "strict"
+ case Https:
+ return "https"
+ case Http:
+ return "http"
+ // case Array:
+ // return "array"
+ // case Object:
+ // return "object"
+ case StandardizedHttps:
+ return "standardizedHttps"
+ case StandardizedHttp:
+ return "standardizedHttp"
+ }
+ return "unknown"
+}
+
// as read from csv
type Sources struct {
+ // Valid values for SourceType: sitemap, sitegraph, csv, googledrive, api, and robots
SourceType string `default:"sitemap"`
Name string
Logo string
URL string
- Headless bool
+ Headless bool `default:"false"`
PID string
ProperName string
Domain string
Active bool `default:"true"`
- CredentialsFile string // do not want someones google api key exposed.
+ CredentialsFile string // do not want someone's google api key exposed.
Other map[string]interface{} `mapstructure:",remain"`
// SitemapFormat string
// Active bool
+
+ HeadlessWait int // if loading is slow, wait
+ Delay int64 // A domain-specific crawl delay value
+ IdentifierPath string // JSON Path to the identifier
+ ApiPageLimit int
+ IdentifierType string
+ FixContextOption ContextOption
}
// add needed for file
@@ -41,19 +89,29 @@ type SourcesConfig struct {
Domain string
// SitemapFormat string
// Active bool
+ HeadlessWait int // is loading is slow, wait
+ Delay int64 // A domain-specific crawl delay value
+ IdentifierPath string // JSON Path to the identifier
+ IdentifierType string
+ FixContextOption ContextOption
}
var SourcesTemplate = map[string]interface{}{
"sources": map[string]string{
- "sourcetype": "sitemap",
- "name": "",
- "url": "",
- "logo": "",
- "headless": "",
- "pid": "",
- "propername": "",
- "domain": "",
- "credentialsfile": "",
+ "sourcetype": "sitemap",
+ "name": "",
+ "url": "",
+ "logo": "",
+ "headless": "",
+ "pid": "",
+ "propername": "",
+ "domain": "",
+ "credentialsfile": "",
+ "headlesswait": "0",
+ "delay": "0",
+ "identifierpath": "",
+ "identifiertype": JsonSha,
+ "fixcontextoption": "https",
},
}
@@ -119,7 +177,8 @@ func GetSources(g1 *viper.Viper) ([]Sources, error) {
// config already read. substree passed
err := g1.UnmarshalKey(subtreeKey, &cfg)
if err != nil {
- panic(fmt.Errorf("error when parsing %v config: %v", subtreeKey, err))
+ log.Fatal("error when parsing ", subtreeKey, " config: ", err)
+ //No sources, so nothing to run
}
for i, s := range cfg {
cfg[i] = populateDefaults(s)
@@ -162,7 +221,48 @@ func GetActiveSourceByType(sources []Sources, key string) []Sources {
return sourcesSlice
}
-func SourceToNabuPrefix(sources []Sources, includeProv bool) []string {
+func GetActiveSourceByHeadless(sources []Sources, headless bool) []Sources {
+ var sourcesSlice []Sources
+ for _, s := range sources {
+ if s.Headless == headless && s.Active == true {
+ sourcesSlice = append(sourcesSlice, s)
+ }
+ }
+ return sourcesSlice
+}
+
+func GetSourceByName(sources []Sources, name string) (*Sources, error) {
+ for i := 0; i < len(sources); i++ {
+ if sources[i].Name == name {
+ return &sources[i], nil
+ }
+ }
+ return nil, fmt.Errorf("Unable to find a source with name %s", name)
+}
+
+func SourceToNabuPrefix(sources []Sources, useMilled bool) []string {
+ jsonld := "summoned"
+ if useMilled {
+ jsonld = "milled"
+ }
+ var prefixes []string
+ for _, s := range sources {
+
+ switch s.SourceType {
+
+ case "sitemap":
+ prefixes = append(prefixes, fmt.Sprintf("%s/%s", jsonld, s.Name))
+
+ case "sitegraph":
+ // sitegraph not milled
+ prefixes = append(prefixes, fmt.Sprintf("%s/%s", "summoned", s.Name))
+ case "googledrive":
+ prefixes = append(prefixes, fmt.Sprintf("%s/%s", jsonld, s.Name))
+ }
+ }
+ return prefixes
+}
+func SourceToNabuProv(sources []Sources) []string {
var prefixes []string
for _, s := range sources {
@@ -170,21 +270,12 @@ func SourceToNabuPrefix(sources []Sources, includeProv bool) []string {
switch s.SourceType {
case "sitemap":
- prefixes = append(prefixes, "milled/"+s.Name)
- if includeProv {
- prefixes = append(prefixes, "prov/"+s.Name)
- }
+ prefixes = append(prefixes, "prov/"+s.Name)
case "sitegraph":
- prefixes = append(prefixes, "summoned/"+s.Name)
- if includeProv {
- prefixes = append(prefixes, "prov/"+s.Name)
- }
+ prefixes = append(prefixes, "prov/"+s.Name)
case "googledrive":
- prefixes = append(prefixes, "milled/"+s.Name)
- if includeProv {
- prefixes = append(prefixes, "prov/"+s.Name)
- }
+ prefixes = append(prefixes, "prov/"+s.Name)
}
}
return prefixes
@@ -194,7 +285,7 @@ func PruneSources(v1 *viper.Viper, useSources []string) (*viper.Viper, error) {
var finalSources []Sources
allSources, err := GetSources(v1)
if err != nil {
- log.Fatal("error retrieving sources: %s", err)
+ log.Fatal("error retrieving sources: ", err)
}
for _, s := range allSources {
if contains(useSources, s.Name) {
diff --git a/internal/config/sources_test.go b/internal/config/sources_test.go
new file mode 100644
index 00000000..c37b0787
--- /dev/null
+++ b/internal/config/sources_test.go
@@ -0,0 +1,237 @@
+package config
+
+import (
+ "github.com/stretchr/testify/assert"
+ "testing"
+)
+
+var sources = []Sources{
+ {
+ Name: "test1",
+ Headless: true,
+ Active: true,
+ SourceType: "sitemap",
+ IdentifierType: IdentifierSha,
+ },
+ {
+ Name: "test2",
+ Headless: false,
+ Active: true,
+ SourceType: "robots",
+ },
+ {
+ Name: "test3",
+ Headless: false,
+ Active: false,
+ SourceType: "sitemap",
+ IdentifierType: JsonSha,
+ },
+ {
+ Name: "test4",
+ Headless: true,
+ Active: false,
+ SourceType: "sitemap",
+ },
+}
+
+var empty = []Sources{}
+
+func TestGetSourceByType(t *testing.T) {
+ t.Run("It gets sources of the given type", func(t *testing.T) {
+ expected := []Sources{
+ {
+ Name: "test1",
+ Headless: true,
+ Active: true,
+ SourceType: "sitemap",
+ IdentifierType: IdentifierSha,
+ },
+ {
+ Name: "test3",
+ Headless: false,
+ Active: false,
+ SourceType: "sitemap",
+ IdentifierType: JsonSha,
+ },
+ {
+ Name: "test4",
+ Headless: true,
+ Active: false,
+ SourceType: "sitemap",
+ },
+ }
+ results := GetSourceByType(sources, "sitemap")
+ assert.ElementsMatch(t, expected, results)
+ })
+
+ t.Run("It returns an empty slice if there are no such sources", func(t *testing.T) {
+ results := GetSourceByType(sources, "csv")
+ assert.ElementsMatch(t, empty, results)
+ })
+
+ t.Run("It handles an empty source slice correctly", func(t *testing.T) {
+ results := GetSourceByType(empty, "sitemap")
+ assert.ElementsMatch(t, empty, results)
+ })
+}
+
+func TestGetActiveSourceByType(t *testing.T) {
+ t.Run("It gets active sources of the given type", func(t *testing.T) {
+ expected := []Sources{
+ {
+ Name: "test1",
+ Headless: true,
+ Active: true,
+ SourceType: "sitemap",
+ Logo: "",
+ URL: "",
+ PID: "",
+ ProperName: "",
+ Domain: "",
+ CredentialsFile: "",
+ Other: nil,
+ HeadlessWait: 0,
+ Delay: 0,
+ IdentifierPath: "",
+ ApiPageLimit: 0,
+ IdentifierType: IdentifierSha,
+ FixContextOption: 0,
+ },
+ }
+ results := GetActiveSourceByType(sources, "sitemap")
+ assert.ElementsMatch(t, expected, results)
+ })
+
+ t.Run("It returns an empty slice if there are no such sources", func(t *testing.T) {
+ results := GetActiveSourceByType(sources, "csv")
+ assert.ElementsMatch(t, empty, results)
+ })
+
+ t.Run("It handles an empty source slice correctly", func(t *testing.T) {
+ results := GetActiveSourceByType(empty, "sitemap")
+ assert.ElementsMatch(t, empty, results)
+ })
+}
+
+func TestGetActiveSourceByHeadless(t *testing.T) {
+ t.Run("It gets active sources of the given type", func(t *testing.T) {
+ expectedTrue := []Sources{
+ {
+ Name: "test1",
+ Headless: true,
+ Active: true,
+ SourceType: "sitemap",
+ Logo: "",
+ URL: "",
+ PID: "",
+ ProperName: "",
+ Domain: "",
+ CredentialsFile: "",
+ Other: nil,
+ HeadlessWait: 0,
+ Delay: 0,
+ IdentifierPath: "",
+ ApiPageLimit: 0,
+ IdentifierType: IdentifierSha,
+ FixContextOption: 0,
+ },
+ }
+ results := GetActiveSourceByHeadless(sources, true)
+ assert.ElementsMatch(t, expectedTrue, results)
+
+ expectedFalse := []Sources{
+ {
+ Name: "test2",
+ Headless: false,
+ Active: true,
+ SourceType: "robots",
+ Logo: "",
+ URL: "",
+ PID: "",
+ ProperName: "",
+ Domain: "",
+ CredentialsFile: "",
+ Other: nil,
+ HeadlessWait: 0,
+ Delay: 0,
+ IdentifierPath: "",
+ ApiPageLimit: 0,
+ IdentifierType: "",
+ FixContextOption: 0,
+ },
+ }
+ results = GetActiveSourceByHeadless(sources, false)
+ assert.ElementsMatch(t, expectedFalse, results)
+ })
+
+ t.Run("It returns an empty slice if there are no such sources", func(t *testing.T) {
+ test := []Sources{
+ {
+ Name: "test1",
+ Headless: true,
+ Active: true,
+ SourceType: "sitemap",
+ },
+ {
+ Name: "test3",
+ Headless: false,
+ Active: false,
+ SourceType: "sitemap",
+ },
+ {
+ Name: "test4",
+ Headless: true,
+ Active: false,
+ SourceType: "sitemap",
+ },
+ }
+ results := GetActiveSourceByHeadless(test, false)
+ assert.ElementsMatch(t, empty, results)
+ })
+
+ t.Run("It handles an empty source slice correctly", func(t *testing.T) {
+ results := GetActiveSourceByHeadless(empty, true)
+ assert.ElementsMatch(t, empty, results)
+ })
+}
+
+func TestGetSourceByName(t *testing.T) {
+ t.Run("It gets sources of the given name", func(t *testing.T) {
+ expected := Sources{
+ Name: "test1",
+ Headless: true,
+ Active: true,
+ SourceType: "sitemap",
+ Logo: "",
+ URL: "",
+ PID: "",
+ ProperName: "",
+ Domain: "",
+ CredentialsFile: "",
+ Other: nil,
+ HeadlessWait: 0,
+ Delay: 0,
+ IdentifierPath: "",
+ ApiPageLimit: 0,
+ IdentifierType: IdentifierSha,
+ FixContextOption: 0,
+ }
+
+ results, err := GetSourceByName(sources, "test1")
+ assert.EqualValues(t, &expected, results)
+ assert.Nil(t, err)
+
+ })
+
+ t.Run("It returns an empty slice if there are no such sources", func(t *testing.T) {
+ results, err := GetSourceByName(sources, "test99")
+ assert.ElementsMatch(t, empty, results)
+ assert.NotNil(t, err)
+ })
+
+ t.Run("It handles an empty source slice correctly", func(t *testing.T) {
+ results, err := GetSourceByName(empty, "test1")
+ assert.ElementsMatch(t, empty, results)
+ assert.NotNil(t, err)
+ })
+}
diff --git a/internal/config/summoner.go b/internal/config/summoner.go
index 3586f16a..41e3c87c 100644
--- a/internal/config/summoner.go
+++ b/internal/config/summoner.go
@@ -3,23 +3,26 @@ package config
import (
"fmt"
"github.com/spf13/viper"
+ "strings"
)
type Summoner struct {
- After string
- Mode string // full || diff: If diff compare what we have currently in gleaner to sitemap, get only new, delete missing
- Threads int
- Delay int64 // milliseconds (1000 = 1 second) to delay between calls (will FORCE threads to 1)
- Headless string // URL for headless see docs/headless
+ After string
+ Mode string // full || diff: If diff compare what we have currently in gleaner to sitemap, get only new, delete missing
+ Threads int
+ Delay int64 // milliseconds (1000 = 1 second) to delay between calls (will FORCE threads to 1)
+ Headless string // URL for headless see docs/
+ IdentifierType string // identifiersha, filesha, identifier
}
var SummonerTemplate = map[string]interface{}{
"summoner": map[string]string{
- "after": "", // "21 May 20 10:00 UTC"
- "mode": "full", //full || diff: If diff compare what we have currently in gleaner to sitemap, get only new, delete missing
- "threads": "5",
- "delay": "10000", // milliseconds (1000 = 1 second) to delay between calls (will FORCE threads to 1)
- "headless": "http://127.0.0.1:9222", // URL for headless see docs/headless
+ "after": "", // "21 May 20 10:00 UTC"
+ "mode": "full", //full || diff: If diff compare what we have currently in gleaner to sitemap, get only new, delete missing
+ "threads": "5",
+ "delay": "10000", // milliseconds (1000 = 1 second) to delay between calls (will FORCE threads to 1)
+ "headless": "http://127.0.0.1:9222", // URL for headless see docs/headless
+ "identifiertype": JsonSha,
},
}
@@ -38,5 +41,8 @@ func ReadSummmonerConfig(viperSubtree *viper.Viper) (Summoner, error) {
if err != nil {
panic(fmt.Errorf("error when parsing sparql endpoint config: %v", err))
}
+ if strings.HasSuffix(summoner.Headless, "/") {
+ panic(fmt.Errorf("headless warning should not end with / %v", summoner.Headless))
+ }
return summoner, err
}
diff --git a/internal/config/utils.go b/internal/config/utils.go
index fed56e4f..5696930d 100644
--- a/internal/config/utils.go
+++ b/internal/config/utils.go
@@ -8,3 +8,26 @@ import (
func fileNameWithoutExtTrimSuffix(fileName string) string {
return strings.TrimSuffix(fileName, filepath.Ext(fileName))
}
+
+// moveToFront moves needle to the front of haystack, in place if possible.
+// from https://github.com/golang/go/wiki/SliceTricks
+func MoveToFront(needle string, haystack []string) []string {
+ if len(haystack) != 0 && haystack[0] == needle {
+ return haystack
+ }
+ prev := needle
+ for i, elem := range haystack {
+ switch {
+ case i == 0:
+ haystack[0] = needle
+ prev = elem
+ case elem == needle:
+ haystack[i] = prev
+ return haystack
+ default:
+ haystack[i] = prev
+ prev = elem
+ }
+ }
+ return append(haystack, prev)
+}
diff --git a/internal/millers/graph/bnodefix.go b/internal/millers/graph/bnodefix.go
index 2e82c92b..263464df 100644
--- a/internal/millers/graph/bnodefix.go
+++ b/internal/millers/graph/bnodefix.go
@@ -4,7 +4,7 @@ import (
"bufio"
"bytes"
"fmt"
- "log"
+ log "github.com/sirupsen/logrus"
"strings"
"github.com/rs/xid"
diff --git a/internal/millers/graph/graphng.go b/internal/millers/graph/graphng.go
index 455279de..e8924a1d 100644
--- a/internal/millers/graph/graphng.go
+++ b/internal/millers/graph/graphng.go
@@ -6,16 +6,15 @@ import (
"context"
"fmt"
configTypes "github.com/gleanerio/gleaner/internal/config"
+ "github.com/schollz/progressbar/v3"
+ log "github.com/sirupsen/logrus"
"io"
- "log"
"strings"
"sync"
- "github.com/piprate/json-gold/ld"
- "github.com/schollz/progressbar/v3"
-
"github.com/gleanerio/gleaner/internal/common"
minio "github.com/minio/minio-go/v7"
+ "github.com/piprate/json-gold/ld"
"github.com/spf13/viper"
)
@@ -38,7 +37,8 @@ func GraphNG(mc *minio.Client, prefix string, v1 *viper.Viper) error {
// defer close(doneCh) // Indicate to our routine to exit cleanly upon return.
isRecursive := true
- // Spiffy progress line (do I really want this?)
+ // Need count for Spiffy progress line (do I really want this?)
+ // there has got to be a better way to get the count of objects in an object store
oc := mc.ListObjects(context.Background(), bucketName, minio.ListObjectsOptions{Prefix: prefix, Recursive: isRecursive})
// count := len(objectCh)
var count int
@@ -49,6 +49,7 @@ func GraphNG(mc *minio.Client, prefix string, v1 *viper.Viper) error {
}
}
+ // Old style bar is "ok" since done in sequence?
bar := progressbar.Default(int64(count))
objectCh := mc.ListObjects(context.Background(), bucketName, minio.ListObjectsOptions{Prefix: prefix, Recursive: isRecursive})
// for object := range mc.ListObjects(context.Background(), bucketname, prefix, isRecursive, doneCh) {
@@ -56,13 +57,13 @@ func GraphNG(mc *minio.Client, prefix string, v1 *viper.Viper) error {
wg.Add(1)
go func(object minio.ObjectInfo) {
semaphoreChan <- struct{}{}
- _, err := obj2RDF(bucketName, "milled", mc, object, proc, options)
+ _, err := uploadObj2RDF(bucketName, "milled", mc, object, proc, options)
if err != nil {
- log.Printf("obj2RDF %s", err) // need to log to an "errors" log file
+ log.Error("uploadObj2RDF", err) // need to log to an "errors" log file
}
wg.Done() // tell the wait group that we be done
- // log.Printf("Doc: %s error: %v ", object.Key, err) // why print the status??
+ log.Debug("Doc:", object.Key, "error:", err)
bar.Add(1) //bar1.Incr()
<-semaphoreChan
@@ -72,35 +73,35 @@ func GraphNG(mc *minio.Client, prefix string, v1 *viper.Viper) error {
// TODO make a version of PipeCopy that generates Parquet version of graph
// TODO.. then delete milled objects?
- // log.Printf("Processed prefix: %s", prefix)
+ log.Trace("Processed prefix:", prefix)
millprefix := strings.ReplaceAll(prefix, "summoned", "milled")
sp := strings.SplitAfterN(prefix, "/", 2)
mcfg := v1.GetStringMapString("gleaner")
rslt := fmt.Sprintf("results/%s/%s_graph.nq", mcfg["runid"], sp[1])
- log.Printf("Assembling result graph for prefix: %s to: %s", prefix, millprefix)
- log.Printf("Result graph will be at: %s", rslt)
+ log.Info("Assembling result graph for prefix:", prefix, "to:", millprefix)
+ log.Info("Result graph will be at:", rslt)
err = common.PipeCopyNG(rslt, bucketName, millprefix, mc)
if err != nil {
- log.Printf("Error on pipe copy: %s", err)
+ log.Error("Error on pipe copy:", err)
} else {
- log.Println("Pipe copy for graph done")
+ log.Info("Pipe copy for graph done")
}
return err
}
-// func obj2RDF(fo io.Reader, key string, mc *minio.Client) (string, int64, error) {
-func obj2RDF(bucketName, prefix string, mc *minio.Client, object minio.ObjectInfo, proc *ld.JsonLdProcessor, options *ld.JsonLdOptions) (string, error) {
+// func uploadObj2RDF(fo io.Reader, key string, mc *minio.Client) (string, int64, error) {
+func uploadObj2RDF(bucketName, prefix string, mc *minio.Client, object minio.ObjectInfo, proc *ld.JsonLdProcessor, options *ld.JsonLdOptions) (string, error) {
// object is an object reader
stat, err := mc.StatObject(context.Background(), bucketName, object.Key, minio.GetObjectOptions{})
if stat.Size > 100000 {
- log.Printf("retrieving a large object (%d) (this may be slow) %s \n ", stat.Size, object.Key)
+ log.Warn("retrieving a large object (", stat.Size, ") (this may be slow)", object.Key)
}
fo, err := mc.GetObject(context.Background(), bucketName, object.Key, minio.GetObjectOptions{})
if err != nil {
- fmt.Printf("minio.getObject %s", err)
+ log.Error("minio.getObject", err)
return "", err
}
@@ -111,20 +112,23 @@ func obj2RDF(bucketName, prefix string, mc *minio.Client, object minio.ObjectInf
_, err = io.Copy(bw, fo)
if err != nil {
- log.Printf("error copying: %s", err)
+ log.Error("error copying:", err)
}
// TODO
// Process the bytes in b to RDF (with randomized blank nodes)
- // log.Println("JLD2NQ call")
- rdf, err := common.JLD2nq(b.String(), proc, options)
+ //log.Trace("JLD2NQ call")
+ //rdf, err := common.JLD2nq(b.String(), proc, options)
+ //if err != nil {
+ // return key, err
+ //}
+ //
+ //log.Trace("blank node fix call")
+ //rdfubn := GlobalUniqueBNodes(rdf)
+ rdfubn, err := Obj2RDF(b.String(), proc, options)
if err != nil {
return key, err
}
-
- // log.Println("blank node fix call")
- rdfubn := GlobalUniqueBNodes(rdf)
-
milledkey := strings.ReplaceAll(key, ".jsonld", ".rdf")
milledkey = strings.ReplaceAll(milledkey, "summoned/", "")
@@ -142,6 +146,21 @@ func obj2RDF(bucketName, prefix string, mc *minio.Client, object minio.ObjectInf
return objectName, nil
}
+func Obj2RDF(jsonld string, proc *ld.JsonLdProcessor, options *ld.JsonLdOptions) (string, error) {
+
+ // Process the bytes in b to RDF (with randomized blank nodes)
+ log.Trace("JLD2NQ call")
+ rdf, err := common.JLD2nq(jsonld, proc, options)
+ if err != nil {
+ return "", err
+ }
+
+ log.Trace("blank node fix call")
+ rdfubn := GlobalUniqueBNodes(rdf)
+
+ return rdfubn, nil
+}
+
// sugar function for the ui bar
func rightPad2Len(s string, padStr string, overallLen int) string {
var padCountInt int
diff --git a/internal/millers/graph/load2Minio.go b/internal/millers/graph/load2Minio.go
index 60c61fda..b4149ffb 100644
--- a/internal/millers/graph/load2Minio.go
+++ b/internal/millers/graph/load2Minio.go
@@ -3,7 +3,7 @@ package graph
import (
"bytes"
"context"
- "log"
+ log "github.com/sirupsen/logrus"
minio "github.com/minio/minio-go/v7"
)
@@ -22,12 +22,11 @@ func LoadToMinio(jsonld, bucketName, objectName string, mc *minio.Client) (int64
// Upload the zip file with FPutObject
n, err := mc.PutObject(context.Background(), bucketName, objectName, b, int64(b.Len()), minio.PutObjectOptions{ContentType: contentType, UserMetadata: usermeta})
if err != nil {
- log.Printf("%s/%s", bucketName, objectName)
- log.Println(err)
+ log.Error(bucketName, "/", objectName, "error", err)
// TODO should return 0, err here and deal with it on the other end
}
- // log.Printf("#%d Uploaded Bucket:%s File:%s Size %d\n", i, bucketName, objectName, n)
+ log.Trace("Uploaded Bucket:", bucketName, "File:", objectName, "Size", n)
return n.Size, nil
}
diff --git a/internal/millers/millers.go b/internal/millers/millers.go
index c861fb82..470b7549 100644
--- a/internal/millers/millers.go
+++ b/internal/millers/millers.go
@@ -2,7 +2,7 @@ package millers
import (
"fmt"
- "log"
+ log "github.com/sirupsen/logrus"
"time"
"github.com/gleanerio/gleaner/internal/config"
@@ -24,7 +24,7 @@ type Sources struct {
// do on the JSON-LD data graphs
func Millers(mc *minio.Client, v1 *viper.Viper) {
st := time.Now()
- log.Printf("Miller start time: %s \n", st) // Log the time at start for the record
+ log.Info("Miller start time", st) // Log the time at start for the record
// Put the sources in the config file into a struct
//var domains []Sources
@@ -33,7 +33,7 @@ func Millers(mc *minio.Client, v1 *viper.Viper) {
//domains, err := config.GetSources(v1)
domains, err := config.GetActiveSources(v1)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
// Make an array "as" of active buckets to process...
@@ -41,7 +41,7 @@ func Millers(mc *minio.Client, v1 *viper.Viper) {
for i := range domains {
m := fmt.Sprintf("summoned/%s", domains[i].Name)
as = append(as, m)
- log.Printf("Adding bucket to milling list: %s\n", m)
+ log.Info("Adding bucket to milling list:", m)
}
// Make array of prov buckets.. sad I have to do this.. I could just pass
@@ -52,7 +52,7 @@ func Millers(mc *minio.Client, v1 *viper.Viper) {
for i := range domains {
m := fmt.Sprintf("prov/%s", domains[i].Name)
ap = append(ap, m)
- log.Printf("Adding bucket to prov building list: %s\n", m)
+ log.Info("Adding bucket to prov building list:", m)
}
mcfg := v1.GetStringMapString("millers") // get the millers we want to run from the config file
@@ -81,6 +81,6 @@ func Millers(mc *minio.Client, v1 *viper.Viper) {
// Time report
et := time.Now()
diff := et.Sub(st)
- log.Printf("Miller end time: %s \n", et)
- log.Printf("Miller run time: %f \n", diff.Minutes())
+ log.Info("Miller end time:", et)
+ log.Info("Miller run time:", diff.Minutes())
}
diff --git a/internal/millers/shapes/shacl.go b/internal/millers/shapes/shacl.go
index a421eda1..c13590cd 100644
--- a/internal/millers/shapes/shacl.go
+++ b/internal/millers/shapes/shacl.go
@@ -4,8 +4,8 @@ import (
"bytes"
"fmt"
configTypes "github.com/gleanerio/gleaner/internal/config"
+ log "github.com/sirupsen/logrus"
"io/ioutil"
- "log"
"net/http"
"net/url"
"strings"
@@ -42,16 +42,15 @@ func loadShapeFiles(mc *minio.Client, v1 *viper.Viper) error {
var s []ShapeRef
err = v1.UnmarshalKey("shapefiles", &s)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
for x := range s {
if isURL(s[x].Ref) {
- log.Println("Load SHACL file")
+ log.Trace("Load SHACL file")
b, err := getBody(s[x].Ref)
if err != nil {
- log.Println("Error getting SHACL file body")
- log.Println(err)
+ log.Error("Error getting SHACL file body", err)
}
as := strings.Split(s[x].Ref, "/")
@@ -59,23 +58,23 @@ func loadShapeFiles(mc *minio.Client, v1 *viper.Viper) error {
// is what we should be using
_, err = graph.LoadToMinio(string(b), bucketName, fmt.Sprintf("shapes/%s", as[len(as)-1]), mc)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
- log.Printf("Loaded SHACL file: %s \n", s[x].Ref)
+ log.Debug("Loaded SHACL file:", s[x].Ref)
} else { // see if it's a file
- log.Println("Load file...")
+ log.Trace("Load file...")
dat, err := ioutil.ReadFile(s[x].Ref)
if err != nil {
- log.Printf("Error loading file %s: %s\n", s[x].Ref, err)
+ log.Error("Error loading file", s[x].Ref, err)
}
as := strings.Split(s[x].Ref, "/")
_, err = graph.LoadToMinio(string(dat), bucketName, fmt.Sprintf("shapes/%s", as[len(as)-1]), mc)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
- log.Printf("Loaded SHACL file: %s \n", s[x].Ref)
+ log.Debug("Loaded SHACL file:", s[x].Ref)
}
}
@@ -99,16 +98,16 @@ func multiCall(e []common.Entry, bucketname string, mc *minio.Client, v1 *viper.
m := common.GetShapeGraphs(mc, "gleaner") // TODO: beware static bucket lists, put this in the config
for j := range m {
- log.Printf("Checking data graphs against shape graph: %s\n", m[j])
+ log.Debug("Checking data graphs against shape graph:", m[j])
for k := range e {
wg.Add(1)
- // log.Printf("Ready JSON-LD package #%d #%s \n", j, e[k].Urlval)
+ log.Trace("Ready JSON-LD package #", j, e[k].Urlval)
go func(j, k int) {
semaphoreChan <- struct{}{}
status := shaclTest(e[k].Urlval, e[k].Jld, m[j].Key, m[j].Jld, &gb)
- wg.Done() // tell the wait group that we be done
- log.Printf("#%d #%s wrote %d bytes", j, e[k].Urlval, status) // why print the status??
+ wg.Done() // tell the wait group that we be done
+ log.Debug("#", j, e[k].Urlval, "wrote", status, "bytes")
<-semaphoreChan
}(j, k)
@@ -121,13 +120,13 @@ func multiCall(e []common.Entry, bucketname string, mc *minio.Client, v1 *viper.
// TODO gb is type turtle here.. need to convert to ntriples to store
// nt, err := rdf2rdf(gb.String())
// if err != nil {
- // log.Println(err)
+ // log.Error(err)
// }
// write to S3
_, err := graph.LoadToMinio(gb.String(), "gleaner-milled", fmt.Sprintf("%s/%s_shacl.nt", mcfg["runid"], bucketname), mc)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
}
@@ -159,7 +158,7 @@ func getBody(url string) ([]byte, error) {
var client http.Client
req, err := http.NewRequest("GET", url, nil)
if err != nil {
- log.Print(err) // not even being able to make a req instance.. might be a fatal thing?
+ log.Error(err) // not even being able to make a req instance.. might be a fatal thing?
return nil, err
}
@@ -167,7 +166,7 @@ func getBody(url string) ([]byte, error) {
resp, err := client.Do(req)
if err != nil {
- log.Printf("Error reading sitemap: %s", err)
+ log.Error("Error reading sitemap:", err)
return nil, err
}
defer resp.Body.Close()
@@ -176,7 +175,7 @@ func getBody(url string) ([]byte, error) {
if resp.StatusCode == http.StatusOK {
bodyBytes, err = ioutil.ReadAll(resp.Body)
if err != nil {
- log.Print(err)
+ log.Error(err)
return nil, err
}
}
diff --git a/internal/millers/shapes/shaclng.go b/internal/millers/shapes/shaclng.go
index 291b79c5..f2ef0e8a 100644
--- a/internal/millers/shapes/shaclng.go
+++ b/internal/millers/shapes/shaclng.go
@@ -5,7 +5,7 @@ import (
"fmt"
configTypes "github.com/gleanerio/gleaner/internal/config"
"github.com/gosuri/uiprogress"
- "log"
+ log "github.com/sirupsen/logrus"
"strings"
"sync"
@@ -64,7 +64,7 @@ func ShapeNG(mc *minio.Client, prefix string, v1 *viper.Viper) error {
Prefix: "shapes",
}
for shape := range mc.ListObjects(context.Background(), bucketName, opts2) {
- // log.Printf("Checking data graphs against shape graph: %s\n", m[j])
+ log.Trace("Checking data graphs against shape graph:", shape)
//for object := range mc.ListObjectsV2(bucketname, prefix, isRecursive, doneCh) {
for object := range mc.ListObjects(context.Background(), prefix, minio.ListObjectsOptions{
@@ -76,13 +76,13 @@ func ShapeNG(mc *minio.Client, prefix string, v1 *viper.Viper) error {
//status := shaclTest(e[k].Urlval, e[k].Jld, m[j].Key, m[j].Jld, &gb)
_, err := shaclTestNG(v1, bucketName, "verified", mc, object, shape, proc, options)
if err != nil {
- log.Println(err) // need to log to an "errors" log file
+ log.Error(err)
}
// _, err := obj2RDF(bucketName, prefix, mc, object, proc, options)
wg.Done() // tell the wait group that we be done
- // log.Printf("Doc: %s error: %v ", name, err) // why print the status??
+ log.Debug("Doc:", bucketName, "error:", err)
bar3.Incr()
<-semaphoreChan
@@ -106,14 +106,14 @@ func ShapeNG(mc *minio.Client, prefix string, v1 *viper.Viper) error {
sp := strings.SplitAfterN(prefix, "/", 2)
mcfg := v1.GetStringMapString("gleaner")
rslt := fmt.Sprintf("results/%s/%s_verified.nq", mcfg["runid"], sp[1])
- log.Printf("Assembling result graph for prefix: %s to: %s", prefix, millprefix)
- log.Printf("Result graph will be at: %s", rslt)
+ log.Info("Assembling result graph for prefix:", prefix, "to:", millprefix)
+ log.Info("Result graph will be at:", rslt)
err = common.PipeCopyNG(rslt, bucketName, millprefix, mc)
if err != nil {
- log.Printf("Error on pipe copy: %s", err)
+ log.Error("Error on pipe copy:", err)
} else {
- log.Println("Pipe copy for shacl done")
+ log.Info("Pipe copy for shacl done")
}
return err
@@ -155,7 +155,7 @@ func rightPad2Len(s string, padStr string, overallLen int) string {
// _, err = io.Copy(bw, fo)
// if err != nil {
-// log.Println(err)
+// log.Error(err)
// }
// pw.Write(b.Bytes())
@@ -168,14 +168,14 @@ func rightPad2Len(s string, padStr string, overallLen int) string {
// defer lwg.Done()
// _, err := mc.PutObject(bucketName, name, pr, -1, minio.PutObjectOptions{})
// if err != nil {
-// log.Println(err)
+// log.Error(err)
// }
// }()
// // Note: We can also make a file and pipe write to that, keep this code around in case
// // f, err := os.Create(fmt.Sprintf("%s_graph.nq", prefix)) // needs a f.Close() later
// // if err != nil {
-// // log.Println(err)
+// // log.Error(err)
// // }
// // go function to write to file from pipe
// // go func() {
diff --git a/internal/millers/shapes/tangramCall.go b/internal/millers/shapes/tangramCall.go
index b8be36f9..71d060b2 100644
--- a/internal/millers/shapes/tangramCall.go
+++ b/internal/millers/shapes/tangramCall.go
@@ -6,9 +6,9 @@ import (
"context"
"fmt"
configTypes "github.com/gleanerio/gleaner/internal/config"
+ log "github.com/sirupsen/logrus"
"io"
"io/ioutil"
- "log"
"mime/multipart"
"net/http"
"strings"
@@ -43,7 +43,7 @@ func shaclTestNG(v1 *viper.Viper, bucket, prefix string, mc *minio.Client, objec
_, err = io.Copy(bw, fo)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
// TODO this is a waste to read the same bytes N times! read early and pass a pointer!
@@ -51,7 +51,7 @@ func shaclTestNG(v1 *viper.Viper, bucket, prefix string, mc *minio.Client, objec
//so, err := mc.GetObject("gleaner", shape.Key, minio.GetObjectOptions{})
so, err := mc.GetObject(context.Background(), "gleaner", shape.Key, minio.GetObjectOptions{})
if err != nil {
- fmt.Println(err)
+ log.Error(err)
return "", err
}
@@ -60,7 +60,7 @@ func shaclTestNG(v1 *viper.Viper, bucket, prefix string, mc *minio.Client, objec
_, err = io.Copy(sbw, so)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
// TODO
@@ -85,7 +85,7 @@ func shaclTestNG(v1 *viper.Viper, bucket, prefix string, mc *minio.Client, objec
// resolve how call
rdfubn, err := shaclCallNG(mcfg["url"], string(b.Bytes()), string(sb.Bytes()))
if err != nil {
- log.Print(err)
+ log.Error(err)
}
// TODO we have our nt from SHACL, but it needs some extra info to let us
@@ -197,30 +197,30 @@ func shaclTest(urlval, dg, sgkey, sg string, gb *common.Buffer) int {
part, err := writer.CreateFormFile("datagraph", "datagraph")
if err != nil {
- log.Println(err)
+ log.Error(err)
}
_, err = io.Copy(part, strings.NewReader(dg))
if err != nil {
- log.Println(err)
+ log.Error(err)
}
part, err = writer.CreateFormFile("shapegraph", "shapegraph")
if err != nil {
- log.Println(err)
+ log.Error(err)
}
_, err = io.Copy(part, strings.NewReader(sg))
if err != nil {
- log.Println(err)
+ log.Error(err)
}
err = writer.Close()
if err != nil {
- log.Println(err)
+ log.Error(err)
}
req, err := http.NewRequest("POST", url, body)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
req.Header.Set("Content-Type", writer.FormDataContentType())
req.Header.Set("User-Agent", "EarthCube_DataBot/1.0")
@@ -228,19 +228,19 @@ func shaclTest(urlval, dg, sgkey, sg string, gb *common.Buffer) int {
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
// write result to buffer
len, err := gb.Write(b)
if err != nil {
- log.Printf("error in the buffer write... %v\n", err)
+ log.Error("error in the buffer write...", err)
}
return len // we will return the bytes count we write...
diff --git a/internal/objects/s3selProvURLs.go b/internal/objects/s3selProvURLs.go
index 98dbf765..46fc17db 100644
--- a/internal/objects/s3selProvURLs.go
+++ b/internal/objects/s3selProvURLs.go
@@ -3,8 +3,8 @@ package objects
import (
"bytes"
"context"
+ log "github.com/sirupsen/logrus"
"io"
- "log"
"strings"
"sync"
@@ -52,11 +52,11 @@ func ProvURLs(v1 *viper.Viper, minioClient *minio.Client, bucket, prefix string)
go func(object minio.ObjectInfo) {
// oa = append(oa, object.Key) // WARNING append is not always thread safe.. wg of 1 till I address this
- // log.Printf("Bucket %s object:%s\n", bucket, object.Key)
+ log.Trace("Bucket", bucket, "object:", object.Key)
reader, err := minioClient.SelectObjectContent(context.Background(), bucket, object.Key, opts)
if err != nil {
- log.Fatalln(err)
+ log.Fatal(err)
}
defer reader.Close()
@@ -66,13 +66,13 @@ func ProvURLs(v1 *viper.Viper, minioClient *minio.Client, bucket, prefix string)
var r string
buf := bytes.NewBufferString(r)
if _, err := io.Copy(buf, reader); err != nil {
- log.Fatalln(err)
+ log.Fatal(err)
}
oa = append(oa, strings.TrimSpace(buf.String()))
wg.Done() // tell the wait group that we be done
- // log.Printf("Doc: %s error: %v ", name, err) // why print the status??
+ log.Trace("Doc:", object.Key, "error", err)
<-semaphoreChan
}(object)
@@ -80,7 +80,7 @@ func ProvURLs(v1 *viper.Viper, minioClient *minio.Client, bucket, prefix string)
}
- log.Printf("bucket %s:%s object count: %d\n", bucket, prefix, len(oa))
+ log.Info("bucket", bucket, ":", prefix, "object count:", len(oa))
return oa
}
diff --git a/internal/objects/sourcesAndGraphs.go b/internal/objects/sourcesAndGraphs.go
index 8d19311b..3b5ace65 100644
--- a/internal/objects/sourcesAndGraphs.go
+++ b/internal/objects/sourcesAndGraphs.go
@@ -1,23 +1,23 @@
package objects
import (
- "log"
+ log "github.com/sirupsen/logrus"
configTypes "github.com/gleanerio/gleaner/internal/config"
"github.com/spf13/viper"
)
-//type Sources struct {
-// Name string
-// Logo string
-// URL string
-// Headless bool
-// PID string
-// ProperName string
-// Domain string
-// // SitemapFormat string
-// // Active bool
-//}
+// type Sources struct {
+// Name string
+// Logo string
+// URL string
+// Headless bool
+// PID string
+// ProperName string
+// Domain string
+// // SitemapFormat string
+// // Active bool
+// }
type Sources = configTypes.Sources
// Return all sources and sitegraph domains
@@ -29,19 +29,19 @@ func SourcesAndGraphs(v1 *viper.Viper) []Sources {
//err := v1.UnmarshalKey("sitemaps", &sm)
//if err != nil {
- // log.Println(err)
+ // log.Error(err)
//}
//
//err = v1.UnmarshalKey("sitegraphs", &sg)
//if err != nil {
- // log.Println(err)
+ // log.Error(err)
//}
//err := v1.UnmarshalKey("sources", &sm)
// use config
domains, err = configTypes.GetSources(v1)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
//domains = append(sg, sm...)
diff --git a/internal/organizations/memfile.go b/internal/organizations/memfile.go
index 69dc9547..d730989f 100644
--- a/internal/organizations/memfile.go
+++ b/internal/organizations/memfile.go
@@ -9,11 +9,11 @@ import (
"github.com/gleanerio/gleaner/internal/config"
configTypes "github.com/gleanerio/gleaner/internal/config"
"github.com/knakk/rdf"
+ log "github.com/sirupsen/logrus"
"github.com/xitongsys/parquet-go-source/mem"
"github.com/xitongsys/parquet-go/writer"
"io"
"io/ioutil"
- "log"
"strings"
"github.com/minio/minio-go/v7"
@@ -33,13 +33,13 @@ func TEST_BuildGraphMem(mc *minio.Client, v1 *viper.Viper) error {
//bucketName := miniocfg["bucket"] // get the top level bucket for all of gleaner operations from config file
bucketName, err := configTypes.GetBucketName(v1)
- log.Print("Building organization graph from config file")
+ log.Info("Building organization graph from config file")
//var domains []objects.Sources
//err := v1.UnmarshalKey("sources", &domains)
domains, err := config.GetSources(v1)
if err != nil {
- log.Println(err)
+ log.Error(err)
return err
}
@@ -54,7 +54,7 @@ func TEST_BuildGraphMem(mc *minio.Client, v1 *viper.Viper) error {
fw, err := mem.NewMemFileWriter("org.parquet", func(name string, r io.Reader) error {
dat, err := ioutil.ReadAll(r)
if err != nil {
- log.Printf("error reading data: %v", err)
+ log.Error("error reading data", err)
return err
}
@@ -67,20 +67,20 @@ func TEST_BuildGraphMem(mc *minio.Client, v1 *viper.Viper) error {
// Upload the file with FPutObject
_, err = mc.PutObject(context.Background(), bucketName, objectName, br, int64(br.Len()), minio.PutObjectOptions{})
if err != nil {
- log.Printf("%s", objectName)
- log.Fatalln(err) // Fatal? seriously? I guess this is the object write, so the run is likely a bust at this point, but this seems a bit much still.
+ log.Fatal(objectName, err)
+ // Fatal? seriously? I guess this is the object write, so the run is likely a bust at this point, but this seems a bit much still.
}
return err
})
if err != nil {
- log.Println("Can't create s3 file writer", err)
+ log.Error("Can't create s3 file writer", err)
return err
}
pw, err := writer.NewParquetWriter(fw, new(Qset), 4)
if err != nil {
- log.Println("Can't create parquet writer", err)
+ log.Error("Can't create parquet writer", err)
return err
}
@@ -92,13 +92,13 @@ func TEST_BuildGraphMem(mc *minio.Client, v1 *viper.Viper) error {
jld, err := orggraph(domains[k])
if err != nil {
- log.Println(err)
+ log.Error(err)
return err
}
r, err := common.JLD2nq(jld, proc, options)
if err != nil {
- log.Println(err)
+ log.Error(err)
return err
}
@@ -111,42 +111,41 @@ func TEST_BuildGraphMem(mc *minio.Client, v1 *viper.Viper) error {
spog, err := dec.Decode()
if err != nil {
- log.Println(err)
+ log.Error(err)
return err
}
qs := Qset{Subject: spog.Subj.String(), Predicate: spog.Pred.String(), Object: spog.Obj.String(), Graph: spog.Ctx.String()}
- // log.Println(qs)
+ log.Trace(qs)
if err = pw.Write(qs); err != nil {
- log.Println("Write error", err)
+ log.Error("Write error", err)
return err
}
}
if err := scanner.Err(); err != nil {
- log.Println(err)
+ log.Error(err)
return err
}
pw.Flush(true)
if err = pw.WriteStop(); err != nil {
- log.Println("WriteStop error", err)
+ log.Error("WriteStop error", err)
return err
}
err = fw.Close()
if err != nil {
- log.Println(err)
- log.Println("Error closing S3 file writer")
+ log.Error("Error closing S3 file writer", err)
return err
}
// delete, is this needed since we close above and have a closure call?
if err := mem.GetMemFileFs().Remove("org.parquet"); err != nil {
- log.Printf("error removing file from memfs: %v", err)
+ log.Error("error removing file from memfs:", err)
}
}
diff --git a/internal/organizations/org.go b/internal/organizations/org.go
index 7a5817c0..00be3987 100644
--- a/internal/organizations/org.go
+++ b/internal/organizations/org.go
@@ -5,7 +5,7 @@ import (
"context"
"fmt"
configTypes "github.com/gleanerio/gleaner/internal/config"
- "log"
+ log "github.com/sirupsen/logrus"
"text/template"
"github.com/gleanerio/gleaner/internal/common"
@@ -42,17 +42,17 @@ type Qset struct {
// BuildGraph makes a graph from the Gleaner config file source
// load this to a /sources bucket (change this to sources naming convention?)
func BuildGraph(mc *minio.Client, v1 *viper.Viper) error {
- var (
- buf bytes.Buffer
- logger = log.New(&buf, "logger: ", log.Lshortfile)
- )
+ //var (
+ // buf bytes.Buffer
+ // logger = log.New(&buf, "logger: ", log.Lshortfile)
+ //)
// read config file
//miniocfg := v1.GetStringMapString("minio")
//bucketName := miniocfg["bucket"] // get the top level bucket for all of gleaner operations from config file
bucketName, _ := configTypes.GetBucketName(v1)
- log.Print("Building organization graph.")
+ log.Info("Building organization graph.")
domains := objects.SourcesAndGraphs(v1)
proc, options := common.JLDProc(v1)
@@ -63,13 +63,13 @@ func BuildGraph(mc *minio.Client, v1 *viper.Viper) error {
jld, err := orggraph(domains[k])
if err != nil {
- log.Println(err)
+ log.Error(err)
return err
}
rdf, err := common.JLD2nq(jld, proc, options)
if err != nil {
- log.Println(err)
+ log.Error(err)
return err
}
@@ -84,7 +84,7 @@ func BuildGraph(mc *minio.Client, v1 *viper.Viper) error {
// Upload the file with FPutObject
_, err = mc.PutObject(context.Background(), bucketName, objectName, rdfb, int64(rdfb.Len()), minio.PutObjectOptions{ContentType: contentType})
if err != nil {
- logger.Printf("%s", objectName)
+ log.Error(objectName, err)
return err
}
@@ -98,12 +98,12 @@ func orggraph(k objects.Sources) (string, error) {
t, err := template.New("prov").Parse(t)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
err = t.Execute(&doc, k)
if err != nil {
- log.Println(err)
+ log.Error(err)
}
return doc.String(), err
@@ -146,12 +146,12 @@ func orggraph(k objects.Sources) (string, error) {
// jld, err := orggraph(domains[k])
// if err != nil {
-// log.Println(err)
+// log.Error(err)
// }
// r, err := common.JLD2nq(jld, proc, options)
// if err != nil {
-// log.Println(err)
+// log.Error(err)
// }
// // create new S3 file writer
@@ -195,7 +195,7 @@ func orggraph(k objects.Sources) (string, error) {
// }
// if err := scanner.Err(); err != nil {
-// log.Println(err)
+// log.Error(err)
// }
// pw.Flush(true)
@@ -207,7 +207,7 @@ func orggraph(k objects.Sources) (string, error) {
// err = fw.Close()
// if err != nil {
-// log.Println(err)
+// log.Error(err)
// log.Println("Error closing S3 file writer")
// return
// }
diff --git a/internal/summoner/acquire/acquire.go b/internal/summoner/acquire/acquire.go
index 66f1ab38..3f6e7e6a 100644
--- a/internal/summoner/acquire/acquire.go
+++ b/internal/summoner/acquire/acquire.go
@@ -1,17 +1,16 @@
package acquire
import (
- "bufio"
- "bytes"
"fmt"
- "log"
+ "github.com/gleanerio/gleaner/internal/common"
"net/http"
"net/url"
- "os"
"strings"
"sync"
"time"
+ log "github.com/sirupsen/logrus"
+
configTypes "github.com/gleanerio/gleaner/internal/config"
"github.com/PuerkitoBio/goquery"
@@ -21,239 +20,278 @@ import (
bolt "go.etcd.io/bbolt"
)
+const EarthCubeAgent = "EarthCube_DataBot/1.0"
+const JSONContentType = "application/ld+json"
+
// ResRetrieve is a function to pull down the data graphs at resources
-func ResRetrieve(v1 *viper.Viper, mc *minio.Client, m map[string][]string, db *bolt.DB) {
+func ResRetrieve(v1 *viper.Viper, mc *minio.Client, m map[string][]string, db *bolt.DB, runStats *common.RunStats) {
wg := sync.WaitGroup{}
// Why do I pass the wg pointer? Just make a new one
// for each domain in getDomain and us this one here with a semaphore
// to control the loop?
- for k := range m {
- // log.Printf("Queuing URLs for %s \n", k)
- go getDomain(v1, mc, m, k, &wg, db)
+ for domain, urls := range m {
+ r := runStats.Add(domain)
+ r.Set(common.Count, len(urls))
+ r.Set(common.HttpError, 0)
+ r.Set(common.Issues, 0)
+ r.Set(common.Summoned, 0)
+ log.Info("Queuing URLs for ", domain)
+
+ repologger, err := common.LogIssues(v1, domain)
+ if err != nil {
+ log.Error("Error creating a logger for a repository", err)
+ } else {
+ repologger.Info("Queuing URLs for ", domain)
+ repologger.Info("URL Count ", len(urls))
+ }
+ wg.Add(1)
+ //go getDomain(v1, mc, urls, domain, &wg, db)
+ go getDomain(v1, mc, urls, domain, &wg, db, repologger, r)
}
- time.Sleep(2 * time.Second) // ?? why is this here?
wg.Wait()
}
-func getDomain(v1 *viper.Viper, mc *minio.Client, m map[string][]string, k string, wg *sync.WaitGroup, db *bolt.DB) {
-
- //// read config file
- //miniocfg := v1.GetStringMapString("minio")
- //bucketName := miniocfg["bucket"] // get the top level bucket for all of gleaner operations from config file
+func getConfig(v1 *viper.Viper, sourceName string) (string, int, int64, error) {
bucketName, err := configTypes.GetBucketName(v1)
+ if err != nil {
+ return bucketName, 0, 0, err
+ }
- //mcfg := v1.GetStringMapString("summoner")
var mcfg configTypes.Summoner
mcfg, err = configTypes.ReadSummmonerConfig(v1.Sub("summoner"))
- //tc, err := strconv.ParseInt(mcfg["threads"], 10, 64)
- tc := mcfg.Threads
- // make the bucket (if it doesn't exist)
- db.Update(func(tx *bolt.Tx) error {
- _, err := tx.CreateBucket([]byte(k))
- if err != nil {
- return fmt.Errorf("create bucket: %s", err)
- }
- return nil
- })
-
- // tc, err := Threadcount(v1)
- // if err != nil {
- // log.Println(err)
- // }
- // dt, err := Delayrequest(v1)
- // if err != nil {
- // log.Println(err)
- // }
+ if err != nil {
+ return bucketName, 0, 0, err
+ }
+ // Set default thread counts and global delay
+ tc := mcfg.Threads
delay := mcfg.Delay
- var dt int64
- //if delay != "" {
+
if delay != 0 {
- //log.Printf("Delay set to: %s milliseconds", delay)
- //dt, err = strconv.ParseInt(delay, 10, 64)
- dt = delay
- if err != nil {
- log.Println(err)
- log.Panic("Could not convert delay from config file to a value")
- }
- // set threads to 1
- //log.Println("Delay is not 0, threads set to 1")
tc = 1
- } else {
- dt = 0
- if dt > 0 {
- tc = 1 // If the domain requests a delay between request, drop to single threaded and honor delay
- }
-
- log.Printf("Thread count %d delay %d\n", tc, dt)
-
- semaphoreChan := make(chan struct{}, tc) // a blocking channel to keep concurrency under control
- defer close(semaphoreChan)
- lwg := sync.WaitGroup{}
+ }
- wg.Add(1) // wg from the calling function
- defer wg.Done() // tell the wait group that we be done
+ // look for a domain specific override crawl delay
+ sources, err := configTypes.GetSources(v1)
+ source, err := configTypes.GetSourceByName(sources, sourceName)
- count := len(m[k])
- bar := progressbar.Default(int64(count))
+ if err != nil {
+ return bucketName, tc, delay, err
+ }
- var (
- buf bytes.Buffer
- logger = log.New(&buf, "logger: ", log.Lshortfile)
- )
+ if source.Delay != 0 && source.Delay > delay {
+ delay = source.Delay
+ tc = 1
+ log.Info("Crawl delay set to ", delay, " for ", sourceName)
+ }
- // var client http.Client
+ log.Info("Thread count ", tc, " delay ", delay)
+ return bucketName, tc, delay, nil
+}
- // we actually go get the URLs now
- for i := range m[k] {
- lwg.Add(1)
- urlloc := m[k][i]
+func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName string,
+ wg *sync.WaitGroup, db *bolt.DB, repologger *log.Logger, repoStats *common.RepoStats) {
+ //func getDomain(v1 *viper.Viper, mc *minio.Client, urls []string, sourceName string, wg *sync.WaitGroup, db *bolt.DB) {
- // TODO / WARNING for large site we can exhaust memory with just the creation of the
- // go routines. 1 million =~ 4 GB So we need to control how many routines we
- // make too.. reference https://github.com/mr51m0n/gorc (but look for someting in the core
- // library too)
+ // make the bucket (if it doesn't exist)
+ db.Update(func(tx *bolt.Tx) error {
+ _, err := tx.CreateBucket([]byte(sourceName))
+ if err != nil {
+ return fmt.Errorf("create bucket: %s", err)
+ }
+ return nil
+ })
- // log.Println(urlloc)
+ bucketName, tc, delay, err := getConfig(v1, sourceName)
+ if err != nil {
+ // trying to read a source, so let's not kill everything with a panic/fatal
+ log.Error("Error reading config file ", err)
+ repologger.Error("Error reading config file ", err)
+ }
- go func(i int, k string) {
- semaphoreChan <- struct{}{}
+ var client http.Client
- logger.Println(urlloc)
+ semaphoreChan := make(chan struct{}, tc) // a blocking channel to keep concurrency under control
+ lwg := sync.WaitGroup{}
- urlloc = strings.ReplaceAll(urlloc, " ", "")
- urlloc = strings.ReplaceAll(urlloc, "\n", "")
+ defer func() {
+ lwg.Wait()
+ wg.Done()
+ close(semaphoreChan)
+ }()
+
+ count := len(urls)
+ bar := progressbar.Default(int64(count))
+
+ // we actually go get the URLs now
+ for i := range urls {
+ lwg.Add(1)
+ urlloc := urls[i]
+
+ // TODO / WARNING for large site we can exhaust memory with just the creation of the
+ // go routines. 1 million =~ 4 GB So we need to control how many routines we
+ // make too.. reference https://github.com/mr51m0n/gorc (but look for someting in the core
+ // library too)
+
+ go func(i int, sourceName string) {
+ semaphoreChan <- struct{}{}
+
+ repologger.Trace("Indexing", urlloc)
+ log.Debug("Indexing ", urlloc)
+
+ req, err := http.NewRequest("GET", urlloc, nil)
+ if err != nil {
+ log.Error(i, err, urlloc)
+ }
+ req.Header.Set("User-Agent", EarthCubeAgent)
+ req.Header.Set("Accept", "application/ld+json, text/html")
+
+ resp, err := client.Do(req)
+ if err != nil {
+ log.Error("#", i, " error on ", urlloc, err) // print an message containing the index (won't keep order)
+ repologger.WithFields(log.Fields{"url": urlloc}).Error(err)
+ lwg.Done() // tell the wait group that we be done
+ <-semaphoreChan
+ return
+ }
+ defer resp.Body.Close()
+
+ jsonlds, err := FindJSONInResponse(v1, urlloc, repologger, resp)
+
+ if err != nil {
+ log.Error("#", i, " error on ", urlloc, err) // print an message containing the index (won't keep order)
+ repoStats.Inc(common.Issues)
+ lwg.Done() // tell the wait group that we be done
+ <-semaphoreChan
+ return
+ }
+
+ // For incremental indexing I want to know every URL I visit regardless
+ // if there is a valid JSON-LD document or not. For "full" indexing we
+ // visit ALL URLs. However, many will not have JSON-LD, so let's also record
+ // and avoid those during incremental calls.
+
+ // even is no JSON-LD packages found, record the event of checking this URL
+ if len(jsonlds) < 1 {
+ // TODO is her where I then try headless, and scope the following for into an else?
+ log.WithFields(log.Fields{"url": urlloc, "contentType": "Direct access failed, trying headless']"}).Info("Direct access failed, trying headless for ", urlloc)
+ repologger.WithFields(log.Fields{"url": urlloc, "contentType": "Direct access failed, trying headless']"}).Error() // this needs to go into the issues file
+ err := PageRenderAndUpload(v1, mc, 60*time.Second, urlloc, sourceName, db, repologger, repoStats) // TODO make delay configurable
- var client http.Client // why do I make this here.. can I use 1 client? move up in the loop
- req, err := http.NewRequest("GET", urlloc, nil)
if err != nil {
- log.Println(err)
- logger.Printf("#%d error on %s : %s ", i, urlloc, err) // print an message containing the index (won't keep order)
+ log.WithFields(log.Fields{"url": urlloc, "issue": "converting json ld"}).Error("PageRenderAndUpload ", urlloc, "::", err)
+ repologger.WithFields(log.Fields{"url": urlloc, "issue": "converting json ld"}).Error(err)
}
- req.Header.Set("User-Agent", "EarthCube_DataBot/1.0")
- req.Header.Set("Accept", "application/ld+json, text/html")
-
- resp, err := client.Do(req)
+ db.Update(func(tx *bolt.Tx) error {
+ b := tx.Bucket([]byte(sourceName))
+ err := b.Put([]byte(urlloc), []byte(fmt.Sprintf("NILL: %s", urlloc))) // no JOSN-LD found at this URL
+ return err
+ })
if err != nil {
- logger.Printf("#%d error on %s : %s ", i, urlloc, err) // print an message containing the index (won't keep order)
- lwg.Done() // tell the wait group that we be done
- <-semaphoreChan
- return
+ log.Error("DB Update", urlloc, "::", err)
}
- defer resp.Body.Close()
- doc, err := goquery.NewDocumentFromResponse(resp)
- if err != nil {
- logger.Printf("#%d error on %s : %s ", i, urlloc, err) // print an message containing the index (won't keep order)
- lwg.Done() // tell the wait group that we be done
- <-semaphoreChan
- return
- }
+ } else {
+ log.WithFields(log.Fields{"url": urlloc, "issue": "Direct access worked"}).Trace("Direct access worked for ", urlloc)
+ repologger.WithFields(log.Fields{"url": urlloc, "issue": "Direct access worked"}).Trace()
+ repoStats.Inc(common.Summoned)
+ }
- var jsonlds []string
- var contentTypeHeader = resp.Header["Content-Type"]
-
- // if
- // The URL is sending back JSON-LD correctly as application/ld+json
- // this should not be here IMHO, but need to support people not setting proper header value
- // The URL is sending back JSON-LD but incorrectly sending as application/json
- if contains(contentTypeHeader, "application/ld+json") || contains(contentTypeHeader, "application/json") || fileExtensionIsJson(urlloc) {
- logger.Printf("%s as %s", urlloc, contentTypeHeader)
- jsonlds, err = addToJsonListIfValid(v1, jsonlds, doc.Text())
- if err != nil {
- logger.Printf("Error processing json response from %s: %s", urlloc, err)
- }
- // look in the HTML page for