http://www.mobr.ai/ontologies/ponto#PullRequest
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.
Instances of ponto:PullRequest can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class ponto:PullRequest | |||
ponto:opened | owl:DatatypeProperty | The timestamp when the pull request was opened. | xsd:dateTimeStamp |
@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 .