Waterfall · JSON-LD Context

Waterfall Context

JSON-LD context defining the semantic vocabulary for Waterfall from Waterfall.

5 Classes 12 Properties 5 Namespaces
View Context View on GitHub

Namespaces

sdlc: https://apievangelist.com/schema/sdlc/
schema: https://schema.org/
dcterms: http://purl.org/dc/terms/
xsd: http://www.w3.org/2001/XMLSchema#
foaf: http://xmlns.com/foaf/0.1/

Classes

Phase Requirement ChangeRequest Deliverable Milestone

Properties

Property Type Container
name string
description string
id string
title string
status string
priority string
startDate date
endDate date
type string
deliverables string set
approvedBy string
impact string

JSON-LD Document

waterfall-context.jsonld Raw ↑
{
  "@context": {
    "@version": 1.1,
    "sdlc": "https://apievangelist.com/schema/sdlc/",
    "schema": "https://schema.org/",
    "dcterms": "http://purl.org/dc/terms/",
    "xsd": "http://www.w3.org/2001/XMLSchema#",
    "foaf": "http://xmlns.com/foaf/0.1/",

    "Phase": "sdlc:Phase",
    "Requirement": "sdlc:Requirement",
    "ChangeRequest": "sdlc:ChangeRequest",
    "Deliverable": "sdlc:Deliverable",
    "Milestone": "sdlc:Milestone",

    "name": {
      "@id": "schema:name",
      "@type": "xsd:string"
    },
    "description": {
      "@id": "schema:description",
      "@type": "xsd:string"
    },
    "id": {
      "@id": "dcterms:identifier",
      "@type": "xsd:string"
    },
    "title": {
      "@id": "dcterms:title",
      "@type": "xsd:string"
    },
    "status": {
      "@id": "sdlc:status",
      "@type": "xsd:string"
    },
    "priority": {
      "@id": "sdlc:priority",
      "@type": "xsd:string"
    },
    "startDate": {
      "@id": "schema:startDate",
      "@type": "xsd:date"
    },
    "endDate": {
      "@id": "schema:endDate",
      "@type": "xsd:date"
    },
    "type": {
      "@id": "dcterms:type",
      "@type": "xsd:string"
    },
    "deliverables": {
      "@id": "sdlc:deliverables",
      "@container": "@set",
      "@type": "xsd:string"
    },
    "approvedBy": {
      "@id": "sdlc:approvedBy",
      "@type": "xsd:string"
    },
    "impact": {
      "@id": "sdlc:impact",
      "@type": "xsd:string"
    }
  }
}