Skip to content

Commit

Permalink
update owl:Individual to owl:NamedIndividual
Browse files Browse the repository at this point in the history
  • Loading branch information
antony-wilson committed Feb 11, 2025
1 parent 6f80ab2 commit c82932c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions mod_api/static/mod_api/openAPI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ components:
type: array
title: List of Owl Individuals
items:
$ref: "#/components/schemas/owlIndividual"
$ref: "#/components/schemas/owlNamedIndividual"
application/rdf+xml:
schema:
type: array
Expand Down Expand Up @@ -539,7 +539,7 @@ components:
- type: array
title: List of Owl Individuals
items:
$ref: "#/components/schemas/owlIndividual"
$ref: "#/components/schemas/owlNamedIndividual"
- type: array
title: List of RDFS Properties
items:
Expand Down Expand Up @@ -2424,13 +2424,13 @@ components:
description: An owl class.
example: owl:Class

owlIndividual:
owlNamedIndividual:
type: object
properties:
'@type':
title: Individual
description: An owl individual
example: owl:Individual
title: NamedIndividual
description: The class of named individuals.
example: owl:NamedIndividual

owlOntology:
type: object
Expand Down Expand Up @@ -3048,7 +3048,7 @@ paths:
"404":
$ref: "#/components/responses/error_message"

# Get a list of all the instances (owl individuals) within an artefact
# Get a list of all the instances (owl named individual) within an artefact
/artefacts/{artefactID}/resources/individuals:
parameters:
- $ref: "#/components/parameters/artefactID"
Expand All @@ -3059,8 +3059,8 @@ paths:
get:
tags:
- Artefact
summary: Get a list of all the instances (owl individuals) within an artefact.
description: Retrieves a list of all the instances (owl individuals) within an artefact.
summary: Get a list of all the instances (owl named individual) within an artefact.
description: Retrieves a list of all the instances (owl named individual) within an artefact.
operationId: getArtefactIndividuals
responses:
"200":
Expand Down

0 comments on commit c82932c

Please sign in to comment.