We need to be able to set content rules (validity and compatibility) on the `Artifact` CRD. This would look like: ``` apiVersion: artifact.apicur.io/v1alpha1 kind: Artifact metadata: name: avro-example spec: artifactId: pests-record name: pets description: "Avro record for Pet entity" type: AVRO contentRules: validity: ENABLED compatibility : ENABLED labels: - avro - kafka content: | {"namespace": "example.avro", "type": "record", "name": "Pet", "fields": [ {"name": "name", "type": "string"}, {"name": "holderId", "type": ["int", "null"]}, {"name": "type", "type": ["string", "null"]} ] } ```
We need to be able to set content rules (validity and compatibility) on the
ArtifactCRD.This would look like: