ponto:PullRequest leaf node


URI

http://www.mobr.ai/ontologies/ponto#PullRequest

Label

Pull Request

Description

Pull requests let you tell others about changes you've pushed to a branch in a git repository. Once a pull request is opened, you can discuss and review the potential changes with collaborators and add follow-up commits before your changes are merged into the base branch.

Usage

Instances of ponto:PullRequest can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class ponto:PullRequest
ponto:opened owl:DatatypeProperty The timestamp when the pull request was opened. xsd:dateTimeStamp

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix ponto: <http://www.mobr.ai/ontologies/ponto#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ponto:PullRequest a owl:Class ;
    rdfs:label "Pull Request" ;
    rdfs:comment "Pull requests let you tell others about changes you've pushed to a branch in a git repository. Once a pull request is opened, you can discuss and review the potential changes with collaborators and add follow-up commits before your changes are merged into the base branch." ;
    rdfs:subClassOf owl:Thing .