{ "$schema" : "http://json-schema.org/draft-07/schema#", "$id" : "http://csrc.nist.gov/ns/oscal/1.0-schema.json", "$comment" : "OSCAL Control Catalog Model: JSON Schema", "type" : "object", "definitions" : { "part" : { "title" : "Part", "description" : "A partition of a control's definition or a child of another part.", "$id" : "#/definitions/part", "type" : "object", "properties" : { "id" : { "title" : "Part Identifier", "description" : "A unique identifier for a specific part instance. This identifier's uniqueness is document scoped and is intended to be consistent for the same part across minor revisions of the document.", "type" : "string" }, "name" : { "title" : "Part Name", "description" : "A textual label that uniquely identifies the part's semantic type.", "type" : "string" }, "ns" : { "title" : "Part Namespace", "description" : "A namespace qualifying the part's name. This allows different organizations to associate distinct semantics with the same name.", "type" : "string", "format" : "uri" }, "class" : { "title" : "Part Class", "description" : "A textual label that provides a sub-type or characterization of the part's name. This can be used to further distinguish or discriminate between the semantics of multiple parts of the same control with the same name and ns.", "type" : "string" }, "title" : { "title" : "Part Title", "description" : "A name given to the part, which may be used by a tool for display and navigation.", "type" : "string" }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "prose" : { "title" : "Part Text", "description" : "Permits multiple paragraphs, lists, tables etc.", "type" : "string" }, "parts" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/part" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } } }, "required" : [ "name" ], "additionalProperties" : true }, "parameter" : { "title" : "Parameter", "description" : "Parameters provide a mechanism for the dynamic assignment of value(s) in a control.", "$id" : "#/definitions/parameter", "type" : "object", "properties" : { "id" : { "title" : "Parameter Identifier", "description" : "A unique identifier for a specific parameter instance. This identifier's uniqueness is document scoped and is intended to be consistent for the same parameter across minor revisions of the document.", "type" : "string" }, "class" : { "title" : "Parameter Class", "description" : "A textual label that provides a characterization of the parameter.", "type" : "string" }, "depends-on" : { "title" : "Depends on", "description" : "Another parameter invoking this one", "type" : "string" }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "label" : { "title" : "Parameter Label", "description" : "A short, placeholder name for the parameter, which can be used as a subsitute for a value if no value is assigned.", "type" : "string" }, "usage" : { "title" : "Parameter Usage Description", "description" : "Describes the purpose and use of a parameter", "type" : "string" }, "constraints" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/parameter-constraint" } }, "guidelines" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/parameter-guideline" } }, "values" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/parameter-value" } }, "select" : { "$ref" : "#/definitions/parameter-selection" }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "id" ], "additionalProperties" : true }, "parameter-constraint" : { "title" : "Constraint", "description" : "A formal or informal expression of a constraint or test", "$id" : "#/definitions/parameter-constraint", "type" : "object", "properties" : { "description" : { "title" : "Constraint Description", "description" : "A textual summary of the constraint to be applied.", "type" : "string" }, "tests" : { "type" : "array", "minItems" : 1, "items" : { "title" : "Constraint Test", "description" : "A test expression which is expected to be evaluated by a tool.", "type" : "object", "properties" : { "expression" : { "title" : "Constraint test", "description" : "A formal (executable) expression of a constraint", "type" : "string" }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "expression" ], "additionalProperties" : false } } }, "additionalProperties" : false }, "parameter-guideline" : { "title" : "Guideline", "description" : "A prose statement that provides a recommendation for the use of a parameter.", "$id" : "#/definitions/parameter-guideline", "type" : "object", "properties" : { "prose" : { "title" : "Guideline Text", "description" : "Prose permits multiple paragraphs, lists, tables etc.", "type" : "string" } }, "required" : [ "prose" ], "additionalProperties" : true }, "parameter-value" : { "title" : "Parameter Value", "description" : "A parameter value or set of values.", "$id" : "#/definitions/parameter-value", "type" : "string" }, "parameter-selection" : { "title" : "Selection", "description" : "Presenting a choice among alternatives", "$id" : "#/definitions/parameter-selection", "type" : "object", "properties" : { "how-many" : { "title" : "Parameter Cardinality", "description" : "Describes the number of selections that must occur.", "type" : "string" }, "choice" : { "type" : "array", "minItems" : 1, "items" : { "title" : "Choice", "description" : "A value selection among several such options", "type" : "string" } } }, "additionalProperties" : true }, "metadata" : { "title" : "Publication metadata", "description" : "Provides information about the publication and availability of the containing document.", "$id" : "#/definitions/metadata", "type" : "object", "properties" : { "title" : { "title" : "Document Title", "description" : "A name given to the document, which may be used by a tool for display and navigation.", "type" : "string" }, "published" : { "$ref" : "#/definitions/oscal-metadata-published" }, "last-modified" : { "$ref" : "#/definitions/oscal-metadata-last-modified" }, "version" : { "$ref" : "#/definitions/oscal-metadata-version" }, "oscal-version" : { "$ref" : "#/definitions/oscal-metadata-oscal-version" }, "revisions" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-revision" } }, "document-ids" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-document-id" } }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "roles" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/role" } }, "locations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/location" } }, "parties" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/party" } }, "responsible-parties" : { "type" : "object", "minProperties" : 1, "additionalProperties" : { "allOf" : [ { "$ref" : "#/definitions/responsible-party" }, { "not" : { "type" : "string" } } ] } }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "title", "last-modified", "version", "oscal-version" ], "additionalProperties" : false }, "oscal-metadata-revision" : { "title" : "Revision History Entry", "description" : "An entry in a sequential list of revisions to the containing document in reverse chronological order (i.e., most recent previous revision first).", "$id" : "#/definitions/oscal-metadata-revision", "type" : "object", "properties" : { "title" : { "title" : "Document Title", "description" : "A name given to the document revision, which may be used by a tool for display and navigation.", "type" : "string" }, "published" : { "$ref" : "#/definitions/oscal-metadata-published" }, "last-modified" : { "$ref" : "#/definitions/oscal-metadata-last-modified" }, "version" : { "$ref" : "#/definitions/oscal-metadata-version" }, "oscal-version" : { "$ref" : "#/definitions/oscal-metadata-oscal-version" }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "additionalProperties" : false }, "location" : { "title" : "Location", "description" : "A location, with associated metadata that can be referenced.", "$id" : "#/definitions/location", "type" : "object", "properties" : { "uuid" : { "title" : "Location Universally Unique Identifier", "description" : "A unique identifier that can be used to reference this defined location elsewhere in an OSCAL document. A UUID should be consistantly used for a given location across revisions of the document.", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" }, "title" : { "title" : "Location Title", "description" : "A name given to the location, which may be used by a tool for display and navigation.", "type" : "string" }, "address" : { "$ref" : "#/definitions/oscal-metadata-address" }, "email-addresses" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-email-address" } }, "telephone-numbers" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-telephone-number" } }, "urls" : { "type" : "array", "minItems" : 1, "items" : { "title" : "Location URL", "description" : "The uniform resource locator (URL) for a web site or Internet presence associated with the location.", "type" : "string", "format" : "uri" } }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "uuid", "address" ], "additionalProperties" : false }, "location-uuid" : { "title" : "Location Reference", "description" : "References a location defined in metadata.", "$id" : "#/definitions/location-uuid", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" }, "party" : { "title" : "Party (organization or person)", "description" : "A responsible entity which is either a person or an organization.", "$id" : "#/definitions/party", "type" : "object", "properties" : { "uuid" : { "title" : "Party Universally Unique Identifier", "description" : "A unique identifier that can be used to reference this defined location elsewhere in an OSCAL document. A UUID should be consistantly used for a given party across revisions of the document.", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" }, "type" : { "title" : "Party Type", "description" : "A category describing the kind of party the object describes.", "type" : "string", "enum" : [ "person", "organization" ] }, "name" : { "title" : "Party Name", "description" : "The full name of the party. This is typically the legal name associated with the party.", "type" : "string" }, "short-name" : { "title" : "Party Short Name", "description" : "A short common name, abbreviation, or acronym for the party.", "type" : "string" }, "external-ids" : { "type" : "array", "minItems" : 1, "items" : { "title" : "Party External Identifier", "description" : "An identifier for a person or organization using a designated scheme. e.g. an Open Researcher and Contributor ID (ORCID)", "type" : "object", "properties" : { "scheme" : { "title" : "External Identifier Schema", "description" : "Indicates the type of external identifier.", "type" : "string", "format" : "uri" }, "id" : { "type" : "string" } }, "required" : [ "id", "scheme" ], "additionalProperties" : false } }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "email-addresses" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-email-address" } }, "telephone-numbers" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-telephone-number" } }, "addresses" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-address" } }, "location-uuids" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/location-uuid" } }, "member-of-organizations" : { "type" : "array", "minItems" : 1, "items" : { "title" : "Organizational Affiliation", "description" : "Identifies that the party object is a member of the organization associated with the provided UUID.", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" } }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "uuid", "type" ], "additionalProperties" : false }, "party-uuid" : { "title" : "Party Reference", "description" : "References a party defined in metadata.", "$id" : "#/definitions/party-uuid", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" }, "role" : { "title" : "Role", "description" : "Defines a function assumed or expected to be assumed by a party in a specific situation.", "$id" : "#/definitions/role", "type" : "object", "properties" : { "id" : { "title" : "Role Identifier", "description" : "A unique identifier for a specific role instance. This identifier's uniqueness is document scoped and is intended to be consistent for the same role across minor revisions of the document.", "type" : "string" }, "title" : { "title" : "Role Title", "description" : "A name given to the role, which may be used by a tool for display and navigation.", "type" : "string" }, "short-name" : { "title" : "Role Short Name", "description" : "A short common name, abbreviation, or acronym for the role.", "type" : "string" }, "description" : { "title" : "Role Description", "description" : "A summary of the role's purpose and associated responsibilities.", "type" : "string" }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "id", "title" ], "additionalProperties" : false }, "back-matter" : { "title" : "Back matter", "description" : "A collection of resources, which may be included directly or by reference.", "$id" : "#/definitions/back-matter", "type" : "object", "properties" : { "resources" : { "type" : "array", "minItems" : 1, "items" : { "title" : "Resource", "description" : "A resource associated with content in the containing document. A resource may be directly included in the document base64 encoded or may point to one or more equavalent internet resources.", "type" : "object", "properties" : { "uuid" : { "title" : "Resource Universally Unique Identifier", "description" : "A globally unique identifier that can be used to reference this defined resource elsewhere in an OSCAL document. A UUID should be consistantly used for a given resource across revisions of the document.", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" }, "title" : { "title" : "Resource Title", "description" : "A name given to the resource, which may be used by a tool for display and navigation.", "type" : "string" }, "description" : { "title" : "Resource Description", "description" : "A short summary of the resource used to indicate the purpose of the resource.", "type" : "string" }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "document-ids" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-document-id" } }, "citation" : { "title" : "Citation", "description" : "A citation consisting of end note text and optional structured bibliographic data.", "type" : "object", "properties" : { "text" : { "title" : "Citation Text", "description" : "A line of citation text.", "type" : "string" }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "biblio" : { "title" : "Bibliographic Definition", "description" : "A container for structured bibliographic information. The model of this information is undefined by OSCAL.", "type" : "object", "additionalProperties" : true } }, "required" : [ "text" ], "additionalProperties" : false }, "rlinks" : { "type" : "array", "minItems" : 1, "items" : { "title" : "Resource link", "description" : "A pointer to an external resource with an optional hash for verification and change detection.", "type" : "object", "properties" : { "href" : { "title" : "Hypertext Reference", "description" : "A resolvable URI reference to a resource.", "type" : "string", "format" : "uri-reference" }, "media-type" : { "title" : "Media Type", "description" : "Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) Media Types Registry.", "type" : "string" }, "hashes" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/hash" } } }, "required" : [ "href" ], "additionalProperties" : false } }, "base64" : { "title" : "Base64", "description" : "The Base64 alphabet in RFC 2045 - aligned with XSD.", "type" : "object", "properties" : { "filename" : { "title" : "File Name", "description" : "Name of the file before it was encoded as Base64 to be embedded in a resource. This is the name that will be assigned to the file when the file is decoded.", "type" : "string", "format" : "uri-reference" }, "media-type" : { "title" : "Media Type", "description" : "Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) Media Types Registry.", "type" : "string" }, "value" : { "type" : "string" } }, "required" : [ "value" ], "additionalProperties" : false }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "uuid" ], "additionalProperties" : true } } }, "additionalProperties" : false }, "property" : { "title" : "Property", "description" : "An attribute, characteristic, or quality of the containing object expressed as a namespace qualified name/value pair. The value of a property is a simple scalar value, which may be expressed as a list of values in some OSCAL formats.", "$id" : "#/definitions/property", "type" : "object", "properties" : { "uuid" : { "title" : "Property Universally Unique Identifier", "description" : "A unique identifier that can be used to reference this property elsewhere in an OSCAL document. A UUID should be consistantly used for a given location across revisions of the document.", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" }, "name" : { "title" : "Property Name", "description" : "A textual label that uniquely identifies a specific attribute, characteristic, or quality of the property's containing object.", "type" : "string" }, "ns" : { "title" : "Property Namespace", "description" : "A namespace qualifying the property's name. This allows different organizations to associate distinct semantics with the same name.", "type" : "string", "format" : "uri" }, "class" : { "title" : "Property Class", "description" : "A textual label that provides a sub-type or characterization of the property's name. This can be used to further distinguish or discriminate between the semantics of multiple properties of the same object with the same name and ns.", "type" : "string" }, "value" : { "type" : "string" } }, "required" : [ "value", "name" ], "additionalProperties" : false }, "annotation" : { "title" : "Annotated Property", "description" : "An attribute, characteristic, or quality of the containing object expressed as a namespace qualified name/value pair with optional explanatory remarks. The value of an annotated property is a simple scalar value.", "$id" : "#/definitions/annotation", "type" : "object", "properties" : { "name" : { "title" : "Annotated Property Name", "description" : "A textual label that uniquely identifies a specific attribute, characteristic, or quality of the annotated property's containing object.", "type" : "string" }, "uuid" : { "title" : "Annotated Property Universally Unique Identifier", "description" : "A unique identifier that can be used to reference this annotated property elsewhere in an OSCAL document. A UUID should be consistantly used for a given location across revisions of the document.", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" }, "ns" : { "title" : "Annotated Property Namespace", "description" : "A namespace qualifying the annotated property's name. This allows different organizations to associate distinct semantics with the same name.", "type" : "string", "format" : "uri" }, "value" : { "title" : "Annotated Property Value", "description" : "Indicates the value of the attribute, characteristic, or quality.", "type" : "string" }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "name", "value" ], "additionalProperties" : false }, "link" : { "title" : "Link", "description" : "A reference to a local or remote resource", "$id" : "#/definitions/link", "type" : "object", "properties" : { "href" : { "title" : "Hypertext Reference", "description" : "A resolvable URL reference to a resource.", "type" : "string", "format" : "uri-reference" }, "rel" : { "title" : "Relation", "description" : "Describes the type of relationship provided by the link. This can be an indicator of the link's purpose.", "type" : "string" }, "media-type" : { "title" : "Media Type", "description" : "Specifies a media type as defined by the Internet Assigned Numbers Authority (IANA) Media Types Registry.", "type" : "string" }, "text" : { "title" : "Link Text", "description" : "A textual label to associate with the link, which may be used for presentation in a tool.", "type" : "string" } }, "required" : [ "href" ], "additionalProperties" : false }, "responsible-party" : { "title" : "Responsible Party", "description" : "A reference to a set of organizations or persons that have responsibility for performing a referenced role in the context of the containing object.", "$id" : "#/definitions/responsible-party", "type" : "object", "properties" : { "party-uuids" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/party-uuid" } }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "remarks" : { "$ref" : "#/definitions/remarks" } }, "required" : [ "party-uuids" ], "additionalProperties" : false }, "hash" : { "title" : "Hash", "description" : "A representation of a cryptographic digest generated over a resource using a specified hash algorithm.", "$id" : "#/definitions/hash", "type" : "object", "properties" : { "algorithm" : { "title" : "Hash algorithm", "description" : "Method by which a hash is derived", "type" : "string" }, "value" : { "type" : "string" } }, "required" : [ "value", "algorithm" ], "additionalProperties" : false }, "remarks" : { "title" : "Remarks", "description" : "Additional commentary on the containing object.", "$id" : "#/definitions/remarks", "type" : "string" }, "oscal-metadata-published" : { "title" : "Publication Timestamp", "description" : "The date and time the document was published. The date-time value must be formatted according to RFC 3339 with full time and time zone included.", "$id" : "#/definitions/oscal-metadata-published", "type" : "string", "format" : "date-time", "pattern" : "^((2000|2400|2800|(19|2[0-9](0[48]|[2468][048]|[13579][26])))-02-29)|(((19|2[0-9])[0-9]{2})-02-(0[1-9]|1[0-9]|2[0-8]))|(((19|2[0-9])[0-9]{2})-(0[13578]|10|12)-(0[1-9]|[12][0-9]|3[01]))|(((19|2[0-9])[0-9]{2})-(0[469]|11)-(0[1-9]|[12][0-9]|30))T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])(\\.[0-9]+)?(Z|[+-][0-9]{2}:[0-9]{2})$" }, "oscal-metadata-last-modified" : { "title" : "Last Modified Timestamp", "description" : "The date and time the document was last modified. The date-time value must be formatted according to RFC 3339 with full time and time zone included.", "$id" : "#/definitions/oscal-metadata-last-modified", "type" : "string", "format" : "date-time", "pattern" : "^((2000|2400|2800|(19|2[0-9](0[48]|[2468][048]|[13579][26])))-02-29)|(((19|2[0-9])[0-9]{2})-02-(0[1-9]|1[0-9]|2[0-8]))|(((19|2[0-9])[0-9]{2})-(0[13578]|10|12)-(0[1-9]|[12][0-9]|3[01]))|(((19|2[0-9])[0-9]{2})-(0[469]|11)-(0[1-9]|[12][0-9]|30))T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])(\\.[0-9]+)?(Z|[+-][0-9]{2}:[0-9]{2})$" }, "oscal-metadata-version" : { "title" : "Document Version", "description" : "A string used to distinguish the current version of the document from other previous (and future) versions.", "$id" : "#/definitions/oscal-metadata-version", "type" : "string" }, "oscal-metadata-oscal-version" : { "title" : "OSCAL version", "description" : "The OSCAL model version the document was authored against.", "$id" : "#/definitions/oscal-metadata-oscal-version", "type" : "string" }, "oscal-metadata-email-address" : { "title" : "Email Address", "description" : "An email address as defined by RFC 5322 Section 3.4.1.", "$id" : "#/definitions/oscal-metadata-email-address", "type" : "string", "format" : "email", "pattern" : "^.+@.+" }, "oscal-metadata-telephone-number" : { "title" : "Telephone Number", "description" : "Contact number by telephone.", "$id" : "#/definitions/oscal-metadata-telephone-number", "type" : "object", "properties" : { "type" : { "title" : "type flag", "description" : "Indicates the type of phone number.", "type" : "string" }, "number" : { "type" : "string" } }, "required" : [ "number" ], "additionalProperties" : false }, "oscal-metadata-address" : { "title" : "Address", "description" : "A postal address for the location.", "$id" : "#/definitions/oscal-metadata-address", "type" : "object", "properties" : { "type" : { "type" : "string" }, "addr-lines" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/oscal-metadata-addr-line" } }, "city" : { "title" : "City", "description" : "City, town or geographical region for the mailing address.", "type" : "string" }, "state" : { "title" : "State", "description" : "State, province or analogous geographical region for mailing address", "type" : "string" }, "postal-code" : { "title" : "Postal Code", "description" : "Postal or ZIP code for mailing address", "type" : "string" }, "country" : { "title" : "Country Code", "description" : "The ISO 3166-1 alpha-2 country code for the mailing address.", "type" : "string" } }, "additionalProperties" : false }, "oscal-metadata-addr-line" : { "title" : "Address line", "description" : "A single line of an address.", "$id" : "#/definitions/oscal-metadata-addr-line", "type" : "string" }, "oscal-metadata-document-id" : { "title" : "Document Identifier", "description" : "A document identifier qualified by an identifier type.", "$id" : "#/definitions/oscal-metadata-document-id", "type" : "object", "properties" : { "scheme" : { "title" : "Document Identification Scheme", "description" : "Qualifies the kind of document identifier.", "type" : "string", "format" : "uri" }, "identifier" : { "type" : "string" } }, "required" : [ "identifier", "scheme" ], "additionalProperties" : false }, "catalog" : { "title" : "Catalog", "description" : "A collection of controls.", "$id" : "#/definitions/catalog", "type" : "object", "properties" : { "uuid" : { "title" : "Catalog Universally Unique Identifier", "description" : "A globally unique identifier for this catalog instance. This UUID should be changed when this document is revised.", "type" : "string", "pattern" : "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" }, "metadata" : { "$ref" : "#/definitions/metadata" }, "params" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/parameter" } }, "controls" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/control" } }, "groups" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/group" } }, "back-matter" : { "$ref" : "#/definitions/back-matter" } }, "required" : [ "uuid", "metadata" ], "additionalProperties" : false }, "group" : { "title" : "Control Group", "description" : "A group of controls, or of groups of controls.", "$id" : "#/definitions/group", "type" : "object", "properties" : { "id" : { "title" : "Group Identifier", "description" : "A unique identifier for a specific group instance that can be used to reference the group within this and in other OSCAL documents. This identifier's uniqueness is document scoped and is intended to be consistent for the same group across minor revisions of the document.", "type" : "string" }, "class" : { "title" : "Group Class", "description" : "A textual label that provides a sub-type or characterization of the group.", "type" : "string" }, "title" : { "title" : "Group Title", "description" : "A name given to the group, which may be used by a tool for display and navigation.", "type" : "string" }, "params" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/parameter" } }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "parts" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/part" } }, "groups" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/group" } }, "controls" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/control" } } }, "required" : [ "title" ], "additionalProperties" : false }, "control" : { "title" : "Control", "description" : "A structured information object representing a security or privacy control. Each security or privacy control within the Catalog is defined by a distinct control instance.", "$id" : "#/definitions/control", "type" : "object", "properties" : { "id" : { "title" : "Control Identifier", "description" : "A unique identifier for a specific control instance that can be used to reference the control in other OSCAL documents. This identifier's uniqueness is document scoped and is intended to be consistent for the same control across minor revisions of the document.", "type" : "string" }, "class" : { "title" : "Control Class", "description" : "A textual label that provides a sub-type or characterization of the control.", "type" : "string" }, "title" : { "title" : "Control Title", "description" : "A name given to the control, which may be used by a tool for display and navigation.", "type" : "string" }, "params" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/parameter" } }, "props" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/property" } }, "annotations" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/annotation" } }, "links" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/link" } }, "parts" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/part" } }, "controls" : { "type" : "array", "minItems" : 1, "items" : { "$ref" : "#/definitions/control" } } }, "required" : [ "id", "title" ], "additionalProperties" : true } }, "properties" : { "catalog" : { "$ref" : "#/definitions/catalog" } }, "required" : [ "catalog" ], "additionalProperties" : false, "maxProperties" : 1 }